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
chore: better expression error messages on failure (#5392)
For example, executing a scan with a filter like `root() >
pa.scalar(3.3, type=pa.float16())`, you currently get this error:
```
Cannot compare different DTypes f64? and f16?
```
Which is fine, but, particularly when these expressions are machine
generated, you are missing necessary context. This is a bit better:
```
Vortex error: While evaluating ZoneMap pruning filter ((($.nan_count = 0u64) and (0u64 = 0u64)) and ($.max <= 3.3007813f16)):
Cannot compare different DTypes f64? and f16?
```
Signed-off-by: Daniel King <[email protected]>
0 commit comments