Skip to content

Commit

Permalink
Merge pull request #73 from cvng/create-schema
Browse files Browse the repository at this point in the history
feat: add tests for create schema
  • Loading branch information
psteinroe authored Dec 15, 2023
2 parents 38768c0 + c557ab7 commit 25d140d
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions crates/parser/tests/data/statements/valid/0041.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
CREATE SCHEMA myschema;
CREATE SCHEMA AUTHORIZATION joe;
CREATE SCHEMA IF NOT EXISTS test AUTHORIZATION joe;
CREATE SCHEMA hollywood CREATE TABLE films (title text, release date, awards text[]) CREATE VIEW winners AS SELECT title, release FROM films WHERE awards IS NOT NULL;

0 comments on commit 25d140d

Please sign in to comment.