Skip to content

v0.9.1

Compare
Choose a tag to compare
@greyscaled greyscaled released this 05 Mar 20:52
· 92 commits to main since this release
9c27dd0

v0.9.1 is a point release of mostly fixes and chores.

Notable Improvements

  • cloud_upload can now be used in hybrid and remote contexts, such as with the CLI or Python and Node.js language bindings
  • You can now create tables from excel
CREATE EXTERNAL TABLE t FROM excel OPTIONS (
    location = '<location>',     -- required
    has_header = 'true',         -- optional, 'true' or 'false'
    sheet_name = '<sheet_name>'  -- optional, defaults to first sheet in the workbook
);

Installing or Updating

CLI

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

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

Python

pip install glaredb

Node.js

npm install @glaredb/glaredb

What's Changed

New Contributors

Full Changelog: v0.9.0...v0.9.1