blob: fb9daf4fd569f3bbad52afb8ad2643b80b2f6ef3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
-- *************testing built-in type text ****************
SELECT 'this is a text string'::text = 'this is a text string'::text AS true;
SELECT 'this is a text string'::text = 'this is a text strin'::text AS false;
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;
|