diff options
author | Bruce Momjian | 2005-10-13 14:44:58 +0000 |
---|---|---|
committer | Bruce Momjian | 2005-10-13 14:44:58 +0000 |
commit | 7d43349ab5ebe1619609b2fa4a5f8bf4bd773ac8 (patch) | |
tree | ab9e719b7ad736dbe6fe7b143b512a1594e6191d /contrib/xml2/pgxml.sql.in | |
parent | c10dba2fe31e4545b57260a4d0a2b3e6b51dcc45 (diff) |
Fix capitalization of example.
Diffstat (limited to 'contrib/xml2/pgxml.sql.in')
-rw-r--r-- | contrib/xml2/pgxml.sql.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/xml2/pgxml.sql.in b/contrib/xml2/pgxml.sql.in index 7936b09777..d8f3a0b6f1 100644 --- a/contrib/xml2/pgxml.sql.in +++ b/contrib/xml2/pgxml.sql.in @@ -44,7 +44,7 @@ CREATE OR REPLACE FUNCTION xpath_nodeset(text,text,text) RETURNS text AS CREATE OR REPLACE FUNCTION xpath_table(text,text,text,text,text) RETURNS setof record AS 'MODULE_PATHNAME' - LANGUAGE 'c' STRICT IMMUTABLE; + LANGUAGE 'c' STRICT STABLE; -- XSLT functions -- Delete from here to the end of the file if you are not compiling with @@ -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 IMMUTABLE; + AS 'MODULE_PATHNAME' LANGUAGE 'c' STRICT STABLE; -- the function checks for the correct argument count |