Jeffrey Vo

Results 14 issues of Jeffrey Vo

## Bug Report ### Version ``` ...> cargo tree | findstr tracing ??? ??? ????????? tracing v0.1.29 ??? ??? ????????? tracing-attributes v0.1.18 (proc-macro) ??? ??? ????????? tracing-core v0.1.21 ??? ?????????...

`size_t` is defined as a c_ulong: https://github.com/gwihlidal/spirv-reflect-rs/blob/62c41db8ae4fa732425ed843d8358b96f7d07155/gen/bindings.rs#L1615 [Documentation of the type](https://doc.rust-lang.org/std/os/raw/type.c_ulong.html) state that this type can vary between Linux and Windows: > This type will always be [u32](https://doc.rust-lang.org/std/primitive.u32.html) or [u64](https://doc.rust-lang.org/std/primitive.u64.html)....

## Bug #### Which Delta project/connector is this regarding? - [x] Spark - [ ] Standalone - [ ] Flink - [ ] Kernel - [ ] Other (fill in...

bug

Closes #195 Bump MSRV since requires functions stabilized in Rust 1.72.0

### Describe the bug Via SQL we disallow nested explains: ```rust use datafusion::error::Result; use datafusion::prelude::*; #[tokio::main] async fn main() -> Result { let ctx = SessionContext::new(); ctx.sql("explain explain select 1").await?.show().await?;...

bug

## Which issue does this PR close? Closes #. ## Rationale for this change Try use workspace inheritance more, for both regular package keys, and also dependencies Note that due...

documentation
sql
logical-expr
physical-expr
optimizer
core
sqllogictest
substrait

### Is your feature request related to a problem or challenge? Be able to have `~` in paths in datafusion-cli resolve to user's home directory. (I'm not certain if this...

enhancement
good first issue

Current parsing of `COPY TO/FROM` options is too restrictive on the how the keys & values can be provided. https://github.com/sqlparser-rs/sqlparser-rs/blob/ce498864dc705f72e9f85d4dc5f7eba3d17b9ef6/src/parser/mod.rs#L5157-L5180 Given this parsing code, the expected format is: ```sql COPY...

**Context** [arrow-datafusion](https://github.com/apache/arrow-datafusion) currently implements its own parser, [DFParser](https://github.com/apache/arrow-datafusion/blob/d2b3d1c7538b9fb7ab9cfc0c4c6a238b0dcd91e6/datafusion/sql/src/parser.rs#L246-L256) which wraps the parser in this crate in order to parse some DataFusion specific statements. DataFusion issue: https://github.com/apache/arrow-datafusion/issues/4808 Aiming to upstream this...

### What changes were proposed in this pull request? Updating timestamp specification documentation to be more accurate to the implementation. ### Why are the changes needed? Timestamp specification is not...

DOCS