diff options
author | Itagaki Takahiro <itagaki.takahiro@gmail.com> | 2011-01-26 22:35:01 +0900 |
---|---|---|
committer | Itagaki Takahiro <itagaki.takahiro@gmail.com> | 2011-01-26 22:35:01 +0900 |
commit | 69039ea8b5569caf09b211f46fa9064468fee3b3 (patch) | |
tree | c9bd15782fcc7bcca28c54d96d69a87f02fe28bb /doc/src | |
parent | 5c2a7c6e97741564ab4ff336eac8d8227485dd4c (diff) | |
download | postgresql-69039ea8b5569caf09b211f46fa9064468fee3b3.tar.gz postgresql-69039ea8b5569caf09b211f46fa9064468fee3b3.zip |
Make 'on' uppercase in a sql example.
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 610a0bc99f9..1d52be6a73d 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -982,7 +982,7 @@ ALTER TABLE myschema.distributors SET SCHEMA yourschema; To recreate a primary key constraint, without blocking updates while the index is rebuilt: <programlisting> -CREATE UNIQUE INDEX CONCURRENTLY dist_id_temp_idx on distributors (dist_id); +CREATE UNIQUE INDEX CONCURRENTLY dist_id_temp_idx ON distributors (dist_id); ALTER TABLE distributors DROP CONSTRAINT distributors_pkey, ADD CONSTRAINT distributors_pkey PRIMARY KEY USING INDEX dist_id_temp_idx; </programlisting> |