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 am trying to read some parquet files containing timestamps in micro-seconds, but cursor.next() throws an TypeError: Cannot mix BigInt and other types, use explicit conversions
In fromPrimitive_TIMESTAMP_MICROS(value: String): Date, value (string) divided by 1000n (BigInt), which causes this TypeError.
I am using Node v12.19.1 on Windows 10 (i think OS doesn't matter here..)
The text was updated successfully, but these errors were encountered:
Hello!
I am trying to read some parquet files containing timestamps in micro-seconds, but
cursor.next()
throws anTypeError: Cannot mix BigInt and other types, use explicit conversions
In
fromPrimitive_TIMESTAMP_MICROS(value: String): Date
, value (string) divided by1000n
(BigInt), which causes this TypeError.I am using Node v12.19.1 on Windows 10 (i think OS doesn't matter here..)
The text was updated successfully, but these errors were encountered: