8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5c2a7c6 commit 69039eaCopy full SHA for 69039ea
doc/src/sgml/ref/alter_table.sgml
@@ -982,7 +982,7 @@ ALTER TABLE myschema.distributors SET SCHEMA yourschema;
982
To recreate a primary key constraint, without blocking updates while the
983
index is rebuilt:
984
<programlisting>
985
-CREATE UNIQUE INDEX CONCURRENTLY dist_id_temp_idx on distributors (dist_id);
+CREATE UNIQUE INDEX CONCURRENTLY dist_id_temp_idx ON distributors (dist_id);
986
ALTER TABLE distributors DROP CONSTRAINT distributors_pkey,
987
ADD CONSTRAINT distributors_pkey PRIMARY KEY USING INDEX dist_id_temp_idx;
988
</programlisting>
0 commit comments