Cory Grinstead
Cory Grinstead
## Which issue does this PR close? Closes https://github.com/apache/arrow-datafusion/issues/9139 ## Rationale for this change better support for working with fixed size lists is needed ## What changes are included in...
### Is your feature request related to a problem or challenge? datafusion automatically dynamically links `lzma` if you have the `compression` feature enabled due to the dependency on `xz2` ###...
### Is your feature request related to a problem or challenge? currently only the session context has `udtf` function. I think that this should instead be part of the `FunctionRegistry`...
### Describe the bug originally opened in https://github.com/GlareDB/glaredb/issues/2597 It seems that `arrow_cast`'s special handling makes it so that it errors out when using it in an ORDER BY expr ###...
#### Describe your feature request if you have a postgres table with a `varchar[]` type, connectorx will panic `thread '' panicked at 'not implemented: _varchar',` It would be nice if...
### Description given this example: ```rs use polars_arrow::{ array::Utf8Array, bitmap::Bitmap, buffer::Buffer, datatypes::ArrowDataType, offset::OffsetsBuffer, }; // should print "[Some('hello'), None, Some('world')]" fn main() { let offsets: &[i64] = &[0, 5, 5,...
microsoft just came out with a pretty cool IDE style completions menu for the CLI. It would be amazing to have this as a built in menu type. ## References...
**Platform** macOS **Terminal software** tried several (nu, iterm, bash, ...) Describe the problem you are observing. ## Steps to reproduce It seems to only apply if the character sequence is...
allows for parsing of duckdb's `from` queries closes https://github.com/sqlparser-rs/sqlparser-rs/issues/1143
it'd be nice to be able to parse sql queries where the FROM is before the select. some examples: - `FROM t1` - `FROM t1 where a = 1` -...