Skip to content

Commit 25d140d

Browse files
authored
Merge pull request #73 from cvng/create-schema
feat: add tests for create schema
2 parents 38768c0 + c557ab7 commit 25d140d

File tree

1 file changed

+4
-0
lines changed
  • crates/parser/tests/data/statements/valid

1 file changed

+4
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
CREATE SCHEMA myschema;
2+
CREATE SCHEMA AUTHORIZATION joe;
3+
CREATE SCHEMA IF NOT EXISTS test AUTHORIZATION joe;
4+
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 commit comments

Comments
 (0)