diff options
author | Bruce Momjian <bruce@momjian.us> | 2005-10-13 14:44:58 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2005-10-13 14:44:58 +0000 |
commit | 7d43349ab5ebe1619609b2fa4a5f8bf4bd773ac8 (patch) | |
tree | ab9e719b7ad736dbe6fe7b143b512a1594e6191d | |
parent | c10dba2fe31e4545b57260a4d0a2b3e6b51dcc45 (diff) | |
download | postgresql-7d43349ab5ebe1619609b2fa4a5f8bf4bd773ac8.tar.gz postgresql-7d43349ab5ebe1619609b2fa4a5f8bf4bd773ac8.zip |
Fix capitalization of example.
-rw-r--r-- | contrib/xml2/pgxml.sql.in | 4 | ||||
-rw-r--r-- | doc/src/sgml/ref/copy.sgml | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/contrib/xml2/pgxml.sql.in b/contrib/xml2/pgxml.sql.in index 7936b09777d..d8f3a0b6f1c 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 5461924b368..5687fe34659 100644 --- a/doc/src/sgml/ref/copy.sgml +++ b/doc/src/sgml/ref/copy.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.68 2005/10/13 02:00:09 momjian Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/copy.sgml,v 1.69 2005/10/13 14:44:58 momjian Exp $ PostgreSQL documentation --> @@ -713,7 +713,7 @@ COPY country FROM '/usr1/proj/bray/sql/country_data'; using a temporary table which is automatically deleted: <programlisting> 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; |