Skip to content

v0.22.0

Compare
Choose a tag to compare
@elliotchance elliotchance released this 09 Jul 21:03
· 67 commits to main since this release
4fb1a6d
F311-01: CREATE SCHEMA (#111)

This adds support for `F311-01`: `CREATE SCHEMA` from `F311`:
"Schema definition statement" and the respective `DROP SCHEMA` (even
through that's not strictly required for `F311`). For example:

    CREATE SCHEMA warehouse;

    CREATE TABLE warehouse.products (
        title CHARACTER VARYING(100),
        price FLOAT
    );

    DROP SCHEMA warehouse CASCADE;