aboutsummaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2015-03-08 12:18:43 -0400
committerTom Lane <tgl@sss.pgh.pa.us>2015-03-08 12:18:43 -0400
commit90c35a9ed06c1353a0d3818c259e629ff09dba18 (patch)
tree450c85ce2c5d2ab67f485190749df54793fad6bd /src/include
parentac0914285ac90bd411730c3219f226bbbbc57f3a (diff)
downloadpostgresql-90c35a9ed06c1353a0d3818c259e629ff09dba18.tar.gz
postgresql-90c35a9ed06c1353a0d3818c259e629ff09dba18.zip
Code cleanup for REINDEX DATABASE/SCHEMA/SYSTEM.
Fix some minor infelicities. Some of these things were introduced in commit fe263d115a7dd16095b8b8f1e943aff2bb4574d2, and some are older.
Diffstat (limited to 'src/include')
-rw-r--r--src/include/commands/defrem.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h
index 9e3e93b6055..a9c67838a63 100644
--- a/src/include/commands/defrem.h
+++ b/src/include/commands/defrem.h
@@ -31,7 +31,7 @@ extern ObjectAddress DefineIndex(Oid relationId,
bool quiet);
extern Oid ReindexIndex(RangeVar *indexRelation);
extern Oid ReindexTable(RangeVar *relation);
-extern Oid ReindexObject(const char *databaseName, ReindexObjectType kind);
+extern void ReindexMultipleTables(const char *objectName, ReindexObjectType objectKind);
extern char *makeObjectName(const char *name1, const char *name2,
const char *label);
extern char *ChooseRelationName(const char *name1, const char *name2,