We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not sure if its a regression but simple window query fails.
DataFusion CLI v26.0.0 ❯ select sum(1) over() x, sum(1) over () y; Arrow error: Invalid argument error: batches[0] schema is different with argument schema. batches[0] schema: Schema { fields: [Field { name: "placeholder_0", data_type: Null, nullable: true, dict_id: 0, dict_is_ordered: false, metadata: {} }], metadata: {} }, argument schema: Schema { fields: [], metadata: {} }
Should work.
Found when working on #6492
The text was updated successfully, but these errors were encountered:
datafusion-cli$ cargo run Finished dev [unoptimized + debuginfo] target(s) in 0.20s Running `/media/jeffrey/1tb_860evo_ssd/.cargo_target_cache/debug/datafusion-cli` DataFusion CLI v32.0.0 ❯ select sum(1) over() x, sum(1) over () y; +---+---+ | x | y | +---+---+ | 1 | 1 | +---+---+ 1 row in set. Query took 0.004 seconds. ❯
Issue looks resolved as of latest main.
I've also created PR in case want this test case added to prevent future regression: #7928
(Assuming that is the expected result)
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
Not sure if its a regression but simple window query fails.
To Reproduce
Expected behavior
Should work.
Additional context
Found when working on #6492
The text was updated successfully, but these errors were encountered: