PostgreSQL Source Code git master
Loading...
Searching...
No Matches
index.h
Go to the documentation of this file.
1/*-------------------------------------------------------------------------
2 *
3 * index.h
4 * prototypes for catalog/index.c.
5 *
6 *
7 * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
8 * Portions Copyright (c) 1994, Regents of the University of California
9 *
10 * src/include/catalog/index.h
11 *
12 *-------------------------------------------------------------------------
13 */
14#ifndef INDEX_H
15#define INDEX_H
16
18#include "nodes/execnodes.h"
19
20
21#define DEFAULT_INDEX_TYPE "btree"
22
23/* Action code for index_set_state_flags */
31
32/* options for REINDEX */
33typedef struct ReindexParams
34{
35 bits32 options; /* bitmask of REINDEXOPT_* */
36 Oid tablespaceOid; /* New tablespace to move indexes to.
37 * InvalidOid to do nothing. */
39
40/* flag bits for ReindexParams->flags */
41#define REINDEXOPT_VERBOSE 0x01 /* print progress info */
42#define REINDEXOPT_REPORT_PROGRESS 0x02 /* report pgstat progress */
43#define REINDEXOPT_MISSING_OK 0x04 /* skip missing relations */
44#define REINDEXOPT_CONCURRENTLY 0x08 /* concurrent mode */
45
46/* state info for validate_index bulkdelete callback */
47typedef struct ValidateIndexState
48{
49 Tuplesortstate *tuplesort; /* for sorting the index TIDs */
50 /* statistics (for debug purposes only): */
51 double htups,
55
56extern void index_check_primary_key(Relation heapRel,
57 const IndexInfo *indexInfo,
58 bool is_alter_table,
59 const IndexStmt *stmt);
60
61#define INDEX_CREATE_IS_PRIMARY (1 << 0)
62#define INDEX_CREATE_ADD_CONSTRAINT (1 << 1)
63#define INDEX_CREATE_SKIP_BUILD (1 << 2)
64#define INDEX_CREATE_CONCURRENT (1 << 3)
65#define INDEX_CREATE_IF_NOT_EXISTS (1 << 4)
66#define INDEX_CREATE_PARTITIONED (1 << 5)
67#define INDEX_CREATE_INVALID (1 << 6)
68
69extern Oid index_create(Relation heapRelation,
70 const char *indexRelationName,
75 IndexInfo *indexInfo,
76 const List *indexColNames,
79 const Oid *collationIds,
80 const Oid *opclassIds,
81 const Datum *opclassOptions,
82 const int16 *coloptions,
84 Datum reloptions,
85 bits16 flags,
88 bool is_internal,
90
91#define INDEX_CONSTR_CREATE_MARK_AS_PRIMARY (1 << 0)
92#define INDEX_CONSTR_CREATE_DEFERRABLE (1 << 1)
93#define INDEX_CONSTR_CREATE_INIT_DEFERRED (1 << 2)
94#define INDEX_CONSTR_CREATE_UPDATE_INDEX (1 << 3)
95#define INDEX_CONSTR_CREATE_REMOVE_OLD_DEPS (1 << 4)
96#define INDEX_CONSTR_CREATE_WITHOUT_OVERLAPS (1 << 5)
97
100 Oid tablespaceOid,
101 const char *newName);
102
105
108 const char *oldName);
109
111 Oid indexId);
112
116 const IndexInfo *indexInfo,
117 const char *constraintName,
118 char constraintType,
121 bool is_internal);
122
123extern void index_drop(Oid indexId, bool concurrent, bool concurrent_lock_mode);
124
126
128
129extern bool CompareIndexInfo(const IndexInfo *info1, const IndexInfo *info2,
130 const Oid *collations1, const Oid *collations2,
131 const Oid *opfamilies1, const Oid *opfamilies2,
132 const AttrMap *attmap);
133
135
136extern void FormIndexDatum(IndexInfo *indexInfo,
137 TupleTableSlot *slot,
138 EState *estate,
139 Datum *values,
140 bool *isnull);
141
142extern void index_build(Relation heapRelation,
143 Relation indexRelation,
144 IndexInfo *indexInfo,
145 bool isreindex,
146 bool parallel);
147
148extern void validate_index(Oid heapId, Oid indexId, Snapshot snapshot);
149
151
152extern Oid IndexGetRelation(Oid indexId, bool missing_ok);
153
154extern void reindex_index(const ReindexStmt *stmt, Oid indexId,
155 bool skip_constraint_checks, char persistence,
156 const ReindexParams *params);
157
158/* Flag bits for reindex_relation(): */
159#define REINDEX_REL_PROCESS_TOAST 0x01
160#define REINDEX_REL_SUPPRESS_INDEX_USE 0x02
161#define REINDEX_REL_CHECK_CONSTRAINTS 0x04
162#define REINDEX_REL_FORCE_INDEXES_UNLOGGED 0x08
163#define REINDEX_REL_FORCE_INDEXES_PERMANENT 0x10
164
165extern bool reindex_relation(const ReindexStmt *stmt, Oid relid, int flags,
166 const ReindexParams *params);
167
168extern bool ReindexIsProcessingHeap(Oid heapOid);
169extern bool ReindexIsProcessingIndex(Oid indexOid);
170
171extern void ResetReindexState(int nestLevel);
174extern void RestoreReindexState(const void *reindexstate);
175
176extern void IndexSetParentIndex(Relation partitionIdx, Oid parentOid);
177
178
179/*
180 * itemptr_encode - Encode ItemPointer as int64/int8
181 *
182 * This representation must produce values encoded as int64 that sort in the
183 * same order as their corresponding original TID values would (using the
184 * default int8 opclass to produce a result equivalent to the default TID
185 * opclass).
186 *
187 * As noted in validate_index(), this can be significantly faster.
188 */
189static inline int64
191{
192 BlockNumber block = ItemPointerGetBlockNumber(itemptr);
195
196 /*
197 * Use the 16 least significant bits for the offset. 32 adjacent bits are
198 * used for the block number. Since remaining bits are unused, there
199 * cannot be negative encoded values (We assume a two's complement
200 * representation).
201 */
202 encoded = ((uint64) block << 16) | (uint16) offset;
203
204 return encoded;
205}
206
207/*
208 * itemptr_decode - Decode int64/int8 representation back to ItemPointer
209 */
210static inline void
212{
213 BlockNumber block = (BlockNumber) (encoded >> 16);
214 OffsetNumber offset = (OffsetNumber) (encoded & 0xFFFF);
215
216 ItemPointerSet(itemptr, block, offset);
217}
218
219#endif /* INDEX_H */
uint32 BlockNumber
Definition block.h:31
static Datum values[MAXATTR]
Definition bootstrap.c:155
uint16 bits16
Definition c.h:554
int64_t int64
Definition c.h:543
int16_t int16
Definition c.h:541
uint32 bits32
Definition c.h:555
uint64_t uint64
Definition c.h:547
uint16_t uint16
Definition c.h:545
size_t Size
Definition c.h:619
#define stmt
bool ReindexIsProcessingIndex(Oid indexOid)
Definition index.c:4138
void validate_index(Oid heapId, Oid indexId, Snapshot snapshot)
Definition index.c:3348
void index_drop(Oid indexId, bool concurrent, bool concurrent_lock_mode)
Definition index.c:2120
void ResetReindexState(int nestLevel)
Definition index.c:4211
Oid IndexGetRelation(Oid indexId, bool missing_ok)
Definition index.c:3581
void index_concurrently_set_dead(Oid heapId, Oid indexId)
Definition index.c:1821
Oid index_create(Relation heapRelation, const char *indexRelationName, Oid indexRelationId, Oid parentIndexRelid, Oid parentConstraintId, RelFileNumber relFileNumber, IndexInfo *indexInfo, const List *indexColNames, Oid accessMethodId, Oid tableSpaceId, const Oid *collationIds, const Oid *opclassIds, const Datum *opclassOptions, const int16 *coloptions, const NullableDatum *stattargets, Datum reloptions, bits16 flags, bits16 constr_flags, bool allow_system_table_mods, bool is_internal, Oid *constraintId)
Definition index.c:724
void index_concurrently_swap(Oid newIndexId, Oid oldIndexId, const char *oldName)
Definition index.c:1550
static void itemptr_decode(ItemPointer itemptr, int64 encoded)
Definition index.h:211
void index_set_state_flags(Oid indexId, IndexStateFlagsAction action)
Definition index.c:3501
bool CompareIndexInfo(const IndexInfo *info1, const IndexInfo *info2, const Oid *collations1, const Oid *collations2, const Oid *opfamilies1, const Oid *opfamilies2, const AttrMap *attmap)
Definition index.c:2535
IndexInfo * BuildDummyIndexInfo(Relation index)
Definition index.c:2486
bool reindex_relation(const ReindexStmt *stmt, Oid relid, int flags, const ReindexParams *params)
Definition index.c:3946
void IndexSetParentIndex(Relation partitionIdx, Oid parentOid)
Definition indexcmds.c:4470
void SerializeReindexState(Size maxsize, char *start_address)
Definition index.c:4251
IndexInfo * BuildIndexInfo(Relation index)
Definition index.c:2426
static int64 itemptr_encode(const ItemPointerData *itemptr)
Definition index.h:190
Oid index_concurrently_create_copy(Relation heapRelation, Oid oldIndexId, Oid tablespaceOid, const char *newName)
Definition index.c:1298
void BuildSpeculativeIndexInfo(Relation index, IndexInfo *ii)
Definition index.c:2667
void index_check_primary_key(Relation heapRel, const IndexInfo *indexInfo, bool is_alter_table, const IndexStmt *stmt)
Definition index.c:202
bool ReindexIsProcessingHeap(Oid heapOid)
Definition index.c:4117
IndexStateFlagsAction
Definition index.h:25
@ INDEX_CREATE_SET_VALID
Definition index.h:27
@ INDEX_DROP_CLEAR_VALID
Definition index.h:28
@ INDEX_DROP_SET_DEAD
Definition index.h:29
@ INDEX_CREATE_SET_READY
Definition index.h:26
void RestoreReindexState(const void *reindexstate)
Definition index.c:4269
void index_build(Relation heapRelation, Relation indexRelation, IndexInfo *indexInfo, bool isreindex, bool parallel)
Definition index.c:3000
ObjectAddress index_constraint_create(Relation heapRelation, Oid indexRelationId, Oid parentConstraintId, const IndexInfo *indexInfo, const char *constraintName, char constraintType, bits16 constr_flags, bool allow_system_table_mods, bool is_internal)
Definition index.c:1883
void FormIndexDatum(IndexInfo *indexInfo, TupleTableSlot *slot, EState *estate, Datum *values, bool *isnull)
Definition index.c:2728
void index_concurrently_build(Oid heapRelationId, Oid indexRelationId)
Definition index.c:1483
Size EstimateReindexStateSpace(void)
Definition index.c:4240
void reindex_index(const ReindexStmt *stmt, Oid indexId, bool skip_constraint_checks, char persistence, const ReindexParams *params)
Definition index.c:3606
static void ItemPointerSet(ItemPointerData *pointer, BlockNumber blockNumber, OffsetNumber offNum)
Definition itemptr.h:135
static OffsetNumber ItemPointerGetOffsetNumber(const ItemPointerData *pointer)
Definition itemptr.h:124
static BlockNumber ItemPointerGetBlockNumber(const ItemPointerData *pointer)
Definition itemptr.h:103
uint16 OffsetNumber
Definition off.h:24
uint64_t Datum
Definition postgres.h:70
unsigned int Oid
static int fb(int x)
Oid RelFileNumber
Definition relpath.h:25
Definition pg_list.h:54
Oid tablespaceOid
Definition index.h:36
bits32 options
Definition index.h:35
Tuplesortstate * tuplesort
Definition index.h:49
double tups_inserted
Definition index.h:53
Definition type.h:96