blob: a9de62f7b556eb7179a7a836c45689990198d032 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
-- 64 bit output in *.out, 32 bit output in *_3.out
-- server without --with-libxml support output in *_1.out
select oid as datoid from pg_database where datname = current_database() \gset
----------------------------------------------------------------------------------------------
create table xml (x xml);
insert into xml values ('<xml></xml>'), (null);
\set relname xml
\ir run_test.sql
|