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 /doc/src | |
parent | c10dba2fe31e4545b57260a4d0a2b3e6b51dcc45 (diff) | |
download | postgresql-7d43349ab5ebe1619609b2fa4a5f8bf4bd773ac8.tar.gz postgresql-7d43349ab5ebe1619609b2fa4a5f8bf4bd773ac8.zip |
Fix capitalization of example.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/copy.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
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; |