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
I noticed redisgraph-go deserializes integers into int instead of int64. Depending on the system, int may be either 64 or 32 bits long. This can cause overflows for larger values, e.g. Unix timestamps beyond Y2038.
I noticed
redisgraph-go
deserializes integers intoint
instead ofint64
. Depending on the system,int
may be either 64 or 32 bits long. This can cause overflows for larger values, e.g. Unix timestamps beyond Y2038.Tested on Raspberry Pi Zero W (ARMv6):
Expected output:
Actual output:
Calling
reflect.TypeOf
on the record value returnsint
.Note that the node had to be added using a string query, since the other method doesn't accept
int64
properties, e.g.:causes a panic:
The text was updated successfully, but these errors were encountered: