mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
indexcmds.c: reorder function prototypes
... out of an overabundance of neatnikism, perhaps.
This commit is contained in:
parent
a034f8b60c
commit
7684b6fbed
1 changed files with 3 additions and 4 deletions
|
|
@ -68,6 +68,7 @@
|
||||||
|
|
||||||
|
|
||||||
/* non-export function prototypes */
|
/* non-export function prototypes */
|
||||||
|
static bool CompareOpclassOptions(Datum *opts1, Datum *opts2, int natts);
|
||||||
static void CheckPredicate(Expr *predicate);
|
static void CheckPredicate(Expr *predicate);
|
||||||
static void ComputeIndexAttrs(IndexInfo *indexInfo,
|
static void ComputeIndexAttrs(IndexInfo *indexInfo,
|
||||||
Oid *typeOidP,
|
Oid *typeOidP,
|
||||||
|
|
@ -87,13 +88,11 @@ static char *ChooseIndexNameAddition(List *colnames);
|
||||||
static List *ChooseIndexColumnNames(List *indexElems);
|
static List *ChooseIndexColumnNames(List *indexElems);
|
||||||
static void RangeVarCallbackForReindexIndex(const RangeVar *relation,
|
static void RangeVarCallbackForReindexIndex(const RangeVar *relation,
|
||||||
Oid relId, Oid oldRelId, void *arg);
|
Oid relId, Oid oldRelId, void *arg);
|
||||||
static bool ReindexRelationConcurrently(Oid relationOid, int options);
|
static void reindex_error_callback(void *args);
|
||||||
|
|
||||||
static void ReindexPartitions(Oid relid, int options, bool isTopLevel);
|
static void ReindexPartitions(Oid relid, int options, bool isTopLevel);
|
||||||
static void ReindexMultipleInternal(List *relids, int options);
|
static void ReindexMultipleInternal(List *relids, int options);
|
||||||
static void reindex_error_callback(void *args);
|
static bool ReindexRelationConcurrently(Oid relationOid, int options);
|
||||||
static void update_relispartition(Oid relationId, bool newval);
|
static void update_relispartition(Oid relationId, bool newval);
|
||||||
static bool CompareOpclassOptions(Datum *opts1, Datum *opts2, int natts);
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* callback argument type for RangeVarCallbackForReindexIndex()
|
* callback argument type for RangeVarCallbackForReindexIndex()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue