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
fix: guard all BigInt(float) crash sites in WASM filter + column registration
6 unguarded BigInt() calls that would throw on non-integer values:
- operators.ts: filterInt64Buffer, filterInt64Range, filterInt64NotRange
(user filter values on int64 columns)
- local-executor.ts, master-do.ts: BigInt64Array column registration
(mixed-type rows where sample was integer but later values are floats)
All now use Math.trunc before BigInt conversion, matching the pattern
established in decode.ts and sql/evaluator.ts.
0 commit comments