Skip to content

v0.8.2

Pre-release
Pre-release
Compare
Choose a tag to compare
@greyscaled greyscaled released this 31 Jan 19:20
· 181 commits to main since this release
v0.8.2
37fc14a

v0.8.2 is a point release of fixes and chores. Refer to the commits below for more detail.

Cassandra Update

We now support Cassandra data sources with PasswordAuthenticator.

-- Add an external table
CREATE EXTERNAL TABLE my_cassandra_table FROM cassandra OPTIONS (
    host = '<host>',
    keyspace = '<keyspace>',
    table = '<table>',
    username = '[username]',
    password = '[password]'
);

-- Add an external database
CREATE EXTERNAL DATABASE my_cassandra_db FROM cassandra OPTIONS (
    host = '<hostname>:<port>',
    username = '[username]',
    password = '[passowrd]'
);

-- Table function
SELECT count(*) FROM read_cassandra('<host>', '<keyspace>', '<table>', '[username]', '[password]');

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

Full Changelog: v0.8.1...v0.8.2