You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On 32bit architectures, TestBaseTypeMarshalUnmarshalJSON fails with the following error:
# github.com/ovn-org/libovsdb/ovsdb [github.com/ovn-org/libovsdb/ovsdb.test]
src/github.com/ovn-org/libovsdb/ovsdb/schema_test.go:412:9: cannot use 4294967295 (untyped int constant) as int value in assignment (overflows)
This can be fixed by explicitly casting that value to an int64, and updating the BaseType struct's maxInteger field to be an int64.
I observed this issue while packaging the library for use in Debian.
The text was updated successfully, but these errors were encountered:
On 32bit architectures, TestBaseTypeMarshalUnmarshalJSON fails with the following error:
This can be fixed by explicitly casting that value to an
int64
, and updating theBaseType
struct'smaxInteger
field to be anint64
.I observed this issue while packaging the library for use in Debian.
The text was updated successfully, but these errors were encountered: