Skip to content

Commit 8a553f2

Browse files
committed
Fix CREATE INDEX CONCURRENTLY example
It fails to use the CONCURRENTLY keyword where it was necessary, so add it. This text was added to pg11 in commit 5efd604; backpatch to pg12. Author: Nikolay Samokhvalov <nik@postgres.ai> Discussion: https://postgr.es/m/CAM527d9iz6+=_c7EqSKaGzjqWvSeCeRVVvHZ1v3gDgjTtvgsbw@mail.gmail.com
1 parent a82ee7e commit 8a553f2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

doc/src/sgml/ddl.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4222,7 +4222,7 @@ ALTER TABLE measurement ATTACH PARTITION measurement_y2008m02
42224222
<programlisting>
42234223
CREATE INDEX measurement_usls_idx ON ONLY measurement (unitsales);
42244224

4225-
CREATE INDEX measurement_usls_200602_idx
4225+
CREATE INDEX CONCURRENTLY measurement_usls_200602_idx
42264226
ON measurement_y2006m02 (unitsales);
42274227
ALTER INDEX measurement_usls_idx
42284228
ATTACH PARTITION measurement_usls_200602_idx;

0 commit comments

Comments
 (0)