]> granicus.if.org Git - postgresql/commit
Support VERBOSE option in REINDEX command.
authorFujii Masao <fujii@postgresql.org>
Fri, 15 May 2015 11:09:57 +0000 (20:09 +0900)
committerFujii Masao <fujii@postgresql.org>
Fri, 15 May 2015 11:09:57 +0000 (20:09 +0900)
commitecd222e770d352121590363ffdf981147a43e976
tree9fa6f9d3ad7002f5d8ced9948d49b72206bad713
parent4b8f797f672bef07b4e87b4650b4035731b61d84
Support VERBOSE option in REINDEX command.

When this option is specified, a progress report is printed as each index
is reindexed.

Per discussion, we agreed on the following syntax for the extensibility of
the options.

    REINDEX (flexible options) { INDEX | ... } name

Sawada Masahiko.
Reviewed by Robert Haas, Fabrízio Mello, Alvaro Herrera, Kyotaro Horiguchi,
Jim Nasby and me.

Discussion: CAD21AoA0pK3YcOZAFzMae+2fcc3oGp5zoRggDyMNg5zoaWDhdQ@mail.gmail.com
14 files changed:
doc/src/sgml/ref/reindex.sgml
src/backend/catalog/index.c
src/backend/commands/cluster.c
src/backend/commands/indexcmds.c
src/backend/commands/tablecmds.c
src/backend/nodes/copyfuncs.c
src/backend/nodes/equalfuncs.c
src/backend/parser/gram.y
src/backend/tcop/utility.c
src/include/catalog/index.h
src/include/commands/defrem.h
src/include/nodes/parsenodes.h
src/test/regress/expected/create_index.out
src/test/regress/sql/create_index.sql