Skip to content

Commit

Permalink
start of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tishj committed Apr 17, 2024
1 parent 1b04d41 commit d2043a8
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions expected/create_extension.out
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
CREATE EXTENSION quack;
CREATE TABLE tbl(a varchar);
INSERT INTO tbl VALUES ('test');
SELECT * FROM tbl;
INFO: Column name: a, Type: VARCHAR
a
------
test
(1 row)

3 changes: 3 additions & 0 deletions sql/create_extension.sql
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
CREATE EXTENSION quack;
CREATE TABLE tbl(a varchar);
INSERT INTO tbl VALUES ('test');
SELECT * FROM tbl;

0 comments on commit d2043a8

Please sign in to comment.