Consistently use "superuser" instead of "super user"
[pgsql.git] / src / pl / plpython / expected / plpython_newline.out
blob27dc2f8ab0c01fd985988e2d8e3552d6a6dbb16d
1 --
2 -- Universal Newline Support
3 --
4 CREATE OR REPLACE FUNCTION newline_lf() RETURNS integer AS
5 E'x = 100\ny = 23\nreturn x + y\n'
6 LANGUAGE plpythonu;
7 CREATE OR REPLACE FUNCTION newline_cr() RETURNS integer AS
8 E'x = 100\ry = 23\rreturn x + y\r'
9 LANGUAGE plpythonu;
10 CREATE OR REPLACE FUNCTION newline_crlf() RETURNS integer AS
11 E'x = 100\r\ny = 23\r\nreturn x + y\r\n'
12 LANGUAGE plpythonu;
13 SELECT newline_lf();
14  newline_lf 
15 ------------
16         123
17 (1 row)
19 SELECT newline_cr();
20  newline_cr 
21 ------------
22         123
23 (1 row)
25 SELECT newline_crlf();
26  newline_crlf 
27 --------------
28           123
29 (1 row)