~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to src/test/regress/expected/text.out

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
--
 
2
-- TEXT
 
3
--
 
4
SELECT text 'this is a text string' = text 'this is a text string' AS true;
 
5
 true 
 
6
------
 
7
 t
 
8
(1 row)
 
9
 
 
10
SELECT text 'this is a text string' = text 'this is a text strin' AS false;
 
11
 false 
 
12
-------
 
13
 f
 
14
(1 row)
 
15
 
 
16
CREATE TABLE TEXT_TBL (f1 text);
 
17
INSERT INTO TEXT_TBL VALUES ('doh!');
 
18
INSERT INTO TEXT_TBL VALUES ('hi de ho neighbor');
 
19
SELECT '' AS two, * FROM TEXT_TBL;
 
20
 two |        f1         
 
21
-----+-------------------
 
22
     | doh!
 
23
     | hi de ho neighbor
 
24
(2 rows)
 
25