From: Bruce Momjian Date: Thu, 13 Oct 2005 14:44:58 +0000 (+0000) Subject: Fix capitalization of example. X-Git-Tag: REL8_1_0BETA4~77 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=7d43349ab5ebe1619609b2fa4a5f8bf4bd773ac8;p=postgresql Fix capitalization of example. --- 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 diff --git a/doc/src/sgml/ref/copy.sgml b/doc/src/sgml/ref/copy.sgml index 5461924b36..5687fe3465 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -1,5 +1,5 @@ @@ -713,7 +713,7 @@ COPY country FROM '/usr1/proj/bray/sql/country_data'; using a temporary table which is automatically deleted: BEGIN; -CREATE TEMP TABLE a_list_COUNTRIES AS +CREATE TEMP TABLE a_list_countries AS SELECT * FROM country WHERE country_name LIKE 'A%'; COPY a_list_countries TO '/usr1/proj/bray/sql/a_list_countries.copy'; ROLLBACK;