Branch data Line data Source code
1 : : /*-------------------------------------------------------------------------
2 : : * stat_utils.c
3 : : *
4 : : * PostgreSQL statistics manipulation utilities.
5 : : *
6 : : * Code supporting the direct manipulation of statistics.
7 : : *
8 : : * Portions Copyright (c) 1996-2026, PostgreSQL Global Development Group
9 : : * Portions Copyright (c) 1994, Regents of the University of California
10 : : *
11 : : * IDENTIFICATION
12 : : * src/backend/statistics/stat_utils.c
13 : : *
14 : : *-------------------------------------------------------------------------
15 : : */
16 : :
17 : : #include "postgres.h"
18 : :
19 : : #include "access/htup_details.h"
20 : : #include "access/relation.h"
21 : : #include "catalog/index.h"
22 : : #include "catalog/namespace.h"
23 : : #include "catalog/pg_class.h"
24 : : #include "catalog/pg_collation.h"
25 : : #include "catalog/pg_database.h"
26 : : #include "catalog/pg_statistic.h"
27 : : #include "funcapi.h"
28 : : #include "miscadmin.h"
29 : : #include "nodes/nodeFuncs.h"
30 : : #include "statistics/stat_utils.h"
31 : : #include "storage/lmgr.h"
32 : : #include "utils/acl.h"
33 : : #include "utils/array.h"
34 : : #include "utils/builtins.h"
35 : : #include "utils/lsyscache.h"
36 : : #include "utils/rangetypes.h"
37 : : #include "utils/rel.h"
38 : : #include "utils/syscache.h"
39 : : #include "utils/typcache.h"
40 : :
41 : : /* Default values assigned to new pg_statistic tuples. */
42 : : #define DEFAULT_STATATT_NULL_FRAC Float4GetDatum(0.0) /* stanullfrac */
43 : : #define DEFAULT_STATATT_AVG_WIDTH Int32GetDatum(0) /* stawidth, same as
44 : : * unknown */
45 : : #define DEFAULT_STATATT_N_DISTINCT Float4GetDatum(0.0) /* stadistinct, same as
46 : : * unknown */
47 : :
48 : : static Node *statatt_get_index_expr(Relation rel, int attnum);
49 : :
50 : : /*
51 : : * Ensure that a given argument is not null.
52 : : */
53 : : void
54 : 6919 : stats_check_required_arg(FunctionCallInfo fcinfo,
55 : : struct StatsArgInfo *arginfo,
56 : : int argnum)
57 : : {
58 [ + + ]: 6919 : if (PG_ARGISNULL(argnum))
59 [ + - ]: 72 : ereport(ERROR,
60 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
61 : : errmsg("argument \"%s\" must not be null",
62 : : arginfo[argnum].argname)));
63 : 6847 : }
64 : :
65 : : /*
66 : : * Check that argument is either NULL or a one dimensional array with no
67 : : * NULLs.
68 : : *
69 : : * If a problem is found, emit a WARNING, and return false. Otherwise return
70 : : * true.
71 : : */
72 : : bool
73 : 2538 : stats_check_arg_array(FunctionCallInfo fcinfo,
74 : : struct StatsArgInfo *arginfo,
75 : : int argnum)
76 : : {
77 : : ArrayType *arr;
78 : :
79 [ + + ]: 2538 : if (PG_ARGISNULL(argnum))
80 : 2073 : return true;
81 : :
82 : 465 : arr = DatumGetArrayTypeP(PG_GETARG_DATUM(argnum));
83 : :
84 [ - + ]: 465 : if (ARR_NDIM(arr) != 1)
85 : : {
86 [ # # ]: 0 : ereport(WARNING,
87 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
88 : : errmsg("argument \"%s\" must not be a multidimensional array",
89 : : arginfo[argnum].argname)));
90 : 0 : return false;
91 : : }
92 : :
93 [ + + ]: 465 : if (array_contains_nulls(arr))
94 : : {
95 [ + - ]: 4 : ereport(WARNING,
96 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
97 : : errmsg("argument \"%s\" array must not contain null values",
98 : : arginfo[argnum].argname)));
99 : 4 : return false;
100 : : }
101 : :
102 : 461 : return true;
103 : : }
104 : :
105 : : /*
106 : : * Enforce parameter pairs that must be specified together (or not at all) for
107 : : * a particular stakind, such as most_common_vals and most_common_freqs for
108 : : * STATISTIC_KIND_MCV.
109 : : *
110 : : * If a problem is found, emit a WARNING, and return false. Otherwise return
111 : : * true.
112 : : */
113 : : bool
114 : 2538 : stats_check_arg_pair(FunctionCallInfo fcinfo,
115 : : struct StatsArgInfo *arginfo,
116 : : int argnum1, int argnum2)
117 : : {
118 [ + + + + ]: 2538 : if (PG_ARGISNULL(argnum1) && PG_ARGISNULL(argnum2))
119 : 2056 : return true;
120 : :
121 [ + + + + ]: 482 : if (PG_ARGISNULL(argnum1) || PG_ARGISNULL(argnum2))
122 : : {
123 [ + + ]: 28 : int nullarg = PG_ARGISNULL(argnum1) ? argnum1 : argnum2;
124 [ + + ]: 28 : int otherarg = PG_ARGISNULL(argnum1) ? argnum2 : argnum1;
125 : :
126 [ + - ]: 28 : ereport(WARNING,
127 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
128 : : errmsg("argument \"%s\" must be specified when argument \"%s\" is specified",
129 : : arginfo[nullarg].argname,
130 : : arginfo[otherarg].argname)));
131 : :
132 : 28 : return false;
133 : : }
134 : :
135 : 454 : return true;
136 : : }
137 : :
138 : : /*
139 : : * A role has privileges to set statistics on the relation if any of the
140 : : * following are true:
141 : : * - the role owns the current database and the relation is not shared
142 : : * - the role has the MAINTAIN privilege on the relation
143 : : */
144 : : void
145 : 2438 : RangeVarCallbackForStats(const RangeVar *relation,
146 : : Oid relId, Oid oldRelId, void *arg)
147 : : {
148 : 2438 : Oid *locked_oid = (Oid *) arg;
149 : 2438 : Oid table_oid = relId;
150 : : HeapTuple tuple;
151 : : Form_pg_class form;
152 : : char relkind;
153 : :
154 : : /*
155 : : * If we previously locked some other index's heap, and the name we're
156 : : * looking up no longer refers to that relation, release the now-useless
157 : : * lock.
158 : : */
159 [ + + - + ]: 2438 : if (relId != oldRelId && OidIsValid(*locked_oid))
160 : : {
161 : 0 : UnlockRelationOid(*locked_oid, ShareUpdateExclusiveLock);
162 : 0 : *locked_oid = InvalidOid;
163 : : }
164 : :
165 : : /* If the relation does not exist, there's nothing more to do. */
166 [ + + ]: 2438 : if (!OidIsValid(relId))
167 : 16 : return;
168 : :
169 : : /* If the relation does exist, check whether it's an index. */
170 : 2422 : relkind = get_rel_relkind(relId);
171 [ + + + + ]: 2422 : if (relkind == RELKIND_INDEX ||
172 : : relkind == RELKIND_PARTITIONED_INDEX)
173 : 339 : table_oid = IndexGetRelation(relId, false);
174 : :
175 : : /*
176 : : * If retrying yields the same OID, there are a couple of extremely
177 : : * unlikely scenarios we need to handle.
178 : : */
179 [ + + ]: 2422 : if (relId == oldRelId)
180 : : {
181 : : /*
182 : : * If a previous lookup found an index, but the current lookup did
183 : : * not, the index was dropped and the OID was reused for something
184 : : * else between lookups. In theory, we could simply drop our lock on
185 : : * the index's parent table and proceed, but in the interest of
186 : : * avoiding complexity, we just error.
187 : : */
188 [ + - - + ]: 6 : if (table_oid == relId && OidIsValid(*locked_oid))
189 [ # # ]: 0 : ereport(ERROR,
190 : : (errcode(ERRCODE_UNDEFINED_OBJECT),
191 : : errmsg("index \"%s\" was concurrently dropped",
192 : : relation->relname)));
193 : :
194 : : /*
195 : : * If the current lookup found an index but a previous lookup either
196 : : * did not find an index or found one with a different parent
197 : : * relation, the relation was dropped and the OID was reused for an
198 : : * index between lookups. RangeVarGetRelidExtended() will have
199 : : * already locked the index at this point, so we can't just lock the
200 : : * newly discovered parent table OID without risking deadlock. As
201 : : * above, we just error in this case.
202 : : */
203 [ - + - - ]: 6 : if (table_oid != relId && table_oid != *locked_oid)
204 [ # # ]: 0 : ereport(ERROR,
205 : : (errcode(ERRCODE_UNDEFINED_OBJECT),
206 : : errmsg("index \"%s\" was concurrently created",
207 : : relation->relname)));
208 : : }
209 : :
210 : 2422 : tuple = SearchSysCache1(RELOID, ObjectIdGetDatum(table_oid));
211 [ - + ]: 2422 : if (!HeapTupleIsValid(tuple))
212 [ # # ]: 0 : elog(ERROR, "cache lookup failed for OID %u", table_oid);
213 : 2422 : form = (Form_pg_class) GETSTRUCT(tuple);
214 : :
215 : : /* the relkinds that can be used with ANALYZE */
216 [ + + ]: 2422 : switch (form->relkind)
217 : : {
218 : 2410 : case RELKIND_RELATION:
219 : : case RELKIND_MATVIEW:
220 : : case RELKIND_FOREIGN_TABLE:
221 : : case RELKIND_PARTITIONED_TABLE:
222 : 2410 : break;
223 : 12 : default:
224 [ + - ]: 12 : ereport(ERROR,
225 : : (errcode(ERRCODE_WRONG_OBJECT_TYPE),
226 : : errmsg("cannot modify statistics for relation \"%s\"",
227 : : NameStr(form->relname)),
228 : : errdetail_relkind_not_supported(form->relkind)));
229 : : }
230 : :
231 [ - + ]: 2410 : if (form->relisshared)
232 [ # # ]: 0 : ereport(ERROR,
233 : : (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
234 : : errmsg("cannot modify statistics for shared relation")));
235 : :
236 : : /* Check permissions */
237 [ + + ]: 2410 : if (!object_ownercheck(DatabaseRelationId, MyDatabaseId, GetUserId()))
238 : : {
239 : 17 : AclResult aclresult = pg_class_aclcheck(table_oid,
240 : : GetUserId(),
241 : : ACL_MAINTAIN);
242 : :
243 [ + + ]: 17 : if (aclresult != ACLCHECK_OK)
244 : 8 : aclcheck_error(aclresult,
245 : 8 : get_relkind_objtype(form->relkind),
246 : 8 : NameStr(form->relname));
247 : : }
248 : :
249 : 2402 : ReleaseSysCache(tuple);
250 : :
251 : : /* Lock heap before index to avoid deadlock. */
252 [ + + + + ]: 2402 : if (relId != oldRelId && table_oid != relId)
253 : : {
254 : 339 : LockRelationOid(table_oid, ShareUpdateExclusiveLock);
255 : 339 : *locked_oid = table_oid;
256 : : }
257 : : }
258 : :
259 : :
260 : : /*
261 : : * Find the argument number for the given argument name, returning -1 if not
262 : : * found.
263 : : */
264 : : static int
265 : 16990 : get_arg_by_name(const char *argname, struct StatsArgInfo *arginfo)
266 : : {
267 : : int argnum;
268 : :
269 [ + + ]: 81508 : for (argnum = 0; arginfo[argnum].argname != NULL; argnum++)
270 [ + + ]: 81500 : if (pg_strcasecmp(argname, arginfo[argnum].argname) == 0)
271 : 16982 : return argnum;
272 : :
273 [ + - ]: 8 : ereport(WARNING,
274 : : (errmsg("unrecognized argument name: \"%s\"", argname)));
275 : :
276 : 8 : return -1;
277 : : }
278 : :
279 : : /*
280 : : * Ensure that a given argument matched the expected type.
281 : : */
282 : : static bool
283 : 16982 : stats_check_arg_type(const char *argname, Oid argtype, Oid expectedtype)
284 : : {
285 [ + + ]: 16982 : if (argtype != expectedtype)
286 : : {
287 [ + - ]: 16 : ereport(WARNING,
288 : : (errmsg("argument \"%s\" has type %s, expected type %s",
289 : : argname, format_type_be(argtype),
290 : : format_type_be(expectedtype))));
291 : 16 : return false;
292 : : }
293 : :
294 : 16966 : return true;
295 : : }
296 : :
297 : : /*
298 : : * Check if attribute of an index is an expression, then retrieve the
299 : : * expression if is it the case.
300 : : *
301 : : * If the attnum specified is known to be an expression, then we must
302 : : * walk the list attributes up to the specified attnum to get the right
303 : : * expression.
304 : : */
305 : : static Node *
306 : 846 : statatt_get_index_expr(Relation rel, int attnum)
307 : : {
308 : : List *index_exprs;
309 : : ListCell *indexpr_item;
310 : :
311 : : /* relation is not an index */
312 [ + + ]: 846 : if (rel->rd_rel->relkind != RELKIND_INDEX &&
313 [ + - ]: 836 : rel->rd_rel->relkind != RELKIND_PARTITIONED_INDEX)
314 : 836 : return NULL;
315 : :
316 : 10 : index_exprs = RelationGetIndexExpressions(rel);
317 : :
318 : : /* index has no expressions to give */
319 [ - + ]: 10 : if (index_exprs == NIL)
320 : 0 : return NULL;
321 : :
322 : : /*
323 : : * The index's attnum points directly to a relation attnum, hence it is
324 : : * not an expression attribute.
325 : : */
326 [ - + ]: 10 : if (rel->rd_index->indkey.values[attnum - 1] != 0)
327 : 0 : return NULL;
328 : :
329 : 10 : indexpr_item = list_head(rel->rd_indexprs);
330 : :
331 [ - + ]: 10 : for (int i = 0; i < attnum - 1; i++)
332 [ # # ]: 0 : if (rel->rd_index->indkey.values[i] == 0)
333 : 0 : indexpr_item = lnext(rel->rd_indexprs, indexpr_item);
334 : :
335 [ - + ]: 10 : if (indexpr_item == NULL) /* shouldn't happen */
336 [ # # ]: 0 : elog(ERROR, "too few entries in indexprs list");
337 : :
338 : 10 : return (Node *) lfirst(indexpr_item);
339 : : }
340 : :
341 : : /*
342 : : * Translate variadic argument pairs from 'pairs_fcinfo' into a
343 : : * 'positional_fcinfo' appropriate for calling relation_statistics_update() or
344 : : * attribute_statistics_update() with positional arguments.
345 : : *
346 : : * Caller should have already initialized positional_fcinfo with a size
347 : : * appropriate for calling the intended positional function, and arginfo
348 : : * should also match the intended positional function.
349 : : */
350 : : bool
351 : 2444 : stats_fill_fcinfo_from_arg_pairs(FunctionCallInfo pairs_fcinfo,
352 : : FunctionCallInfo positional_fcinfo,
353 : : struct StatsArgInfo *arginfo)
354 : : {
355 : : Datum *args;
356 : : bool *argnulls;
357 : : Oid *types;
358 : : int nargs;
359 : 2444 : bool result = true;
360 : :
361 : : /* clear positional args */
362 [ + + ]: 29276 : for (int i = 0; arginfo[i].argname != NULL; i++)
363 : : {
364 : 26832 : positional_fcinfo->args[i].value = (Datum) 0;
365 : 26832 : positional_fcinfo->args[i].isnull = true;
366 : : }
367 : :
368 : 2444 : nargs = extract_variadic_args(pairs_fcinfo, 0, true,
369 : : &args, &types, &argnulls);
370 : :
371 [ + + ]: 2444 : if (nargs % 2 != 0)
372 [ + - ]: 4 : ereport(ERROR,
373 : : errmsg("variadic arguments must be name/value pairs"),
374 : : errhint("Provide an even number of variadic arguments that can be divided into pairs."));
375 : :
376 : : /*
377 : : * For each argument name/value pair, find corresponding positional
378 : : * argument for the argument name, and assign the argument value to
379 : : * positional_fcinfo.
380 : : */
381 [ + + ]: 21498 : for (int i = 0; i < nargs; i += 2)
382 : : {
383 : : int argnum;
384 : : char *argname;
385 : :
386 [ + + ]: 19062 : if (argnulls[i])
387 [ + - ]: 4 : ereport(ERROR,
388 : : (errmsg("name at variadic position %d is null", i + 1)));
389 : :
390 [ - + ]: 19058 : if (types[i] != TEXTOID)
391 [ # # ]: 0 : ereport(ERROR,
392 : : (errmsg("name at variadic position %d has type %s, expected type %s",
393 : : i + 1, format_type_be(types[i]),
394 : : format_type_be(TEXTOID))));
395 : :
396 [ + + ]: 19058 : if (argnulls[i + 1])
397 : 204 : continue;
398 : :
399 : 18854 : argname = TextDatumGetCString(args[i]);
400 : :
401 : : /*
402 : : * The 'version' argument is a special case, not handled by arginfo
403 : : * because it's not a valid positional argument.
404 : : *
405 : : * For now, 'version' is accepted but ignored. In the future it can be
406 : : * used to interpret older statistics properly.
407 : : */
408 [ + + ]: 18854 : if (pg_strcasecmp(argname, "version") == 0)
409 : 1864 : continue;
410 : :
411 : 16990 : argnum = get_arg_by_name(argname, arginfo);
412 : :
413 [ + + + + ]: 33972 : if (argnum < 0 || !stats_check_arg_type(argname, types[i + 1],
414 : 16982 : arginfo[argnum].argtype))
415 : : {
416 : 24 : result = false;
417 : 24 : continue;
418 : : }
419 : :
420 : 16966 : positional_fcinfo->args[argnum].value = args[i + 1];
421 : 16966 : positional_fcinfo->args[argnum].isnull = false;
422 : : }
423 : :
424 : 2436 : return result;
425 : : }
426 : :
427 : : /*
428 : : * Derive type information from a relation attribute.
429 : : *
430 : : * This is needed for setting most slot statistics for all data types.
431 : : *
432 : : * This duplicates the logic in examine_attribute() but it will not skip the
433 : : * attribute if the attstattarget is 0.
434 : : *
435 : : * This information, retrieved from pg_attribute and pg_type with some
436 : : * specific handling for index expressions, is a prerequisite to calling
437 : : * any of the other statatt_*() functions.
438 : : */
439 : : void
440 : 846 : statatt_get_type(Oid reloid, AttrNumber attnum,
441 : : Oid *atttypid, int32 *atttypmod,
442 : : char *atttyptype, Oid *atttypcoll,
443 : : Oid *eq_opr, Oid *lt_opr)
444 : : {
445 : 846 : Relation rel = relation_open(reloid, AccessShareLock);
446 : : Form_pg_attribute attr;
447 : : HeapTuple atup;
448 : : Node *expr;
449 : : TypeCacheEntry *typcache;
450 : :
451 : 846 : atup = SearchSysCache2(ATTNUM, ObjectIdGetDatum(reloid),
452 : : Int16GetDatum(attnum));
453 : :
454 : : /* Attribute not found */
455 [ - + ]: 846 : if (!HeapTupleIsValid(atup))
456 [ # # ]: 0 : ereport(ERROR,
457 : : (errcode(ERRCODE_UNDEFINED_COLUMN),
458 : : errmsg("column %d of relation \"%s\" does not exist",
459 : : attnum, RelationGetRelationName(rel))));
460 : :
461 : 846 : attr = (Form_pg_attribute) GETSTRUCT(atup);
462 : :
463 [ - + ]: 846 : if (attr->attisdropped)
464 [ # # ]: 0 : ereport(ERROR,
465 : : (errcode(ERRCODE_UNDEFINED_COLUMN),
466 : : errmsg("column %d of relation \"%s\" does not exist",
467 : : attnum, RelationGetRelationName(rel))));
468 : :
469 : 846 : expr = statatt_get_index_expr(rel, attr->attnum);
470 : :
471 : : /*
472 : : * When analyzing an expression index, believe the expression tree's type
473 : : * not the column datatype --- the latter might be the opckeytype storage
474 : : * type of the opclass, which is not interesting for our purposes. This
475 : : * mimics the behavior of examine_attribute().
476 : : */
477 [ + + ]: 846 : if (expr == NULL)
478 : : {
479 : 836 : *atttypid = attr->atttypid;
480 : 836 : *atttypmod = attr->atttypmod;
481 : 836 : *atttypcoll = attr->attcollation;
482 : : }
483 : : else
484 : : {
485 : 10 : *atttypid = exprType(expr);
486 : 10 : *atttypmod = exprTypmod(expr);
487 : :
488 [ - + ]: 10 : if (OidIsValid(attr->attcollation))
489 : 0 : *atttypcoll = attr->attcollation;
490 : : else
491 : 10 : *atttypcoll = exprCollation(expr);
492 : : }
493 : 846 : ReleaseSysCache(atup);
494 : :
495 : : /* finds the right operators even if atttypid is a domain */
496 : 846 : typcache = lookup_type_cache(*atttypid, TYPECACHE_LT_OPR | TYPECACHE_EQ_OPR);
497 : 846 : *atttyptype = typcache->typtype;
498 : 846 : *eq_opr = typcache->eq_opr;
499 : 846 : *lt_opr = typcache->lt_opr;
500 : :
501 : : /*
502 : : * Special case: collation for tsvector is DEFAULT_COLLATION_OID. See
503 : : * compute_tsvector_stats().
504 : : */
505 [ + + ]: 846 : if (*atttypid == TSVECTOROID)
506 : 1 : *atttypcoll = DEFAULT_COLLATION_OID;
507 : :
508 : 846 : relation_close(rel, NoLock);
509 : 846 : }
510 : :
511 : : /*
512 : : * Derive element type information from the attribute type. This information
513 : : * is needed when the given type is one that contains elements of other types.
514 : : *
515 : : * The atttypid and atttyptype should be derived from a previous call to
516 : : * statatt_get_type().
517 : : */
518 : : bool
519 : 60 : statatt_get_elem_type(Oid atttypid, char atttyptype,
520 : : Oid *elemtypid, Oid *elem_eq_opr)
521 : : {
522 : : TypeCacheEntry *elemtypcache;
523 : :
524 [ + + ]: 60 : if (atttypid == TSVECTOROID)
525 : : {
526 : : /*
527 : : * Special case: element type for tsvector is text. See
528 : : * compute_tsvector_stats().
529 : : */
530 : 5 : *elemtypid = TEXTOID;
531 : : }
532 : : else
533 : : {
534 : : /* find underlying element type through any domain */
535 : 55 : *elemtypid = get_base_element_type(atttypid);
536 : : }
537 : :
538 [ + + ]: 60 : if (!OidIsValid(*elemtypid))
539 : 20 : return false;
540 : :
541 : : /* finds the right operator even if elemtypid is a domain */
542 : 40 : elemtypcache = lookup_type_cache(*elemtypid, TYPECACHE_EQ_OPR);
543 [ - + ]: 40 : if (!OidIsValid(elemtypcache->eq_opr))
544 : 0 : return false;
545 : :
546 : 40 : *elem_eq_opr = elemtypcache->eq_opr;
547 : :
548 : 40 : return true;
549 : : }
550 : :
551 : : /*
552 : : * Build an array with element type typid from a text datum, used as
553 : : * value of an attribute in a tuple to-be-inserted into pg_statistic.
554 : : *
555 : : * The typid and typmod should be derived from a previous call to
556 : : * statatt_get_type().
557 : : *
558 : : * If an error is encountered, capture it and throw a WARNING, with "ok" set
559 : : * to false. If the resulting array contains NULLs, raise a WARNING and
560 : : * set "ok" to false. When the operation succeeds, set "ok" to true.
561 : : */
562 : : Datum
563 : 858 : statatt_build_stavalues(const char *staname, FmgrInfo *array_in, Datum d, Oid typid,
564 : : int32 typmod, bool *ok)
565 : : {
566 : : char *s;
567 : : Datum result;
568 : 858 : ErrorSaveContext escontext = {T_ErrorSaveContext};
569 : :
570 : 858 : escontext.details_wanted = true;
571 : :
572 : 858 : s = TextDatumGetCString(d);
573 : :
574 [ + + ]: 858 : if (!InputFunctionCallSafe(array_in, s, typid, typmod,
575 : : (Node *) &escontext, &result))
576 : : {
577 : 8 : pfree(s);
578 : 8 : escontext.error_data->elevel = WARNING;
579 : 8 : ThrowErrorData(escontext.error_data);
580 : 8 : *ok = false;
581 : 8 : return (Datum) 0;
582 : : }
583 : :
584 : 850 : pfree(s);
585 : :
586 [ + + ]: 850 : if (ARR_NDIM(DatumGetArrayTypeP(result)) != 1)
587 : : {
588 [ + - ]: 4 : ereport(WARNING,
589 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
590 : : errmsg("\"%s\" must be a one-dimensional array", staname)));
591 : 4 : *ok = false;
592 : 4 : return (Datum) 0;
593 : : }
594 : :
595 [ + + ]: 846 : if (array_contains_nulls(DatumGetArrayTypeP(result)))
596 : : {
597 [ + - ]: 4 : ereport(WARNING,
598 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
599 : : errmsg("\"%s\" array must not contain null values", staname)));
600 : 4 : *ok = false;
601 : 4 : return (Datum) 0;
602 : : }
603 : :
604 : 842 : *ok = true;
605 : :
606 : 842 : return result;
607 : : }
608 : :
609 : : /*
610 : : * Find and update the slot of a stakind, or use the first empty slot.
611 : : *
612 : : * Core statistics types expect the stakind value to be one of the
613 : : * STATISTIC_KIND_* constants defined in pg_statistic.h, but types defined
614 : : * by extensions are not restricted to those values.
615 : : *
616 : : * In the case of core statistics, the required staop is determined by the
617 : : * stakind given and will either be a hardcoded oid, or the eq/lt operator
618 : : * derived from statatt_get_type(). Likewise, types defined by extensions
619 : : * have no such restriction.
620 : : *
621 : : * The stacoll value should be either the atttypcoll derived from
622 : : * statatt_get_type(), or a hardcoded value required by that particular
623 : : * stakind.
624 : : *
625 : : * The value/null pairs for stanumbers and stavalues should be calculated
626 : : * based on the stakind, using statatt_build_stavalues() or constructed arrays.
627 : : */
628 : : void
629 : 1655 : statatt_set_slot(Datum *values, bool *nulls, bool *replaces,
630 : : int16 stakind, Oid staop, Oid stacoll,
631 : : Datum stanumbers, bool stanumbers_isnull,
632 : : Datum stavalues, bool stavalues_isnull)
633 : : {
634 : : int slotidx;
635 : 1655 : int first_empty = -1;
636 : : AttrNumber stakind_attnum;
637 : : AttrNumber staop_attnum;
638 : : AttrNumber stacoll_attnum;
639 : :
640 : : /* find existing slot with given stakind */
641 [ + + ]: 9930 : for (slotidx = 0; slotidx < STATISTIC_NUM_SLOTS; slotidx++)
642 : : {
643 : 8275 : stakind_attnum = Anum_pg_statistic_stakind1 - 1 + slotidx;
644 : :
645 [ + + + + ]: 10968 : if (first_empty < 0 &&
646 : 2693 : DatumGetInt16(values[stakind_attnum]) == 0)
647 : 1655 : first_empty = slotidx;
648 [ - + ]: 8275 : if (DatumGetInt16(values[stakind_attnum]) == stakind)
649 : 0 : break;
650 : : }
651 : :
652 [ + - + - ]: 1655 : if (slotidx >= STATISTIC_NUM_SLOTS && first_empty >= 0)
653 : 1655 : slotidx = first_empty;
654 : :
655 [ - + ]: 1655 : if (slotidx >= STATISTIC_NUM_SLOTS)
656 [ # # ]: 0 : ereport(ERROR,
657 : : (errmsg("maximum number of statistics slots exceeded: %d",
658 : : slotidx + 1)));
659 : :
660 : 1655 : stakind_attnum = Anum_pg_statistic_stakind1 - 1 + slotidx;
661 : 1655 : staop_attnum = Anum_pg_statistic_staop1 - 1 + slotidx;
662 : 1655 : stacoll_attnum = Anum_pg_statistic_stacoll1 - 1 + slotidx;
663 : :
664 [ + - ]: 1655 : if (DatumGetInt16(values[stakind_attnum]) != stakind)
665 : : {
666 : 1655 : values[stakind_attnum] = Int16GetDatum(stakind);
667 : 1655 : replaces[stakind_attnum] = true;
668 : : }
669 [ + + ]: 1655 : if (DatumGetObjectId(values[staop_attnum]) != staop)
670 : : {
671 : 1631 : values[staop_attnum] = ObjectIdGetDatum(staop);
672 : 1631 : replaces[staop_attnum] = true;
673 : : }
674 [ + + ]: 1655 : if (DatumGetObjectId(values[stacoll_attnum]) != stacoll)
675 : : {
676 : 366 : values[stacoll_attnum] = ObjectIdGetDatum(stacoll);
677 : 366 : replaces[stacoll_attnum] = true;
678 : : }
679 [ + + ]: 1655 : if (!stanumbers_isnull)
680 : : {
681 : 1227 : values[Anum_pg_statistic_stanumbers1 - 1 + slotidx] = stanumbers;
682 : 1227 : nulls[Anum_pg_statistic_stanumbers1 - 1 + slotidx] = false;
683 : 1227 : replaces[Anum_pg_statistic_stanumbers1 - 1 + slotidx] = true;
684 : : }
685 [ + + ]: 1655 : if (!stavalues_isnull)
686 : : {
687 : 925 : values[Anum_pg_statistic_stavalues1 - 1 + slotidx] = stavalues;
688 : 925 : nulls[Anum_pg_statistic_stavalues1 - 1 + slotidx] = false;
689 : 925 : replaces[Anum_pg_statistic_stavalues1 - 1 + slotidx] = true;
690 : : }
691 : 1655 : }
692 : :
693 : : /*
694 : : * Initialize values and nulls for a new pg_statistic tuple.
695 : : *
696 : : * The caller is responsible for allocating the arrays where the results are
697 : : * stored, which should be of size Natts_pg_statistic.
698 : : *
699 : : * When using this routine for a tuple inserted into pg_statistic, reloid,
700 : : * attnum and inherited flags should all be set.
701 : : *
702 : : * When using this routine for a tuple that is an element of a stxdexpr
703 : : * array inserted into pg_statistic_ext_data, reloid, attnum and inherited
704 : : * should be respectively set to InvalidOid, InvalidAttrNumber and false.
705 : : */
706 : : void
707 : 909 : statatt_init_empty_tuple(Oid reloid, int16 attnum, bool inherited,
708 : : Datum *values, bool *nulls, bool *replaces)
709 : : {
710 : 909 : memset(nulls, true, sizeof(bool) * Natts_pg_statistic);
711 : 909 : memset(replaces, true, sizeof(bool) * Natts_pg_statistic);
712 : :
713 : : /* This must initialize non-NULL attributes */
714 : 909 : values[Anum_pg_statistic_starelid - 1] = ObjectIdGetDatum(reloid);
715 : 909 : nulls[Anum_pg_statistic_starelid - 1] = false;
716 : 909 : values[Anum_pg_statistic_staattnum - 1] = Int16GetDatum(attnum);
717 : 909 : nulls[Anum_pg_statistic_staattnum - 1] = false;
718 : 909 : values[Anum_pg_statistic_stainherit - 1] = BoolGetDatum(inherited);
719 : 909 : nulls[Anum_pg_statistic_stainherit - 1] = false;
720 : :
721 : 909 : values[Anum_pg_statistic_stanullfrac - 1] = DEFAULT_STATATT_NULL_FRAC;
722 : 909 : nulls[Anum_pg_statistic_stanullfrac - 1] = false;
723 : 909 : values[Anum_pg_statistic_stawidth - 1] = DEFAULT_STATATT_AVG_WIDTH;
724 : 909 : nulls[Anum_pg_statistic_stawidth - 1] = false;
725 : 909 : values[Anum_pg_statistic_stadistinct - 1] = DEFAULT_STATATT_N_DISTINCT;
726 : 909 : nulls[Anum_pg_statistic_stadistinct - 1] = false;
727 : :
728 : : /* initialize stakind, staop, and stacoll slots */
729 [ + + ]: 5454 : for (int slotnum = 0; slotnum < STATISTIC_NUM_SLOTS; slotnum++)
730 : : {
731 : 4545 : values[Anum_pg_statistic_stakind1 + slotnum - 1] = (Datum) 0;
732 : 4545 : nulls[Anum_pg_statistic_stakind1 + slotnum - 1] = false;
733 : 4545 : values[Anum_pg_statistic_staop1 + slotnum - 1] = ObjectIdGetDatum(InvalidOid);
734 : 4545 : nulls[Anum_pg_statistic_staop1 + slotnum - 1] = false;
735 : 4545 : values[Anum_pg_statistic_stacoll1 + slotnum - 1] = ObjectIdGetDatum(InvalidOid);
736 : 4545 : nulls[Anum_pg_statistic_stacoll1 + slotnum - 1] = false;
737 : : }
738 : 909 : }
739 : :
740 : : /*
741 : : * Check that an imported bounds histogram (STATISTIC_KIND_BOUNDS_HISTOGRAM)
742 : : * is shaped the same way ANALYZE builds it in compute_range_stats().
743 : : *
744 : : * For both range-typed and multirange-typed columns the histogram is an array
745 : : * of ranges, so we take the range type from the array's element type.
746 : : */
747 : : bool
748 : 40 : statatt_check_bounds_histogram(Datum arrayval)
749 : : {
750 : 40 : ArrayType *arr = DatumGetArrayTypeP(arrayval);
751 : 40 : Oid rngtypid = ARR_ELEMTYPE(arr);
752 : : TypeCacheEntry *typcache;
753 : : int16 elmlen;
754 : : bool elmbyval;
755 : : char elmalign;
756 : : Datum *elems;
757 : : bool *nulls;
758 : : int nelems;
759 : 40 : RangeBound prev_lower = {0};
760 : 40 : RangeBound prev_upper = {0};
761 : :
762 : 40 : typcache = lookup_type_cache(rngtypid, TYPECACHE_RANGE_INFO);
763 : :
764 : : /*
765 : : * The element type should always be a range type here. This is
766 : : * defensive. If it isn't, the bounds histogram is never consulted by the
767 : : * range estimator, and there is nothing to verify.
768 : : */
769 [ - + ]: 40 : if (typcache->rngelemtype == NULL)
770 : 0 : return true;
771 : :
772 : 40 : get_typlenbyvalalign(rngtypid, &elmlen, &elmbyval, &elmalign);
773 : 40 : deconstruct_array(arr, rngtypid, elmlen, elmbyval, elmalign,
774 : : &elems, &nulls, &nelems);
775 : :
776 [ + + ]: 330 : for (int i = 0; i < nelems; i++)
777 : : {
778 : : RangeBound lower,
779 : : upper;
780 : : bool empty;
781 : :
782 : : /*
783 : : * NULL elements are already rejected by statatt_build_stavalues() and
784 : : * array_in_safe().
785 : : */
786 : 306 : range_deserialize(typcache, DatumGetRangeTypeP(elems[i]),
787 : : &lower, &upper, &empty);
788 : :
789 [ + + ]: 306 : if (empty)
790 : : {
791 [ + - ]: 8 : ereport(WARNING,
792 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
793 : : errmsg("\"%s\" must not contain empty ranges",
794 : : "range_bounds_histogram")));
795 : 16 : return false;
796 : : }
797 : :
798 [ + + + + ]: 564 : if (i > 0 &&
799 [ - + ]: 524 : (range_cmp_bounds(typcache, &lower, &prev_lower) < 0 ||
800 : 258 : range_cmp_bounds(typcache, &upper, &prev_upper) < 0))
801 : : {
802 [ + - ]: 8 : ereport(WARNING,
803 : : (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
804 : : errmsg("\"%s\" must have its lower and upper bounds sorted in ascending order",
805 : : "range_bounds_histogram")));
806 : 8 : return false;
807 : : }
808 : :
809 : 290 : prev_lower = lower;
810 : 290 : prev_upper = upper;
811 : : }
812 : :
813 : 24 : return true;
814 : : }
|