~ubuntu-branches/ubuntu/trusty/postgresql-8.4/trusty

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Martin Pitt
  • Date: 2009-07-11 16:59:35 UTC
  • mfrom: (5.1.1 karmic)
  • Revision ID: james.westby@ubuntu.com-20090711165935-jfwin6gfrxf0gfsi
Tags: 8.4.0-2
* debian/libpq-dev.install: Ship catalog/genbki.h. (Closes: #536139)
* debian/rules: Drop --enable-cassert for final release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
188
188
SELECT xmlelement(name foo, xmlattributes('infinity'::timestamp as bar));
189
189
ERROR:  timestamp out of range
190
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)
 
196
 
191
197
SELECT xmlparse(content 'abc');
192
198
 xmlparse 
193
199
----------