v0.0.15
Highlights
- table create/insert:
- added native table support (ie:
CREATE TABLE my_table ( my_col text );
- added native table support (ie:
- table functions:
parquet_scan
(ie:SELECT * FROM parquet_scan('path/to/file.parquet')
generate_series
(ie:SELECT * FROM generate_series(1, 4)
- misc:
- added credentials as a database object (see: #1140)
- an
--ignore-auth
flag was added when runningglaredb
locally for development convenience
- fixes:
list_schemas
no longer returns hidden schemas for BigQuery
What's Changed
- build(deps): Bump deps by @scsmithr in #1139
- chore: Allow ignoring auth messages by @scsmithr in #1145
- feat: Add native (internal) table support using delta-rs by @scsmithr in #1129
- feat: Add support for credentials objects by @vrongmeal in #1140
- feat: Add
generate_series
function by @scsmithr in #1154 - feat: add "parquet_scan" function by @universalmind303 in #1160
- fix: Don't return hidden data sets from bigquery by @scsmithr in #1162
- add support for reading from "file://" for
parquet_scan
by @universalmind303 in #1164 - feat: Stream writes to tables by @scsmithr in #1165
- chore: Remove native table inner by @scsmithr in #1169
- chore: bump version to 0.0.15 by @f0ssel in #1170
Full Changelog: v0.0.14...v0.0.15