PostgreSQL Source Code  git master
partcache.c File Reference
#include "postgres.h"
#include "access/hash.h"
#include "access/htup_details.h"
#include "access/nbtree.h"
#include "access/relation.h"
#include "catalog/partition.h"
#include "catalog/pg_inherits.h"
#include "catalog/pg_opclass.h"
#include "catalog/pg_partitioned_table.h"
#include "miscadmin.h"
#include "nodes/makefuncs.h"
#include "nodes/nodeFuncs.h"
#include "optimizer/optimizer.h"
#include "partitioning/partbounds.h"
#include "rewrite/rewriteHandler.h"
#include "utils/builtins.h"
#include "utils/datum.h"
#include "utils/lsyscache.h"
#include "utils/memutils.h"
#include "utils/partcache.h"
#include "utils/rel.h"
#include "utils/syscache.h"
Include dependency graph for partcache.c:

Go to the source code of this file.

Functions

static void RelationBuildPartitionKey (Relation relation)
 
static Listgenerate_partition_qual (Relation rel)
 
PartitionKey RelationGetPartitionKey (Relation rel)
 
ListRelationGetPartitionQual (Relation rel)
 
Exprget_partition_qual_relid (Oid relid)
 

Function Documentation

◆ generate_partition_qual()

static List * generate_partition_qual ( Relation  rel)
static

Definition at line 340 of file partcache.c.

341 {
342  HeapTuple tuple;
343  MemoryContext oldcxt;
344  Datum boundDatum;
345  bool isnull;
346  List *my_qual = NIL,
347  *result = NIL;
348  Oid parentrelid;
349  Relation parent;
350 
351  /* Guard against stack overflow due to overly deep partition tree */
353 
354  /* If we already cached the result, just return a copy */
355  if (rel->rd_partcheckvalid)
356  return copyObject(rel->rd_partcheck);
357 
358  /*
359  * Grab at least an AccessShareLock on the parent table. Must do this
360  * even if the partition has been partially detached, because transactions
361  * concurrent with the detach might still be trying to use a partition
362  * descriptor that includes it.
363  */
364  parentrelid = get_partition_parent(RelationGetRelid(rel), true);
365  parent = relation_open(parentrelid, AccessShareLock);
366 
367  /* Get pg_class.relpartbound */
368  tuple = SearchSysCache1(RELOID,
370  if (!HeapTupleIsValid(tuple))
371  elog(ERROR, "cache lookup failed for relation %u",
372  RelationGetRelid(rel));
373 
374  boundDatum = SysCacheGetAttr(RELOID, tuple,
375  Anum_pg_class_relpartbound,
376  &isnull);
377  if (!isnull)
378  {
379  PartitionBoundSpec *bound;
380 
382  stringToNode(TextDatumGetCString(boundDatum)));
383 
384  my_qual = get_qual_from_partbound(parent, bound);
385  }
386 
387  ReleaseSysCache(tuple);
388 
389  /* Add the parent's quals to the list (if any) */
390  if (parent->rd_rel->relispartition)
391  result = list_concat(generate_partition_qual(parent), my_qual);
392  else
393  result = my_qual;
394 
395  /*
396  * Change Vars to have partition's attnos instead of the parent's. We do
397  * this after we concatenate the parent's quals, because we want every Var
398  * in it to bear this relation's attnos. It's safe to assume varno = 1
399  * here.
400  */
401  result = map_partition_varattnos(result, 1, rel, parent);
402 
403  /* Assert that we're not leaking any old data during assignments below */
404  Assert(rel->rd_partcheckcxt == NULL);
405  Assert(rel->rd_partcheck == NIL);
406 
407  /*
408  * Save a copy in the relcache. The order of these operations is fairly
409  * critical to avoid memory leaks and ensure that we don't leave a corrupt
410  * relcache entry if we fail partway through copyObject.
411  *
412  * If, as is definitely possible, the partcheck list is NIL, then we do
413  * not need to make a context to hold it.
414  */
415  if (result != NIL)
416  {
418  "partition constraint",
422  oldcxt = MemoryContextSwitchTo(rel->rd_partcheckcxt);
423  rel->rd_partcheck = copyObject(result);
424  MemoryContextSwitchTo(oldcxt);
425  }
426  else
427  rel->rd_partcheck = NIL;
428  rel->rd_partcheckvalid = true;
429 
430  /* Keep the parent locked until commit */
431  relation_close(parent, NoLock);
432 
433  /* Return the working copy to the caller */
434  return result;
435 }
#define TextDatumGetCString(d)
Definition: builtins.h:95
#define ERROR
Definition: elog.h:39
#define HeapTupleIsValid(tuple)
Definition: htup.h:78
Assert(fmt[strlen(fmt) - 1] !='\n')
List * list_concat(List *list1, const List *list2)
Definition: list.c:560
#define NoLock
Definition: lockdefs.h:34
#define AccessShareLock
Definition: lockdefs.h:36
MemoryContext CacheMemoryContext
Definition: mcxt.c:144
#define AllocSetContextCreate
Definition: memutils.h:129
#define ALLOCSET_SMALL_SIZES
Definition: memutils.h:163
#define MemoryContextCopyAndSetIdentifier(cxt, id)
Definition: memutils.h:101
#define copyObject(obj)
Definition: nodes.h:244
#define castNode(_type_, nodeptr)
Definition: nodes.h:197
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:138
List * get_qual_from_partbound(Relation parent, PartitionBoundSpec *spec)
Definition: partbounds.c:250
static List * generate_partition_qual(Relation rel)
Definition: partcache.c:340
List * map_partition_varattnos(List *expr, int fromrel_varno, Relation to_rel, Relation from_rel)
Definition: partition.c:221
Oid get_partition_parent(Oid relid, bool even_if_detached)
Definition: partition.c:54
#define NIL
Definition: pg_list.h:68
void check_stack_depth(void)
Definition: postgres.c:3523
uintptr_t Datum
Definition: postgres.h:64
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:252
unsigned int Oid
Definition: postgres_ext.h:31
void * stringToNode(const char *str)
Definition: read.c:90
#define RelationGetRelid(relation)
Definition: rel.h:504
#define RelationGetRelationName(relation)
Definition: rel.h:538
void relation_close(Relation relation, LOCKMODE lockmode)
Definition: relation.c:206
Relation relation_open(Oid relationId, LOCKMODE lockmode)
Definition: relation.c:48
Definition: pg_list.h:54
List * rd_partcheck
Definition: rel.h:147
bool rd_partcheckvalid
Definition: rel.h:148
MemoryContext rd_partcheckcxt
Definition: rel.h:149
Form_pg_class rd_rel
Definition: rel.h:111
void ReleaseSysCache(HeapTuple tuple)
Definition: syscache.c:868
HeapTuple SearchSysCache1(int cacheId, Datum key1)
Definition: syscache.c:820
Datum SysCacheGetAttr(int cacheId, HeapTuple tup, AttrNumber attributeNumber, bool *isNull)
Definition: syscache.c:1081
@ RELOID
Definition: syscache.h:89

References AccessShareLock, ALLOCSET_SMALL_SIZES, AllocSetContextCreate, Assert(), CacheMemoryContext, castNode, check_stack_depth(), copyObject, elog(), ERROR, get_partition_parent(), get_qual_from_partbound(), HeapTupleIsValid, list_concat(), map_partition_varattnos(), MemoryContextCopyAndSetIdentifier, MemoryContextSwitchTo(), NIL, NoLock, ObjectIdGetDatum(), RelationData::rd_partcheck, RelationData::rd_partcheckcxt, RelationData::rd_partcheckvalid, RelationData::rd_rel, relation_close(), relation_open(), RelationGetRelationName, RelationGetRelid, ReleaseSysCache(), RELOID, SearchSysCache1(), stringToNode(), SysCacheGetAttr(), and TextDatumGetCString.

Referenced by get_partition_qual_relid(), and RelationGetPartitionQual().

◆ get_partition_qual_relid()

Expr* get_partition_qual_relid ( Oid  relid)

Definition at line 302 of file partcache.c.

303 {
304  Expr *result = NULL;
305 
306  /* Do the work only if this relation exists and is a partition. */
307  if (get_rel_relispartition(relid))
308  {
309  Relation rel = relation_open(relid, AccessShareLock);
310  List *and_args;
311 
312  and_args = generate_partition_qual(rel);
313 
314  /* Convert implicit-AND list format to boolean expression */
315  if (and_args == NIL)
316  result = NULL;
317  else if (list_length(and_args) > 1)
318  result = makeBoolExpr(AND_EXPR, and_args, -1);
319  else
320  result = linitial(and_args);
321 
322  /* Keep the lock, to allow safe deparsing against the rel by caller. */
323  relation_close(rel, NoLock);
324  }
325 
326  return result;
327 }
bool get_rel_relispartition(Oid relid)
Definition: lsyscache.c:2031
Expr * makeBoolExpr(BoolExprType boolop, List *args, int location)
Definition: makefuncs.c:372
static int list_length(const List *l)
Definition: pg_list.h:152
#define linitial(l)
Definition: pg_list.h:178
@ AND_EXPR
Definition: primnodes.h:858

References AccessShareLock, AND_EXPR, generate_partition_qual(), get_rel_relispartition(), linitial, list_length(), makeBoolExpr(), NIL, NoLock, relation_close(), and relation_open().

Referenced by pg_get_partconstrdef_string(), and pg_get_partition_constraintdef().

◆ RelationBuildPartitionKey()

static void RelationBuildPartitionKey ( Relation  relation)
static

Definition at line 81 of file partcache.c.

82 {
84  HeapTuple tuple;
85  bool isnull;
86  int i;
88  AttrNumber *attrs;
89  oidvector *opclass;
90  oidvector *collation;
91  ListCell *partexprs_item;
92  Datum datum;
93  MemoryContext partkeycxt,
94  oldcxt;
95  int16 procnum;
96 
97  tuple = SearchSysCache1(PARTRELID,
99 
100  if (!HeapTupleIsValid(tuple))
101  elog(ERROR, "cache lookup failed for partition key of relation %u",
102  RelationGetRelid(relation));
103 
105  "partition key",
108  RelationGetRelationName(relation));
109 
110  key = (PartitionKey) MemoryContextAllocZero(partkeycxt,
111  sizeof(PartitionKeyData));
112 
113  /* Fixed-length attributes */
114  form = (Form_pg_partitioned_table) GETSTRUCT(tuple);
115  key->strategy = form->partstrat;
116  key->partnatts = form->partnatts;
117 
118  /* Validate partition strategy code */
119  if (key->strategy != PARTITION_STRATEGY_LIST &&
120  key->strategy != PARTITION_STRATEGY_RANGE &&
121  key->strategy != PARTITION_STRATEGY_HASH)
122  elog(ERROR, "invalid partition strategy \"%c\"", key->strategy);
123 
124  /*
125  * We can rely on the first variable-length attribute being mapped to the
126  * relevant field of the catalog's C struct, because all previous
127  * attributes are non-nullable and fixed-length.
128  */
129  attrs = form->partattrs.values;
130 
131  /* But use the hard way to retrieve further variable-length attributes */
132  /* Operator class */
133  datum = SysCacheGetAttrNotNull(PARTRELID, tuple,
134  Anum_pg_partitioned_table_partclass);
135  opclass = (oidvector *) DatumGetPointer(datum);
136 
137  /* Collation */
138  datum = SysCacheGetAttrNotNull(PARTRELID, tuple,
139  Anum_pg_partitioned_table_partcollation);
140  collation = (oidvector *) DatumGetPointer(datum);
141 
142  /* Expressions */
143  datum = SysCacheGetAttr(PARTRELID, tuple,
144  Anum_pg_partitioned_table_partexprs, &isnull);
145  if (!isnull)
146  {
147  char *exprString;
148  Node *expr;
149 
150  exprString = TextDatumGetCString(datum);
151  expr = stringToNode(exprString);
152  pfree(exprString);
153 
154  /*
155  * Run the expressions through const-simplification since the planner
156  * will be comparing them to similarly-processed qual clause operands,
157  * and may fail to detect valid matches without this step; fix
158  * opfuncids while at it. We don't need to bother with
159  * canonicalize_qual() though, because partition expressions should be
160  * in canonical form already (ie, no need for OR-merging or constant
161  * elimination).
162  */
163  expr = eval_const_expressions(NULL, expr);
164  fix_opfuncids(expr);
165 
166  oldcxt = MemoryContextSwitchTo(partkeycxt);
167  key->partexprs = (List *) copyObject(expr);
168  MemoryContextSwitchTo(oldcxt);
169  }
170 
171  /* Allocate assorted arrays in the partkeycxt, which we'll fill below */
172  oldcxt = MemoryContextSwitchTo(partkeycxt);
173  key->partattrs = (AttrNumber *) palloc0(key->partnatts * sizeof(AttrNumber));
174  key->partopfamily = (Oid *) palloc0(key->partnatts * sizeof(Oid));
175  key->partopcintype = (Oid *) palloc0(key->partnatts * sizeof(Oid));
176  key->partsupfunc = (FmgrInfo *) palloc0(key->partnatts * sizeof(FmgrInfo));
177 
178  key->partcollation = (Oid *) palloc0(key->partnatts * sizeof(Oid));
179  key->parttypid = (Oid *) palloc0(key->partnatts * sizeof(Oid));
180  key->parttypmod = (int32 *) palloc0(key->partnatts * sizeof(int32));
181  key->parttyplen = (int16 *) palloc0(key->partnatts * sizeof(int16));
182  key->parttypbyval = (bool *) palloc0(key->partnatts * sizeof(bool));
183  key->parttypalign = (char *) palloc0(key->partnatts * sizeof(char));
184  key->parttypcoll = (Oid *) palloc0(key->partnatts * sizeof(Oid));
185  MemoryContextSwitchTo(oldcxt);
186 
187  /* determine support function number to search for */
188  procnum = (key->strategy == PARTITION_STRATEGY_HASH) ?
190 
191  /* Copy partattrs and fill other per-attribute info */
192  memcpy(key->partattrs, attrs, key->partnatts * sizeof(int16));
193  partexprs_item = list_head(key->partexprs);
194  for (i = 0; i < key->partnatts; i++)
195  {
196  AttrNumber attno = key->partattrs[i];
197  HeapTuple opclasstup;
198  Form_pg_opclass opclassform;
199  Oid funcid;
200 
201  /* Collect opfamily information */
202  opclasstup = SearchSysCache1(CLAOID,
203  ObjectIdGetDatum(opclass->values[i]));
204  if (!HeapTupleIsValid(opclasstup))
205  elog(ERROR, "cache lookup failed for opclass %u", opclass->values[i]);
206 
207  opclassform = (Form_pg_opclass) GETSTRUCT(opclasstup);
208  key->partopfamily[i] = opclassform->opcfamily;
209  key->partopcintype[i] = opclassform->opcintype;
210 
211  /* Get a support function for the specified opfamily and datatypes */
212  funcid = get_opfamily_proc(opclassform->opcfamily,
213  opclassform->opcintype,
214  opclassform->opcintype,
215  procnum);
216  if (!OidIsValid(funcid))
217  ereport(ERROR,
218  (errcode(ERRCODE_INVALID_OBJECT_DEFINITION),
219  errmsg("operator class \"%s\" of access method %s is missing support function %d for type %s",
220  NameStr(opclassform->opcname),
221  (key->strategy == PARTITION_STRATEGY_HASH) ?
222  "hash" : "btree",
223  procnum,
224  format_type_be(opclassform->opcintype))));
225 
226  fmgr_info_cxt(funcid, &key->partsupfunc[i], partkeycxt);
227 
228  /* Collation */
229  key->partcollation[i] = collation->values[i];
230 
231  /* Collect type information */
232  if (attno != 0)
233  {
234  Form_pg_attribute att = TupleDescAttr(relation->rd_att, attno - 1);
235 
236  key->parttypid[i] = att->atttypid;
237  key->parttypmod[i] = att->atttypmod;
238  key->parttypcoll[i] = att->attcollation;
239  }
240  else
241  {
242  if (partexprs_item == NULL)
243  elog(ERROR, "wrong number of partition key expressions");
244 
245  key->parttypid[i] = exprType(lfirst(partexprs_item));
246  key->parttypmod[i] = exprTypmod(lfirst(partexprs_item));
247  key->parttypcoll[i] = exprCollation(lfirst(partexprs_item));
248 
249  partexprs_item = lnext(key->partexprs, partexprs_item);
250  }
251  get_typlenbyvalalign(key->parttypid[i],
252  &key->parttyplen[i],
253  &key->parttypbyval[i],
254  &key->parttypalign[i]);
255 
256  ReleaseSysCache(opclasstup);
257  }
258 
259  ReleaseSysCache(tuple);
260 
261  /* Assert that we're not leaking any old data during assignments below */
262  Assert(relation->rd_partkeycxt == NULL);
263  Assert(relation->rd_partkey == NULL);
264 
265  /*
266  * Success --- reparent our context and make the relcache point to the
267  * newly constructed key
268  */
270  relation->rd_partkeycxt = partkeycxt;
271  relation->rd_partkey = key;
272 }
int16 AttrNumber
Definition: attnum.h:21
#define NameStr(name)
Definition: c.h:735
signed short int16
Definition: c.h:482
signed int int32
Definition: c.h:483
#define OidIsValid(objectId)
Definition: c.h:764
Node * eval_const_expressions(PlannerInfo *root, Node *node)
Definition: clauses.c:2171
int errcode(int sqlerrcode)
Definition: elog.c:858
int errmsg(const char *fmt,...)
Definition: elog.c:1069
#define ereport(elevel,...)
Definition: elog.h:149
void fmgr_info_cxt(Oid functionId, FmgrInfo *finfo, MemoryContext mcxt)
Definition: fmgr.c:137
char * format_type_be(Oid type_oid)
Definition: format_type.c:343
#define HASHEXTENDED_PROC
Definition: hash.h:356
#define GETSTRUCT(TUP)
Definition: htup_details.h:653
int i
Definition: isn.c:73
void get_typlenbyvalalign(Oid typid, int16 *typlen, bool *typbyval, char *typalign)
Definition: lsyscache.c:2253
Oid get_opfamily_proc(Oid opfamily, Oid lefttype, Oid righttype, int16 procnum)
Definition: lsyscache.c:795
void MemoryContextSetParent(MemoryContext context, MemoryContext new_parent)
Definition: mcxt.c:546
void pfree(void *pointer)
Definition: mcxt.c:1456
void * palloc0(Size size)
Definition: mcxt.c:1257
void * MemoryContextAllocZero(MemoryContext context, Size size)
Definition: mcxt.c:1064
MemoryContext CurTransactionContext
Definition: mcxt.c:147
#define BTORDER_PROC
Definition: nbtree.h:707
Oid exprType(const Node *expr)
Definition: nodeFuncs.c:43
int32 exprTypmod(const Node *expr)
Definition: nodeFuncs.c:282
Oid exprCollation(const Node *expr)
Definition: nodeFuncs.c:786
void fix_opfuncids(Node *node)
Definition: nodeFuncs.c:1748
@ PARTITION_STRATEGY_HASH
Definition: parsenodes.h:868
@ PARTITION_STRATEGY_LIST
Definition: parsenodes.h:866
@ PARTITION_STRATEGY_RANGE
Definition: parsenodes.h:867
struct PartitionKeyData * PartitionKey
Definition: partdefs.h:18
FormData_pg_attribute * Form_pg_attribute
Definition: pg_attribute.h:209
#define lfirst(lc)
Definition: pg_list.h:172
static ListCell * list_head(const List *l)
Definition: pg_list.h:128
static ListCell * lnext(const List *l, const ListCell *c)
Definition: pg_list.h:343
FormData_pg_opclass * Form_pg_opclass
Definition: pg_opclass.h:83
FormData_pg_partitioned_table * Form_pg_partitioned_table
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:312
Definition: fmgr.h:57
Definition: nodes.h:129
MemoryContext rd_partkeycxt
Definition: rel.h:127
TupleDesc rd_att
Definition: rel.h:112
PartitionKey rd_partkey
Definition: rel.h:126
Definition: c.h:715
Oid values[FLEXIBLE_ARRAY_MEMBER]
Definition: c.h:722
Datum SysCacheGetAttrNotNull(int cacheId, HeapTuple tup, AttrNumber attributeNumber)
Definition: syscache.c:1112
@ CLAOID
Definition: syscache.h:48
@ PARTRELID
Definition: syscache.h:77
#define TupleDescAttr(tupdesc, i)
Definition: tupdesc.h:92

References ALLOCSET_SMALL_SIZES, AllocSetContextCreate, Assert(), BTORDER_PROC, CacheMemoryContext, CLAOID, copyObject, CurTransactionContext, DatumGetPointer(), elog(), ereport, errcode(), errmsg(), ERROR, eval_const_expressions(), exprCollation(), exprType(), exprTypmod(), fix_opfuncids(), fmgr_info_cxt(), format_type_be(), get_opfamily_proc(), get_typlenbyvalalign(), GETSTRUCT, HASHEXTENDED_PROC, HeapTupleIsValid, i, sort-test::key, lfirst, list_head(), lnext(), MemoryContextAllocZero(), MemoryContextCopyAndSetIdentifier, MemoryContextSetParent(), MemoryContextSwitchTo(), NameStr, ObjectIdGetDatum(), OidIsValid, palloc0(), PARTITION_STRATEGY_HASH, PARTITION_STRATEGY_LIST, PARTITION_STRATEGY_RANGE, PARTRELID, pfree(), RelationData::rd_att, RelationData::rd_partkey, RelationData::rd_partkeycxt, RelationGetRelationName, RelationGetRelid, ReleaseSysCache(), SearchSysCache1(), stringToNode(), SysCacheGetAttr(), SysCacheGetAttrNotNull(), TextDatumGetCString, TupleDescAttr, and oidvector::values.

Referenced by RelationGetPartitionKey().

◆ RelationGetPartitionKey()

◆ RelationGetPartitionQual()

List* RelationGetPartitionQual ( Relation  rel)

Definition at line 280 of file partcache.c.

281 {
282  /* Quick exit */
283  if (!rel->rd_rel->relispartition)
284  return NIL;
285 
286  return generate_partition_qual(rel);
287 }

References generate_partition_qual(), NIL, and RelationData::rd_rel.

Referenced by ATExecAttachPartition(), DetachAddConstraintIfNeeded(), ExecPartitionCheck(), and set_baserel_partition_constraint().