]> granicus.if.org Git - postgresql/blob - src/test/regress/sql/text.sql
RESET SESSION, plus related new DDL commands. Patch from Marko Kreen,
[postgresql] / src / test / regress / sql / text.sql
1 --
2 -- TEXT
3 --
4
5 SELECT text 'this is a text string' = text 'this is a text string' AS true;
6
7 SELECT text 'this is a text string' = text 'this is a text strin' AS false;
8
9 CREATE TABLE TEXT_TBL (f1 text);
10
11 INSERT INTO TEXT_TBL VALUES ('doh!');
12 INSERT INTO TEXT_TBL VALUES ('hi de ho neighbor');
13
14 SELECT '' AS two, * FROM TEXT_TBL;
15