diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2010-06-16 02:12:51 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2010-06-16 02:12:51 +0000 |
commit | 0c88e559d1169b3038bbdb087c06362161e2e03c (patch) | |
tree | dfa4213fcf81d6ab77624919eec052024f4ad579 /doc/src | |
parent | 418e1d82fd113ac8d7ec20f7aeeefc0a4e563ebb (diff) | |
download | postgresql-0c88e559d1169b3038bbdb087c06362161e2e03c.tar.gz postgresql-0c88e559d1169b3038bbdb087c06362161e2e03c.zip |
Add notes that CREATE/DROP CONVERSION is similar to CREATE/DROP
TRANSLATION in the SQL standard.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_conversion.sgml | 5 | ||||
-rw-r--r-- | doc/src/sgml/ref/drop_conversion.sgml | 7 |
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/create_conversion.sgml b/doc/src/sgml/ref/create_conversion.sgml index 108c6fb6aea..5c51d370dc0 100644 --- a/doc/src/sgml/ref/create_conversion.sgml +++ b/doc/src/sgml/ref/create_conversion.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/create_conversion.sgml,v 1.23 2010/04/03 07:22:58 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/create_conversion.sgml,v 1.24 2010/06/16 02:12:51 petere Exp $ --> <refentry id="SQL-CREATECONVERSION"> <refmeta> @@ -153,7 +153,8 @@ CREATE CONVERSION myconv FOR 'UTF8' TO 'LATIN1' FROM myfunc; <command>CREATE CONVERSION</command> is a <productname>PostgreSQL</productname> extension. There is no <command>CREATE CONVERSION</command> - statement in the SQL standard. + statement in the SQL standard, but a <command>CREATE TRANSLATION</command> + statement that is very similar in purpose and syntax. </para> </refsect1> diff --git a/doc/src/sgml/ref/drop_conversion.sgml b/doc/src/sgml/ref/drop_conversion.sgml index b80de52f0ac..64ccf4e3a97 100644 --- a/doc/src/sgml/ref/drop_conversion.sgml +++ b/doc/src/sgml/ref/drop_conversion.sgml @@ -1,4 +1,4 @@ -<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/drop_conversion.sgml,v 1.13 2010/04/03 07:23:00 petere Exp $ --> +<!-- $PostgreSQL: pgsql/doc/src/sgml/ref/drop_conversion.sgml,v 1.14 2010/06/16 02:12:51 petere Exp $ --> <refentry id="SQL-DROPCONVERSION"> <refmeta> @@ -86,7 +86,10 @@ DROP CONVERSION myname; <para> There is no <command>DROP CONVERSION</command> statement in the SQL - standard. + standard, but a <command>DROP TRANSLATION</command> statement that + goes along with the <command>CREATE TRANSLATION</command> statement + that is similar to the <command>CREATE CONVERSION</command> + statement in PostgreSQL. </para> </refsect1> |