RedisGraph / redisgraph-go

A Golang client for redisgraph
https://redisgraph.io
BSD 3-Clause "New" or "Revised" License
132 stars 38 forks source link

query_result: Parse all integers as int64 #79

Closed silverspace closed 1 year ago

silverspace commented 1 year ago

The public implementation of redisgraph-go parses all numbers as 'int' rather than 'int64'. This is especially bad for int32 timestamp values, since they will overflow in 2038. We should instead parse all number values as int64.