Commit 69039ea8 authored by Itagaki Takahiro's avatar Itagaki Takahiro

Make 'on' uppercase in a sql example.

parent 5c2a7c6e
...@@ -982,7 +982,7 @@ ALTER TABLE myschema.distributors SET SCHEMA yourschema; ...@@ -982,7 +982,7 @@ ALTER TABLE myschema.distributors SET SCHEMA yourschema;
To recreate a primary key constraint, without blocking updates while the To recreate a primary key constraint, without blocking updates while the
index is rebuilt: index is rebuilt:
<programlisting> <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, ALTER TABLE distributors DROP CONSTRAINT distributors_pkey,
ADD CONSTRAINT distributors_pkey PRIMARY KEY USING INDEX dist_id_temp_idx; ADD CONSTRAINT distributors_pkey PRIMARY KEY USING INDEX dist_id_temp_idx;
</programlisting> </programlisting>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment