]> granicus.if.org Git - postgresql/commitdiff
Fix capitalization of example.
authorBruce Momjian <bruce@momjian.us>
Thu, 13 Oct 2005 14:44:58 +0000 (14:44 +0000)
committerBruce Momjian <bruce@momjian.us>
Thu, 13 Oct 2005 14:44:58 +0000 (14:44 +0000)
contrib/xml2/pgxml.sql.in
doc/src/sgml/ref/copy.sgml

index 7936b09777d60c53c7d40ecaf4f4094411df8c4f..d8f3a0b6f1c3a5a9c3b6635a65a8f3f2d63468fe 100644 (file)
@@ -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
 
index 5461924b3682815d00382c5145a5f937db84c240..5687fe34659421cc899bf4485763dc9187ee7eea 100644 (file)
@@ -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;