Skip to content

v0.2.0

Compare
Choose a tag to compare
@scsmithr scsmithr released this 11 Jul 21:17
· 265 commits to main since this release
v0.2.0
b99632b

Highlights

  • python bindings:

    pip install glaredb

    The instance of glaredb is currently limited to in-memory. We're working on connecting to remote instances of glaredb for a future release. For more information, we have examples at https://github.com/GlareDB/glaredb/tree/main/py-glaredb/examples.

  • COPY TO:

    • With COPY TO, a local copy of a query can be persisted. We're adding support for remote persistence in the future. For example, you can save a local copy in test.csv of the query select 1 with: copy (select 1) to local (location 'test.csv');
    • Currently, json, parquet and csv formats are supported. The default format is CSV, but you can specify a different format as follows:
    copy (select 1) to local format parquet (location 'test.parquet');
  • ndjson_scan:

  • misc:

    • Added timestamp support for native tables

What's Changed

New Contributors

Full Changelog: v0.0.16...v0.2.0