From fce529e102c40c9a73a5e574de75f677d9104d9b Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Tue, 24 Jun 2003 23:29:25 +0000 Subject: [PATCH] Most of the synopsis areas for DROP commands use "name" as the identifier, while some areas do not. The attached converts be below to "name": conversion_name index_name The below have an existing, initdb supplied, entity named "name". As such, it could be confusing for the reader to see that identifier used in the example. domainname typename Rod Taylor --- doc/src/sgml/ref/create_conversion.sgml | 6 +++--- doc/src/sgml/ref/drop_index.sgml | 10 +++++----- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/src/sgml/ref/create_conversion.sgml b/doc/src/sgml/ref/create_conversion.sgml index a881196849..b7d73626d6 100644 --- a/doc/src/sgml/ref/create_conversion.sgml +++ b/doc/src/sgml/ref/create_conversion.sgml @@ -1,4 +1,4 @@ - + @@ -13,7 +13,7 @@ -CREATE [DEFAULT] CONVERSION conversion_name +CREATE [DEFAULT] CONVERSION name FOR source_encoding TO dest_encoding FROM funcname @@ -55,7 +55,7 @@ CREATE [DEFAULT] CONVERSION conversion_name - conversion_name + name diff --git a/doc/src/sgml/ref/drop_index.sgml b/doc/src/sgml/ref/drop_index.sgml index b6086ffff3..4185a4158c 100644 --- a/doc/src/sgml/ref/drop_index.sgml +++ b/doc/src/sgml/ref/drop_index.sgml @@ -1,5 +1,5 @@ @@ -16,7 +16,7 @@ PostgreSQL documentation -DROP INDEX index_name [, ...] [ CASCADE | RESTRICT ] +DROP INDEX name [, ...] [ CASCADE | RESTRICT ] @@ -35,7 +35,7 @@ DROP INDEX index_name [, ...] [ CAS - index_name + name The name (optionally schema-qualified) of an index to remove. @@ -78,11 +78,11 @@ DROP INDEX index_name [, ...] [ CAS - ERROR: index "index_name" does not exist + ERROR: index "name" does not exist This message is returned if index_name is not an existing + class="PARAMETER">name is not an existing index.