Skip to content

v0.5.1

Compare
Choose a tag to compare
@greyscaled greyscaled released this 28 Sep 15:26
· 463 commits to main since this release
v0.5.1
3672089

Highlights

  • CREATE EXTERNAL TABLE now supports delta and iceberg data source
    types. The following example creates an external table from a delta
    table in GCS:

    CREATE EXTERNAL TABLE my_delta_table
    FROM delta
    OPTIONS (
        location 'gs://<bucket_name>/<path_to_delta_table>',
        service_account_key '<gcp_service_account>'
    );
  • hybrid execution:

    • You can now run EXPLAIN ANALYZE [VERBOSE] <query> when running in
      hybrid execution for metrics and details on how the hybrid query is
      executed
  • misc fixes:

    • ndjson_scan table function for ndjson files can now be inferred. For
      example: SELECT * FROM 'file.ndjson'.
    • fixed search_path not setting correctly in hybrid execution mode
    • CSVs with unnamed column headers can now be scanned
    • list_columns now works for native tables. Use "default" as the
      database name: list_columns("default", <schema>, <table>)

Installing or Updating

To install or update just run the following command in the directory you want
the binary:

curl https://glaredb.com/install.sh | sh

What's Changed

New Contributors

Full Changelog: v0.5.0...v0.5.1