diff options
| author | Tom Lane | 2001-07-16 05:07:00 +0000 |
|---|---|---|
| committer | Tom Lane | 2001-07-16 05:07:00 +0000 |
| commit | f31dc0ada731d89313dbca7ef5da91d674fc640c (patch) | |
| tree | a9c8343c489be6f99c5a9dff58838f72cf7d5dc4 /src/include/commands | |
| parent | 237e5dfa581503b2ab877c73eecde517d284563c (diff) | |
Partial indexes work again, courtesy of Martijn van Oosterhout.
Note: I didn't force an initdb, figuring that one today was enough.
However, there is a new function in pg_proc.h, and pg_dump won't be
able to dump partial indexes until you add that function.
Diffstat (limited to 'src/include/commands')
| -rw-r--r-- | src/include/commands/defrem.h | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/include/commands/defrem.h b/src/include/commands/defrem.h index 98ba76613a1..47230e9144b 100644 --- a/src/include/commands/defrem.h +++ b/src/include/commands/defrem.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: defrem.h,v 1.22 2001/01/24 19:43:23 momjian Exp $ + * $Id: defrem.h,v 1.23 2001/07/16 05:07:00 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -18,7 +18,7 @@ #include "tcop/dest.h" /* - * prototypes in defind.c + * prototypes in indexcmds.c */ extern void DefineIndex(char *heapRelationName, char *indexRelationName, @@ -29,9 +29,6 @@ extern void DefineIndex(char *heapRelationName, bool primary, Expr *predicate, List *rangetable); -extern void ExtendIndex(char *indexRelationName, - Expr *predicate, - List *rangetable); extern void RemoveIndex(char *name); extern void ReindexIndex(const char *indexRelationName, bool force); extern void ReindexTable(const char *relationName, bool force); |
