Cory Grinstead

Results 188 issues of Cory Grinstead

## Description With statistics enabled in our object store, it can result in quite a few hits to the datasource instead of just 2 (head, get). When I added some...

## Description Since we are mostly building on top of datafusion, it'd be great to see the performance comparison between glaredb & raw datafusion.

## Description we are starting to get quite a few cli args. Most of the time users don't need, or want to set all of them, but I think it'd...

## Description Some tools generate CSVs that contain some extra data at the top, such as bank statement exports ```csv "Account Name : REDACTED" "Account Number : REDACTED" "Date Range...

## Description we support array literal syntax ```sql SELECT ['A-Wing', 'B-Wing', 'X-Wing', 'Y-Wing'] AS starfighter_list; ``` i think we should also support struct literal syntax: ```sql SELECT {name: 'Star Destroyer',...

## Description A lot of times, I find it pretty common to want to project or transform a few columns, then want to return the rest. I can currently do...

## Description it'd be cool to have better aliases for casting types, especially for the unsigned variants IMO, this is weird syntax ```sql > select 1::int8 unsigned; -- u64 >...

## Description A lot of the credentials variants (especially the object store credentials) usually have env var equivalents that are specified by the provider. Such as google cloud, it'll look...

## Description the OPTIONS syntax already supports `=` assignment, so the 2 syntaxes for assignment feels weird & inconsistent Instead of ```sql select * from read_csv( 's3:///', aws_region => 'us-east-1',...

## Description ```sql > select ::: sum(l_extendedprice * l_discount) as revenue ::: from ::: lineitem ::: where ::: l_shipdate >= date '1994-01-01' ::: and l_shipdate < date '1994-01-01' + interval...