aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/tests/postgresql/initscripts/text_tbl.sql
blob: 8ce36055d3f7eeca10a3041df5f2a201ae6ca403 (plain) (blame)
1
2
3
4
5
6
7
8
9
CREATE TABLE TEXT_TBL (f1 text);

INSERT INTO TEXT_TBL VALUES ('doh!');
INSERT INTO TEXT_TBL VALUES ('hi de ho neighbor');

CREATE TABLE text_tbl (f1 text);
INSERT INTO text_tbl
SELECT * from TEXT_TBL;