Fix xslt_process() to ensure that it inserts a NULL terminator after the
[PostgreSQL.git] / src / test / regress / expected / xml.out
blobecca5896a70c2afe483e936a3b6eb2eb334881b4
1 CREATE TABLE xmltest (
2     id int,
3     data xml
4 );
5 INSERT INTO xmltest VALUES (1, '<value>one</value>');
6 INSERT INTO xmltest VALUES (2, '<value>two</value>');
7 INSERT INTO xmltest VALUES (3, '<wrong');
8 ERROR:  invalid XML content
9 LINE 1: INSERT INTO xmltest VALUES (3, '<wrong');
10                                        ^
11 DETAIL:  Entity: line 1: parser error : Couldn't find end of Start Tag wrong line 1
12 <wrong
13       ^
14 SELECT * FROM xmltest;
15  id |        data        
16 ----+--------------------
17   1 | <value>one</value>
18   2 | <value>two</value>
19 (2 rows)
21 SELECT xmlcomment('test');
22  xmlcomment  
23 -------------
24  <!--test-->
25 (1 row)
27 SELECT xmlcomment('-test');
28   xmlcomment  
29 --------------
30  <!---test-->
31 (1 row)
33 SELECT xmlcomment('test-');
34 ERROR:  invalid XML comment
35 SELECT xmlcomment('--test');
36 ERROR:  invalid XML comment
37 SELECT xmlcomment('te st');
38   xmlcomment  
39 --------------
40  <!--te st-->
41 (1 row)
43 SELECT xmlconcat(xmlcomment('hello'),
44                  xmlelement(NAME qux, 'foo'),
45                  xmlcomment('world'));
46                xmlconcat                
47 ----------------------------------------
48  <!--hello--><qux>foo</qux><!--world-->
49 (1 row)
51 SELECT xmlconcat('hello', 'you');
52  xmlconcat 
53 -----------
54  helloyou
55 (1 row)
57 SELECT xmlconcat(1, 2);
58 ERROR:  argument of XMLCONCAT must be type xml, not type integer
59 LINE 1: SELECT xmlconcat(1, 2);
60                          ^
61 SELECT xmlconcat('bad', '<syntax');
62 ERROR:  invalid XML content
63 LINE 1: SELECT xmlconcat('bad', '<syntax');
64                                 ^
65 DETAIL:  Entity: line 1: parser error : Couldn't find end of Start Tag syntax line 1
66 <syntax
67        ^
68 SELECT xmlconcat('<foo/>', NULL, '<?xml version="1.1" standalone="no"?><bar/>');
69   xmlconcat   
70 --------------
71  <foo/><bar/>
72 (1 row)
74 SELECT xmlconcat('<?xml version="1.1"?><foo/>', NULL, '<?xml version="1.1" standalone="no"?><bar/>');
75              xmlconcat             
76 -----------------------------------
77  <?xml version="1.1"?><foo/><bar/>
78 (1 row)
80 SELECT xmlconcat(NULL);
81  xmlconcat 
82 -----------
84 (1 row)
86 SELECT xmlconcat(NULL, NULL);
87  xmlconcat 
88 -----------
90 (1 row)
92 SELECT xmlelement(name element,
93                   xmlattributes (1 as one, 'deuce' as two),
94                   'content');
95                    xmlelement                   
96 ------------------------------------------------
97  <element one="1" two="deuce">content</element>
98 (1 row)
100 SELECT xmlelement(name element,
101                   xmlattributes ('unnamed and wrong'));
102 ERROR:  unnamed XML attribute value must be a column reference
103 LINE 2:                   xmlattributes ('unnamed and wrong'));
104                                          ^
105 SELECT xmlelement(name element, xmlelement(name nested, 'stuff'));
106                 xmlelement                 
107 -------------------------------------------
108  <element><nested>stuff</nested></element>
109 (1 row)
111 SELECT xmlelement(name employee, xmlforest(name, age, salary as pay)) FROM emp;
112                               xmlelement                              
113 ----------------------------------------------------------------------
114  <employee><name>sharon</name><age>25</age><pay>1000</pay></employee>
115  <employee><name>sam</name><age>30</age><pay>2000</pay></employee>
116  <employee><name>bill</name><age>20</age><pay>1000</pay></employee>
117  <employee><name>jeff</name><age>23</age><pay>600</pay></employee>
118  <employee><name>cim</name><age>30</age><pay>400</pay></employee>
119  <employee><name>linda</name><age>19</age><pay>100</pay></employee>
120 (6 rows)
122 SELECT xmlelement(name duplicate, xmlattributes(1 as a, 2 as b, 3 as a));
123 ERROR:  XML attribute name "a" appears more than once
124 LINE 1: ...ment(name duplicate, xmlattributes(1 as a, 2 as b, 3 as a));
125                                                               ^
126 SELECT xmlelement(name num, 37);
127   xmlelement   
128 ---------------
129  <num>37</num>
130 (1 row)
132 SELECT xmlelement(name foo, text 'bar');
133    xmlelement   
134 ----------------
135  <foo>bar</foo>
136 (1 row)
138 SELECT xmlelement(name foo, xml 'bar');
139    xmlelement   
140 ----------------
141  <foo>bar</foo>
142 (1 row)
144 SELECT xmlelement(name foo, text 'b<a/>r');
145        xmlelement        
146 -------------------------
147  <foo>b&lt;a/&gt;r</foo>
148 (1 row)
150 SELECT xmlelement(name foo, xml 'b<a/>r');
151     xmlelement     
152 -------------------
153  <foo>b<a/>r</foo>
154 (1 row)
156 SELECT xmlelement(name foo, array[1, 2, 3]);
157                                xmlelement                                
158 -------------------------------------------------------------------------
159  <foo><element>1</element><element>2</element><element>3</element></foo>
160 (1 row)
162 SET xmlbinary TO base64;
163 SELECT xmlelement(name foo, bytea 'bar');
164    xmlelement    
165 -----------------
166  <foo>YmFy</foo>
167 (1 row)
169 SET xmlbinary TO hex;
170 SELECT xmlelement(name foo, bytea 'bar');
171     xmlelement     
172 -------------------
173  <foo>626172</foo>
174 (1 row)
176 SELECT xmlelement(name foo, xmlattributes(true as bar));
177     xmlelement     
178 -------------------
179  <foo bar="true"/>
180 (1 row)
182 SELECT xmlelement(name foo, xmlattributes('2009-04-09 00:24:37'::timestamp as bar));
183             xmlelement            
184 ----------------------------------
185  <foo bar="2009-04-09T00:24:37"/>
186 (1 row)
188 SELECT xmlelement(name foo, xmlattributes('infinity'::timestamp as bar));
189 ERROR:  timestamp out of range
190 DETAIL:  XML does not support infinite timestamp values.
191 SELECT xmlelement(name foo, xmlattributes('<>&"''' as funny, xml 'b<a/>r' as funnier));
192                          xmlelement                         
193 ------------------------------------------------------------
194  <foo funny="&lt;&gt;&amp;&quot;'" funnier="b&lt;a/&gt;r"/>
195 (1 row)
197 SELECT xmlparse(content 'abc');
198  xmlparse 
199 ----------
200  abc
201 (1 row)
203 SELECT xmlparse(content '<abc>x</abc>');
204    xmlparse   
205 --------------
206  <abc>x</abc>
207 (1 row)
209 SELECT xmlparse(document 'abc');
210 ERROR:  invalid XML document
211 DETAIL:  Entity: line 1: parser error : Start tag expected, '<' not found
214 SELECT xmlparse(document '<abc>x</abc>');
215    xmlparse   
216 --------------
217  <abc>x</abc>
218 (1 row)
220 SELECT xmlpi(name foo);
221   xmlpi  
222 ---------
223  <?foo?>
224 (1 row)
226 SELECT xmlpi(name xml);
227 ERROR:  invalid XML processing instruction
228 DETAIL:  XML processing instruction target name cannot be "xml".
229 SELECT xmlpi(name xmlstuff);
230     xmlpi     
231 --------------
232  <?xmlstuff?>
233 (1 row)
235 SELECT xmlpi(name foo, 'bar');
236     xmlpi    
237 -------------
238  <?foo bar?>
239 (1 row)
241 SELECT xmlpi(name foo, 'in?>valid');
242 ERROR:  invalid XML processing instruction
243 DETAIL:  XML processing instruction cannot contain "?>".
244 SELECT xmlpi(name foo, null);
245  xmlpi 
246 -------
248 (1 row)
250 SELECT xmlpi(name xml, null);
251 ERROR:  invalid XML processing instruction
252 DETAIL:  XML processing instruction target name cannot be "xml".
253 SELECT xmlpi(name xmlstuff, null);
254  xmlpi 
255 -------
257 (1 row)
259 SELECT xmlpi(name "xml-stylesheet", 'href="mystyle.css" type="text/css"');
260                          xmlpi                         
261 -------------------------------------------------------
262  <?xml-stylesheet href="mystyle.css" type="text/css"?>
263 (1 row)
265 SELECT xmlpi(name foo, '   bar');
266     xmlpi    
267 -------------
268  <?foo bar?>
269 (1 row)
271 SELECT xmlroot(xml '<foo/>', version no value, standalone no value);
272  xmlroot 
273 ---------
274  <foo/>
275 (1 row)
277 SELECT xmlroot(xml '<foo/>', version '2.0');
278            xmlroot           
279 -----------------------------
280  <?xml version="2.0"?><foo/>
281 (1 row)
283 SELECT xmlroot(xml '<foo/>', version no value, standalone yes);
284                    xmlroot                    
285 ----------------------------------------------
286  <?xml version="1.0" standalone="yes"?><foo/>
287 (1 row)
289 SELECT xmlroot(xml '<?xml version="1.1"?><foo/>', version no value, standalone yes);
290                    xmlroot                    
291 ----------------------------------------------
292  <?xml version="1.0" standalone="yes"?><foo/>
293 (1 row)
295 SELECT xmlroot(xmlroot(xml '<foo/>', version '1.0'), version '1.1', standalone no);
296                    xmlroot                   
297 ---------------------------------------------
298  <?xml version="1.1" standalone="no"?><foo/>
299 (1 row)
301 SELECT xmlroot('<?xml version="1.1" standalone="yes"?><foo/>', version no value, standalone no);
302                    xmlroot                   
303 ---------------------------------------------
304  <?xml version="1.0" standalone="no"?><foo/>
305 (1 row)
307 SELECT xmlroot('<?xml version="1.1" standalone="yes"?><foo/>', version no value, standalone no value);
308  xmlroot 
309 ---------
310  <foo/>
311 (1 row)
313 SELECT xmlroot('<?xml version="1.1" standalone="yes"?><foo/>', version no value);
314                    xmlroot                    
315 ----------------------------------------------
316  <?xml version="1.0" standalone="yes"?><foo/>
317 (1 row)
319 SELECT xmlroot (
320   xmlelement (
321     name gazonk,
322     xmlattributes (
323       'val' AS name,
324       1 + 1 AS num
325     ),
326     xmlelement (
327       NAME qux,
328       'foo'
329     )
330   ),
331   version '1.0',
332   standalone yes
334                                          xmlroot                                          
335 ------------------------------------------------------------------------------------------
336  <?xml version="1.0" standalone="yes"?><gazonk name="val" num="2"><qux>foo</qux></gazonk>
337 (1 row)
339 SELECT xmlserialize(content data as character varying(20)) FROM xmltest;
340     xmlserialize    
341 --------------------
342  <value>one</value>
343  <value>two</value>
344 (2 rows)
346 SELECT xmlserialize(content 'good' as char(10));
347  xmlserialize 
348 --------------
349  good      
350 (1 row)
352 SELECT xmlserialize(document 'bad' as text);
353 ERROR:  not an XML document
354 SELECT xml '<foo>bar</foo>' IS DOCUMENT;
355  ?column? 
356 ----------
358 (1 row)
360 SELECT xml '<foo>bar</foo><bar>foo</bar>' IS DOCUMENT;
361  ?column? 
362 ----------
364 (1 row)
366 SELECT xml '<abc/>' IS NOT DOCUMENT;
367  ?column? 
368 ----------
370 (1 row)
372 SELECT xml 'abc' IS NOT DOCUMENT;
373  ?column? 
374 ----------
376 (1 row)
378 SELECT '<>' IS NOT DOCUMENT;
379 ERROR:  invalid XML content
380 LINE 1: SELECT '<>' IS NOT DOCUMENT;
381                ^
382 DETAIL:  Entity: line 1: parser error : StartTag: invalid element name
385 SELECT xmlagg(data) FROM xmltest;
386                 xmlagg                
387 --------------------------------------
388  <value>one</value><value>two</value>
389 (1 row)
391 SELECT xmlagg(data) FROM xmltest WHERE id > 10;
392  xmlagg 
393 --------
395 (1 row)
397 SELECT xmlelement(name employees, xmlagg(xmlelement(name name, name))) FROM emp;
398                                                            xmlelement                                                           
399 --------------------------------------------------------------------------------------------------------------------------------
400  <employees><name>sharon</name><name>sam</name><name>bill</name><name>jeff</name><name>cim</name><name>linda</name></employees>
401 (1 row)
403 -- Check mapping SQL identifier to XML name
404 SELECT xmlpi(name ":::_xml_abc135.%-&_");
405                       xmlpi                      
406 -------------------------------------------------
407  <?_x003A_::_x005F_xml_abc135._x0025_-_x0026__?>
408 (1 row)
410 SELECT xmlpi(name "123");
411      xmlpi     
412 ---------------
413  <?_x0031_23?>
414 (1 row)
416 PREPARE foo (xml) AS SELECT xmlconcat('<foo/>', $1);
417 SET XML OPTION DOCUMENT;
418 EXECUTE foo ('<bar/>');
419   xmlconcat   
420 --------------
421  <foo/><bar/>
422 (1 row)
424 EXECUTE foo ('bad');
425 ERROR:  invalid XML document
426 LINE 1: EXECUTE foo ('bad');
427                      ^
428 DETAIL:  Entity: line 1: parser error : Start tag expected, '<' not found
431 SET XML OPTION CONTENT;
432 EXECUTE foo ('<bar/>');
433   xmlconcat   
434 --------------
435  <foo/><bar/>
436 (1 row)
438 EXECUTE foo ('good');
439  xmlconcat  
440 ------------
441  <foo/>good
442 (1 row)
444 -- Test backwards parsing
445 CREATE VIEW xmlview1 AS SELECT xmlcomment('test');
446 CREATE VIEW xmlview2 AS SELECT xmlconcat('hello', 'you');
447 CREATE VIEW xmlview3 AS SELECT xmlelement(name element, xmlattributes (1 as ":one:", 'deuce' as two), 'content&');
448 CREATE VIEW xmlview4 AS SELECT xmlelement(name employee, xmlforest(name, age, salary as pay)) FROM emp;
449 CREATE VIEW xmlview5 AS SELECT xmlparse(content '<abc>x</abc>');
450 CREATE VIEW xmlview6 AS SELECT xmlpi(name foo, 'bar');
451 CREATE VIEW xmlview7 AS SELECT xmlroot(xml '<foo/>', version no value, standalone yes);
452 CREATE VIEW xmlview8 AS SELECT xmlserialize(content 'good' as char(10));
453 CREATE VIEW xmlview9 AS SELECT xmlserialize(content 'good' as text);
454 SELECT table_name, view_definition FROM information_schema.views
455   WHERE table_name LIKE 'xmlview%' ORDER BY 1;
456  table_name |                                                      view_definition                                                       
457 ------------+----------------------------------------------------------------------------------------------------------------------------
458  xmlview1   | SELECT xmlcomment('test'::text) AS xmlcomment;
459  xmlview2   | SELECT XMLCONCAT('hello'::xml, 'you'::xml) AS "xmlconcat";
460  xmlview3   | SELECT XMLELEMENT(NAME element, XMLATTRIBUTES(1 AS ":one:", 'deuce' AS two), 'content&') AS "xmlelement";
461  xmlview4   | SELECT XMLELEMENT(NAME employee, XMLFOREST(emp.name AS name, emp.age AS age, emp.salary AS pay)) AS "xmlelement" FROM emp;
462  xmlview5   | SELECT XMLPARSE(CONTENT '<abc>x</abc>'::text STRIP WHITESPACE) AS "xmlparse";
463  xmlview6   | SELECT XMLPI(NAME foo, 'bar'::text) AS "xmlpi";
464  xmlview7   | SELECT XMLROOT('<foo/>'::xml, VERSION NO VALUE, STANDALONE YES) AS "xmlroot";
465  xmlview8   | SELECT (XMLSERIALIZE(CONTENT 'good'::xml AS character(10)))::character(10) AS "xmlserialize";
466  xmlview9   | SELECT XMLSERIALIZE(CONTENT 'good'::xml AS text) AS "xmlserialize";
467 (9 rows)
469 -- Text XPath expressions evaluation
470 SELECT xpath('/value', data) FROM xmltest;
471         xpath         
472 ----------------------
473  {<value>one</value>}
474  {<value>two</value>}
475 (2 rows)
477 SELECT xpath(NULL, NULL) IS NULL FROM xmltest;
478  ?column? 
479 ----------
482 (2 rows)
484 SELECT xpath('', '<!-- error -->');
485 ERROR:  empty XPath expression
486 CONTEXT:  SQL function "xpath" statement 1
487 SELECT xpath('//text()', '<local:data xmlns:local="http://127.0.0.1"><local:piece id="1">number one</local:piece><local:piece id="2" /></local:data>');
488      xpath      
489 ----------------
490  {"number one"}
491 (1 row)
493 SELECT xpath('//loc:piece/@id', '<local:data xmlns:local="http://127.0.0.1"><local:piece id="1">number one</local:piece><local:piece id="2" /></local:data>', ARRAY[ARRAY['loc', 'http://127.0.0.1']]);
494  xpath 
495 -------
496  {1,2}
497 (1 row)
499 SELECT xpath('//b', '<a>one <b>two</b> three <b>etc</b></a>');
500           xpath          
501 -------------------------
502  {<b>two</b>,<b>etc</b>}
503 (1 row)