diff options
author | Bruce Momjian | 2005-10-13 16:10:14 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-10-13 16:10:14 +0000 |
commit | 0fe76d29f83613bf1c9451679130fb8ba14912a5 (patch) | |
tree | 2d2d0e69ec0eea37df1cf08c2e65b316f07e2e1d | |
parent | c8a589cf0f0b2687229c3daa9b490ce925a0c06b (diff) |
Mark xslt_process() as volatile.
-rw-r--r-- | contrib/xml2/pgxml.sql.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/xml2/pgxml.sql.in b/contrib/xml2/pgxml.sql.in index 21d6f493a2..27bcf52757 100644 --- a/contrib/xml2/pgxml.sql.in +++ b/contrib/xml2/pgxml.sql.in @@ -52,7 +52,7 @@ CREATE OR REPLACE FUNCTION xpath_table(text,text,text,text,text) RETURNS setof r CREATE OR REPLACE FUNCTION xslt_process(text,text,text) RETURNS text - AS 'MODULE_PATHNAME' LANGUAGE 'c' STRICT STABLE; + AS 'MODULE_PATHNAME' LANGUAGE 'c' STRICT VOLATILE; -- the function checks for the correct argument count |