Skip to content

v0.18.0: AWS Redshift DDL dialect support

Compare
Choose a tag to compare
@xnuinside xnuinside released this 02 Aug 21:49
· 319 commits to main since this release

Features

  1. Added base support fot AWS Redshift SQL dialect.
    Added support for ENCODE property in column.
    Added new --output-mode='redshift' that add to column 'encrypt' property by default.
    Also add table properties: distkeys, sortkey, diststyle, encode (table level encode), temp.

Supported Redshift statements: SORTKEY, DISTSTYLE, DISTKEY, ENCODE

CREATE TEMP / TEMPORARY TABLE

syntax like with LIKE statement:

create temp table tempevent(like event);