postgresql/src/test/regress/sql/text.sql

16 lines
329 B
MySQL
Raw Normal View History

--
-- TEXT
--
1997-04-05 13:26:55 +02:00
SELECT text 'this is a text string' = text 'this is a text string' AS true;
1997-04-05 13:26:55 +02:00
SELECT text 'this is a text string' = text 'this is a text strin' AS false;
1997-04-05 13:26:55 +02:00
CREATE TABLE TEXT_TBL (f1 text);
INSERT INTO TEXT_TBL VALUES ('doh!');
INSERT INTO TEXT_TBL VALUES ('hi de ho neighbor');
SELECT '' AS two, * FROM TEXT_TBL;
1997-04-05 13:26:55 +02:00