datafusion
datafusion copied to clipboard
Apache DataFusion SQL Query Engine
# Which issue does this PR close? This PR introduces support for binary bitwise shift operators like `>>` and `
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** To workaround https://github.com/apache/arrow-rs/issues/2372, #3051 disabled rustc from complaining about this. Unfortunately this...
**Describe the bug** I am working on a SQL query fuzzer (see [sqlfuzz](https://crates.io/crates/sqlfuzz) crate) and I think it just found a bug in DataFusion. The following SQL works fine in...
**Describe the bug** A clear and concise description of what the bug is. **To Reproduce** Steps to reproduce the behavior: ```bash DataFusion CLI v10.0.0 ❯ select * from (select 1...
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** A clear and concise description of what the problem is. Ex. I'm...
**Describe the bug** Some functions are incorrectly declared as unary. - nullif (2 args) - now (zero args) **To Reproduce** N/A **Expected behavior** N/A **Additional context** None
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** DataFusions's prelude imports some but not all of the functions from `datafusion-expr`...
**Describe the bug** A clear and concise description of what the bug is. ```sql select now(); -- ... 3 days later ... select now(); -- returns same old value ```...
**Describe the bug** A clear and concise description of what the bug is. it works at v10.0.0, but doesn't work at master branch **To Reproduce** Steps to reproduce the behavior:...
**Is your feature request related to a problem or challenge? Please describe what you are trying to do.** We are seeing a number of projects with differing requirements for how...