]> granicus.if.org Git - postgresql/blob - src/test/regress/expected/text.out
Don't allow logging in with empty password.
[postgresql] / src / test / regress / expected / text.out
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
26 -- As of 8.3 we have removed most implicit casts to text, so that for example
27 -- this no longer works:
28 select length(42);
29 ERROR:  function length(integer) does not exist
30 LINE 1: select length(42);
31                ^
32 HINT:  No function matches the given name and argument types. You might need to add explicit type casts.
33 -- But as a special exception for usability's sake, we still allow implicit
34 -- casting to text in concatenations, so long as the other input is text or
35 -- an unknown literal.  So these work:
36 select 'four: '::text || 2+2;
37  ?column? 
38 ----------
39  four: 4
40 (1 row)
41
42 select 'four: ' || 2+2;
43  ?column? 
44 ----------
45  four: 4
46 (1 row)
47
48 -- but not this:
49 select 3 || 4.0;
50 ERROR:  operator does not exist: integer || numeric
51 LINE 1: select 3 || 4.0;
52                  ^
53 HINT:  No operator matches the given name and argument type(s). You might need to add explicit type casts.
54 /*
55  * various string functions
56  */
57 select concat('one');
58  concat 
59 --------
60  one
61 (1 row)
62
63 select concat(1,2,3,'hello',true, false, to_date('20100309','YYYYMMDD'));
64         concat        
65 ----------------------
66  123hellotf03-09-2010
67 (1 row)
68
69 select concat_ws('#','one');
70  concat_ws 
71 -----------
72  one
73 (1 row)
74
75 select concat_ws('#',1,2,3,'hello',true, false, to_date('20100309','YYYYMMDD'));
76          concat_ws          
77 ----------------------------
78  1#2#3#hello#t#f#03-09-2010
79 (1 row)
80
81 select concat_ws(',',10,20,null,30);
82  concat_ws 
83 -----------
84  10,20,30
85 (1 row)
86
87 select concat_ws('',10,20,null,30);
88  concat_ws 
89 -----------
90  102030
91 (1 row)
92
93 select concat_ws(NULL,10,20,null,30) is null;
94  ?column? 
95 ----------
96  t
97 (1 row)
98
99 select reverse('abcde');
100  reverse 
101 ---------
102  edcba
103 (1 row)
104
105 select i, left('ahoj', i), right('ahoj', i) from generate_series(-5, 5) t(i) order by i;
106  i  | left | right 
107 ----+------+-------
108  -5 |      | 
109  -4 |      | 
110  -3 | a    | j
111  -2 | ah   | oj
112  -1 | aho  | hoj
113   0 |      | 
114   1 | a    | j
115   2 | ah   | oj
116   3 | aho  | hoj
117   4 | ahoj | ahoj
118   5 | ahoj | ahoj
119 (11 rows)
120
121 select quote_literal('');
122  quote_literal 
123 ---------------
124  ''
125 (1 row)
126
127 select quote_literal('abc''');
128  quote_literal 
129 ---------------
130  'abc'''
131 (1 row)
132
133 select quote_literal(e'\\');
134  quote_literal 
135 ---------------
136  E'\\'
137 (1 row)
138
139 -- check variadic labeled argument
140 select concat(variadic array[1,2,3]);
141  concat 
142 --------
143  123
144 (1 row)
145
146 select concat_ws(',', variadic array[1,2,3]);
147  concat_ws 
148 -----------
149  1,2,3
150 (1 row)
151
152 select concat_ws(',', variadic NULL::int[]);
153  concat_ws 
154 -----------
155  
156 (1 row)
157
158 select concat(variadic NULL::int[]) is NULL;
159  ?column? 
160 ----------
161  t
162 (1 row)
163
164 select concat(variadic '{}'::int[]) = '';
165  ?column? 
166 ----------
167  t
168 (1 row)
169
170 --should fail
171 select concat_ws(',', variadic 10);
172 ERROR:  VARIADIC argument must be an array
173 LINE 1: select concat_ws(',', variadic 10);
174                                        ^
175 /*
176  * format
177  */
178 select format(NULL);
179  format 
180 --------
181  
182 (1 row)
183
184 select format('Hello');
185  format 
186 --------
187  Hello
188 (1 row)
189
190 select format('Hello %s', 'World');
191    format    
192 -------------
193  Hello World
194 (1 row)
195
196 select format('Hello %%');
197  format  
198 ---------
199  Hello %
200 (1 row)
201
202 select format('Hello %%%%');
203   format  
204 ----------
205  Hello %%
206 (1 row)
207
208 -- should fail
209 select format('Hello %s %s', 'World');
210 ERROR:  too few arguments for format()
211 select format('Hello %s');
212 ERROR:  too few arguments for format()
213 select format('Hello %x', 20);
214 ERROR:  unrecognized format() type specifier "x"
215 HINT:  For a single "%" use "%%".
216 -- check literal and sql identifiers
217 select format('INSERT INTO %I VALUES(%L,%L)', 'mytab', 10, 'Hello');
218                  format                 
219 ----------------------------------------
220  INSERT INTO mytab VALUES('10','Hello')
221 (1 row)
222
223 select format('%s%s%s','Hello', NULL,'World');
224    format   
225 ------------
226  HelloWorld
227 (1 row)
228
229 select format('INSERT INTO %I VALUES(%L,%L)', 'mytab', 10, NULL);
230                format                
231 -------------------------------------
232  INSERT INTO mytab VALUES('10',NULL)
233 (1 row)
234
235 select format('INSERT INTO %I VALUES(%L,%L)', 'mytab', NULL, 'Hello');
236                  format                 
237 ----------------------------------------
238  INSERT INTO mytab VALUES(NULL,'Hello')
239 (1 row)
240
241 -- should fail, sql identifier cannot be NULL
242 select format('INSERT INTO %I VALUES(%L,%L)', NULL, 10, 'Hello');
243 ERROR:  null values cannot be formatted as an SQL identifier
244 -- check positional placeholders
245 select format('%1$s %3$s', 1, 2, 3);
246  format 
247 --------
248  1 3
249 (1 row)
250
251 select format('%1$s %12$s', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12);
252  format 
253 --------
254  1 12
255 (1 row)
256
257 -- should fail
258 select format('%1$s %4$s', 1, 2, 3);
259 ERROR:  too few arguments for format()
260 select format('%1$s %13$s', 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12);
261 ERROR:  too few arguments for format()
262 select format('%0$s', 'Hello');
263 ERROR:  format specifies argument 0, but arguments are numbered from 1
264 select format('%*0$s', 'Hello');
265 ERROR:  format specifies argument 0, but arguments are numbered from 1
266 select format('%1$', 1);
267 ERROR:  unterminated format() type specifier
268 HINT:  For a single "%" use "%%".
269 select format('%1$1', 1);
270 ERROR:  unterminated format() type specifier
271 HINT:  For a single "%" use "%%".
272 -- check mix of positional and ordered placeholders
273 select format('Hello %s %1$s %s', 'World', 'Hello again');
274             format             
275 -------------------------------
276  Hello World World Hello again
277 (1 row)
278
279 select format('Hello %s %s, %2$s %2$s', 'World', 'Hello again');
280                       format                      
281 --------------------------------------------------
282  Hello World Hello again, Hello again Hello again
283 (1 row)
284
285 -- check variadic labeled arguments
286 select format('%s, %s', variadic array['Hello','World']);
287     format    
288 --------------
289  Hello, World
290 (1 row)
291
292 select format('%s, %s', variadic array[1, 2]);
293  format 
294 --------
295  1, 2
296 (1 row)
297
298 select format('%s, %s', variadic array[true, false]);
299  format 
300 --------
301  t, f
302 (1 row)
303
304 select format('%s, %s', variadic array[true, false]::text[]);
305    format    
306 -------------
307  true, false
308 (1 row)
309
310 -- check variadic with positional placeholders
311 select format('%2$s, %1$s', variadic array['first', 'second']);
312     format     
313 ---------------
314  second, first
315 (1 row)
316
317 select format('%2$s, %1$s', variadic array[1, 2]);
318  format 
319 --------
320  2, 1
321 (1 row)
322
323 -- variadic argument can be array type NULL, but should not be referenced
324 select format('Hello', variadic NULL::int[]);
325  format 
326 --------
327  Hello
328 (1 row)
329
330 -- variadic argument allows simulating more than FUNC_MAX_ARGS parameters
331 select format(string_agg('%s',','), variadic array_agg(i))
332 from generate_series(1,200) g(i);
333                                                                                                                                                                                                                                                                                                                                                        format                                                                                                                                                                                                                                                                                                                                                        
334 ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
335  1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200
336 (1 row)
337
338 -- check field widths and left, right alignment
339 select format('>>%10s<<', 'Hello');
340      format     
341 ----------------
342  >>     Hello<<
343 (1 row)
344
345 select format('>>%10s<<', NULL);
346      format     
347 ----------------
348  >>          <<
349 (1 row)
350
351 select format('>>%10s<<', '');
352      format     
353 ----------------
354  >>          <<
355 (1 row)
356
357 select format('>>%-10s<<', '');
358      format     
359 ----------------
360  >>          <<
361 (1 row)
362
363 select format('>>%-10s<<', 'Hello');
364      format     
365 ----------------
366  >>Hello     <<
367 (1 row)
368
369 select format('>>%-10s<<', NULL);
370      format     
371 ----------------
372  >>          <<
373 (1 row)
374
375 select format('>>%1$10s<<', 'Hello');
376      format     
377 ----------------
378  >>     Hello<<
379 (1 row)
380
381 select format('>>%1$-10I<<', 'Hello');
382      format     
383 ----------------
384  >>"Hello"   <<
385 (1 row)
386
387 select format('>>%2$*1$L<<', 10, 'Hello');
388      format     
389 ----------------
390  >>   'Hello'<<
391 (1 row)
392
393 select format('>>%2$*1$L<<', 10, NULL);
394      format     
395 ----------------
396  >>      NULL<<
397 (1 row)
398
399 select format('>>%2$*1$L<<', -10, NULL);
400      format     
401 ----------------
402  >>NULL      <<
403 (1 row)
404
405 select format('>>%*s<<', 10, 'Hello');
406      format     
407 ----------------
408  >>     Hello<<
409 (1 row)
410
411 select format('>>%*1$s<<', 10, 'Hello');
412      format     
413 ----------------
414  >>     Hello<<
415 (1 row)
416
417 select format('>>%-s<<', 'Hello');
418   format   
419 -----------
420  >>Hello<<
421 (1 row)
422
423 select format('>>%10L<<', NULL);
424      format     
425 ----------------
426  >>      NULL<<
427 (1 row)
428
429 select format('>>%2$*1$L<<', NULL, 'Hello');
430    format    
431 -------------
432  >>'Hello'<<
433 (1 row)
434
435 select format('>>%2$*1$L<<', 0, 'Hello');
436    format    
437 -------------
438  >>'Hello'<<
439 (1 row)
440