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
Running the postgres example with query SELECT name FROM companies seems to trigger a panic.
Compiling datafusion-table-providers v0.2.3 (...)
Finished `dev` profile [unoptimized + debuginfo] target(s) in 14.49s
Running `target/debug/examples/postgres`
thread 'main' panicked at .../datafusion-common-42.1.0/src/dfschema.rs:341:31:
index out of bounds: the len is 1 but the index is 1
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
These queries work fine:
SELECT id FROM companies
SELECT id, name FROM companies
It looks like when specifying column N, columns 0...N must also be specified. (The order doesn't matter.) This looks to be a recent issue introduced by datafusion 42.0.
I would love any help tracking down what might be happening.
The text was updated successfully, but these errors were encountered:
Issue
Running the postgres example with query
SELECT name FROM companies
seems to trigger a panic.These queries work fine:
SELECT id FROM companies
SELECT id, name FROM companies
It looks like when specifying column N, columns 0...N must also be specified. (The order doesn't matter.) This looks to be a recent issue introduced by datafusion 42.0.
I would love any help tracking down what might be happening.
The text was updated successfully, but these errors were encountered: