PostgreSQL Source Code git master
ts_typanalyze.c File Reference
#include "postgres.h"
#include "catalog/pg_collation.h"
#include "catalog/pg_operator.h"
#include "commands/vacuum.h"
#include "common/hashfn.h"
#include "tsearch/ts_type.h"
#include "utils/builtins.h"
#include "varatt.h"
Include dependency graph for ts_typanalyze.c:

Go to the source code of this file.

Data Structures

struct  LexemeHashKey
 
struct  TrackItem
 

Functions

static void compute_tsvector_stats (VacAttrStats *stats, AnalyzeAttrFetchFunc fetchfunc, int samplerows, double totalrows)
 
static void prune_lexemes_hashtable (HTAB *lexemes_tab, int b_current)
 
static uint32 lexeme_hash (const void *key, Size keysize)
 
static int lexeme_match (const void *key1, const void *key2, Size keysize)
 
static int lexeme_compare (const void *key1, const void *key2)
 
static int trackitem_compare_frequencies_desc (const void *e1, const void *e2, void *arg)
 
static int trackitem_compare_lexemes (const void *e1, const void *e2, void *arg)
 
Datum ts_typanalyze (PG_FUNCTION_ARGS)
 

Function Documentation

◆ compute_tsvector_stats()

static void compute_tsvector_stats ( VacAttrStats stats,
AnalyzeAttrFetchFunc  fetchfunc,
int  samplerows,
double  totalrows 
)
static

Definition at line 141 of file ts_typanalyze.c.

145{
146 int num_mcelem;
147 int null_cnt = 0;
148 double total_width = 0;
149
150 /* This is D from the LC algorithm. */
151 HTAB *lexemes_tab;
152 HASHCTL hash_ctl;
153 HASH_SEQ_STATUS scan_status;
154
155 /* This is the current bucket number from the LC algorithm */
156 int b_current;
157
158 /* This is 'w' from the LC algorithm */
159 int bucket_width;
160 int vector_no,
161 lexeme_no;
163
164 /*
165 * We want statistics_target * 10 lexemes in the MCELEM array. This
166 * multiplier is pretty arbitrary, but is meant to reflect the fact that
167 * the number of individual lexeme values tracked in pg_statistic ought to
168 * be more than the number of values for a simple scalar column.
169 */
170 num_mcelem = stats->attstattarget * 10;
171
172 /*
173 * We set bucket width equal to (num_mcelem + 10) / 0.007 as per the
174 * comment above.
175 */
176 bucket_width = (num_mcelem + 10) * 1000 / 7;
177
178 /*
179 * Create the hashtable. It will be in local memory, so we don't need to
180 * worry about overflowing the initial size. Also we don't need to pay any
181 * attention to locking and memory management.
182 */
183 hash_ctl.keysize = sizeof(LexemeHashKey);
184 hash_ctl.entrysize = sizeof(TrackItem);
185 hash_ctl.hash = lexeme_hash;
186 hash_ctl.match = lexeme_match;
187 hash_ctl.hcxt = CurrentMemoryContext;
188 lexemes_tab = hash_create("Analyzed lexemes table",
189 num_mcelem,
190 &hash_ctl,
192
193 /* Initialize counters. */
194 b_current = 1;
195 lexeme_no = 0;
196
197 /* Loop over the tsvectors. */
198 for (vector_no = 0; vector_no < samplerows; vector_no++)
199 {
200 Datum value;
201 bool isnull;
202 TSVector vector;
203 WordEntry *curentryptr;
204 char *lexemesptr;
205 int j;
206
207 vacuum_delay_point(true);
208
209 value = fetchfunc(stats, vector_no, &isnull);
210
211 /*
212 * Check for null/nonnull.
213 */
214 if (isnull)
215 {
216 null_cnt++;
217 continue;
218 }
219
220 /*
221 * Add up widths for average-width calculation. Since it's a
222 * tsvector, we know it's varlena. As in the regular
223 * compute_minimal_stats function, we use the toasted width for this
224 * calculation.
225 */
226 total_width += VARSIZE_ANY(DatumGetPointer(value));
227
228 /*
229 * Now detoast the tsvector if needed.
230 */
231 vector = DatumGetTSVector(value);
232
233 /*
234 * We loop through the lexemes in the tsvector and add them to our
235 * tracking hashtable.
236 */
237 lexemesptr = STRPTR(vector);
238 curentryptr = ARRPTR(vector);
239 for (j = 0; j < vector->size; j++)
240 {
241 TrackItem *item;
242 bool found;
243
244 /*
245 * Construct a hash key. The key points into the (detoasted)
246 * tsvector value at this point, but if a new entry is created, we
247 * make a copy of it. This way we can free the tsvector value
248 * once we've processed all its lexemes.
249 */
250 hash_key.lexeme = lexemesptr + curentryptr->pos;
251 hash_key.length = curentryptr->len;
252
253 /* Lookup current lexeme in hashtable, adding it if new */
254 item = (TrackItem *) hash_search(lexemes_tab,
255 &hash_key,
256 HASH_ENTER, &found);
257
258 if (found)
259 {
260 /* The lexeme is already on the tracking list */
261 item->frequency++;
262 }
263 else
264 {
265 /* Initialize new tracking list element */
266 item->frequency = 1;
267 item->delta = b_current - 1;
268
269 item->key.lexeme = palloc(hash_key.length);
270 memcpy(item->key.lexeme, hash_key.lexeme, hash_key.length);
271 }
272
273 /* lexeme_no is the number of elements processed (ie N) */
274 lexeme_no++;
275
276 /* We prune the D structure after processing each bucket */
277 if (lexeme_no % bucket_width == 0)
278 {
279 prune_lexemes_hashtable(lexemes_tab, b_current);
280 b_current++;
281 }
282
283 /* Advance to the next WordEntry in the tsvector */
284 curentryptr++;
285 }
286
287 /* If the vector was toasted, free the detoasted copy. */
288 if (TSVectorGetDatum(vector) != value)
289 pfree(vector);
290 }
291
292 /* We can only compute real stats if we found some non-null values. */
293 if (null_cnt < samplerows)
294 {
295 int nonnull_cnt = samplerows - null_cnt;
296 int i;
297 TrackItem **sort_table;
298 TrackItem *item;
299 int track_len;
300 int cutoff_freq;
301 int minfreq,
302 maxfreq;
303
304 stats->stats_valid = true;
305 /* Do the simple null-frac and average width stats */
306 stats->stanullfrac = (double) null_cnt / (double) samplerows;
307 stats->stawidth = total_width / (double) nonnull_cnt;
308
309 /* Assume it's a unique column (see notes above) */
310 stats->stadistinct = -1.0 * (1.0 - stats->stanullfrac);
311
312 /*
313 * Construct an array of the interesting hashtable items, that is,
314 * those meeting the cutoff frequency (s - epsilon)*N. Also identify
315 * the maximum frequency among these items.
316 *
317 * Since epsilon = s/10 and bucket_width = 1/epsilon, the cutoff
318 * frequency is 9*N / bucket_width.
319 */
320 cutoff_freq = 9 * lexeme_no / bucket_width;
321
322 i = hash_get_num_entries(lexemes_tab); /* surely enough space */
323 sort_table = (TrackItem **) palloc(sizeof(TrackItem *) * i);
324
325 hash_seq_init(&scan_status, lexemes_tab);
326 track_len = 0;
327 maxfreq = 0;
328 while ((item = (TrackItem *) hash_seq_search(&scan_status)) != NULL)
329 {
330 if (item->frequency > cutoff_freq)
331 {
332 sort_table[track_len++] = item;
333 maxfreq = Max(maxfreq, item->frequency);
334 }
335 }
336 Assert(track_len <= i);
337
338 /* emit some statistics for debug purposes */
339 elog(DEBUG3, "tsvector_stats: target # mces = %d, bucket width = %d, "
340 "# lexemes = %d, hashtable size = %d, usable entries = %d",
341 num_mcelem, bucket_width, lexeme_no, i, track_len);
342
343 /*
344 * If we obtained more lexemes than we really want, get rid of those
345 * with least frequencies. The easiest way is to qsort the array into
346 * descending frequency order and truncate the array.
347 *
348 * If we did not find more elements than we want, then it is safe to
349 * assume that the stored MCE array will contain every element with
350 * frequency above the cutoff. In that case, rather than storing the
351 * smallest frequency we are keeping, we want to store the minimum
352 * frequency that would have been accepted as a valid MCE. The
353 * selectivity functions can assume that that is an upper bound on the
354 * frequency of elements not present in the array.
355 *
356 * If we found no candidate MCEs at all, we still want to record the
357 * cutoff frequency, since it's still valid to assume that no element
358 * has frequency more than that.
359 */
360 if (num_mcelem < track_len)
361 {
362 qsort_interruptible(sort_table, track_len, sizeof(TrackItem *),
364 /* set minfreq to the smallest frequency we're keeping */
365 minfreq = sort_table[num_mcelem - 1]->frequency;
366 }
367 else
368 {
369 num_mcelem = track_len;
370 /* set minfreq to the minimum frequency above the cutoff */
371 minfreq = cutoff_freq + 1;
372 /* ensure maxfreq is nonzero, too */
373 if (track_len == 0)
374 maxfreq = minfreq;
375 }
376
377 /* Generate MCELEM slot entry */
378 if (num_mcelem >= 0)
379 {
380 MemoryContext old_context;
381 Datum *mcelem_values;
382 float4 *mcelem_freqs;
383
384 /*
385 * We want to store statistics sorted on the lexeme value using
386 * first length, then byte-for-byte comparison. The reason for
387 * doing length comparison first is that we don't care about the
388 * ordering so long as it's consistent, and comparing lengths
389 * first gives us a chance to avoid a strncmp() call.
390 *
391 * This is different from what we do with scalar statistics --
392 * they get sorted on frequencies. The rationale is that we
393 * usually search through most common elements looking for a
394 * specific value, so we can grab its frequency. When values are
395 * presorted we can employ binary search for that. See
396 * ts_selfuncs.c for a real usage scenario.
397 */
398 qsort_interruptible(sort_table, num_mcelem, sizeof(TrackItem *),
400
401 /* Must copy the target values into anl_context */
402 old_context = MemoryContextSwitchTo(stats->anl_context);
403
404 /*
405 * We sorted statistics on the lexeme value, but we want to be
406 * able to find out the minimal and maximal frequency without
407 * going through all the values. We keep those two extra
408 * frequencies in two extra cells in mcelem_freqs.
409 *
410 * (Note: the MCELEM statistics slot definition allows for a third
411 * extra number containing the frequency of nulls, but we don't
412 * create that for a tsvector column, since null elements aren't
413 * possible.)
414 */
415 mcelem_values = (Datum *) palloc(num_mcelem * sizeof(Datum));
416 mcelem_freqs = (float4 *) palloc((num_mcelem + 2) * sizeof(float4));
417
418 /*
419 * See comments above about use of nonnull_cnt as the divisor for
420 * the final frequency estimates.
421 */
422 for (i = 0; i < num_mcelem; i++)
423 {
424 TrackItem *titem = sort_table[i];
425
426 mcelem_values[i] =
428 titem->key.length));
429 mcelem_freqs[i] = (double) titem->frequency / (double) nonnull_cnt;
430 }
431 mcelem_freqs[i++] = (double) minfreq / (double) nonnull_cnt;
432 mcelem_freqs[i] = (double) maxfreq / (double) nonnull_cnt;
433 MemoryContextSwitchTo(old_context);
434
435 stats->stakind[0] = STATISTIC_KIND_MCELEM;
436 stats->staop[0] = TextEqualOperator;
437 stats->stacoll[0] = DEFAULT_COLLATION_OID;
438 stats->stanumbers[0] = mcelem_freqs;
439 /* See above comment about two extra frequency fields */
440 stats->numnumbers[0] = num_mcelem + 2;
441 stats->stavalues[0] = mcelem_values;
442 stats->numvalues[0] = num_mcelem;
443 /* We are storing text values */
444 stats->statypid[0] = TEXTOID;
445 stats->statyplen[0] = -1; /* typlen, -1 for varlena */
446 stats->statypbyval[0] = false;
447 stats->statypalign[0] = 'i';
448 }
449 }
450 else
451 {
452 /* We found only nulls; assume the column is entirely null */
453 stats->stats_valid = true;
454 stats->stanullfrac = 1.0;
455 stats->stawidth = 0; /* "unknown" */
456 stats->stadistinct = 0.0; /* "unknown" */
457 }
458
459 /*
460 * We don't need to bother cleaning up any of our temporary palloc's. The
461 * hashtable should also go away, as it used a child memory context.
462 */
463}
#define Max(x, y)
Definition: c.h:1000
float float4
Definition: c.h:637
#define ARRPTR(x)
Definition: cube.c:28
static dshash_hash hash_key(dshash_table *hash_table, const void *key)
Definition: dshash.c:1065
void * hash_search(HTAB *hashp, const void *keyPtr, HASHACTION action, bool *foundPtr)
Definition: dynahash.c:952
HTAB * hash_create(const char *tabname, int64 nelem, const HASHCTL *info, int flags)
Definition: dynahash.c:358
void * hash_seq_search(HASH_SEQ_STATUS *status)
Definition: dynahash.c:1415
int64 hash_get_num_entries(HTAB *hashp)
Definition: dynahash.c:1336
void hash_seq_init(HASH_SEQ_STATUS *status, HTAB *hashp)
Definition: dynahash.c:1380
#define DEBUG3
Definition: elog.h:28
#define elog(elevel,...)
Definition: elog.h:226
Assert(PointerIsAligned(start, uint64))
@ HASH_ENTER
Definition: hsearch.h:114
#define HASH_CONTEXT
Definition: hsearch.h:102
#define HASH_ELEM
Definition: hsearch.h:95
#define HASH_COMPARE
Definition: hsearch.h:99
#define HASH_FUNCTION
Definition: hsearch.h:98
#define STRPTR(x)
Definition: hstore.h:76
static struct @171 value
int j
Definition: isn.c:78
int i
Definition: isn.c:77
void pfree(void *pointer)
Definition: mcxt.c:1594
void * palloc(Size size)
Definition: mcxt.c:1365
MemoryContext CurrentMemoryContext
Definition: mcxt.c:160
static MemoryContext MemoryContextSwitchTo(MemoryContext context)
Definition: palloc.h:124
void qsort_interruptible(void *base, size_t nel, size_t elsize, qsort_arg_comparator cmp, void *arg)
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:332
uint64_t Datum
Definition: postgres.h:70
static Pointer DatumGetPointer(Datum X)
Definition: postgres.h:322
Size keysize
Definition: hsearch.h:75
HashValueFunc hash
Definition: hsearch.h:78
Size entrysize
Definition: hsearch.h:76
HashCompareFunc match
Definition: hsearch.h:80
MemoryContext hcxt
Definition: hsearch.h:86
Definition: dynahash.c:222
int32 size
Definition: ts_type.h:93
LexemeHashKey key
Definition: ts_typanalyze.c:35
bool stats_valid
Definition: vacuum.h:144
float4 stanullfrac
Definition: vacuum.h:145
int16 stakind[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:148
MemoryContext anl_context
Definition: vacuum.h:130
Oid statypid[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:162
Oid staop[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:149
Oid stacoll[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:150
char statypalign[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:165
float4 * stanumbers[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:152
int attstattarget
Definition: vacuum.h:125
int32 stawidth
Definition: vacuum.h:146
bool statypbyval[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:164
int16 statyplen[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:163
int numvalues[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:153
Datum * stavalues[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:154
float4 stadistinct
Definition: vacuum.h:147
int numnumbers[STATISTIC_NUM_SLOTS]
Definition: vacuum.h:151
uint32 pos
Definition: ts_type.h:46
uint32 len
Definition: ts_type.h:45
static int trackitem_compare_frequencies_desc(const void *e1, const void *e2, void *arg)
static void prune_lexemes_hashtable(HTAB *lexemes_tab, int b_current)
static int trackitem_compare_lexemes(const void *e1, const void *e2, void *arg)
static int lexeme_match(const void *key1, const void *key2, Size keysize)
static uint32 lexeme_hash(const void *key, Size keysize)
static TSVector DatumGetTSVector(Datum X)
Definition: ts_type.h:118
static Datum TSVectorGetDatum(const TSVectorData *X)
Definition: ts_type.h:130
void vacuum_delay_point(bool is_analyze)
Definition: vacuum.c:2424
static Size VARSIZE_ANY(const void *PTR)
Definition: varatt.h:460
text * cstring_to_text_with_len(const char *s, int len)
Definition: varlena.c:193

References VacAttrStats::anl_context, ARRPTR, Assert(), VacAttrStats::attstattarget, cstring_to_text_with_len(), CurrentMemoryContext, DatumGetPointer(), DatumGetTSVector(), DEBUG3, TrackItem::delta, elog, HASHCTL::entrysize, TrackItem::frequency, HASHCTL::hash, HASH_COMPARE, HASH_CONTEXT, hash_create(), HASH_ELEM, HASH_ENTER, HASH_FUNCTION, hash_get_num_entries(), hash_key(), hash_search(), hash_seq_init(), hash_seq_search(), HASHCTL::hcxt, i, j, TrackItem::key, HASHCTL::keysize, WordEntry::len, LexemeHashKey::length, LexemeHashKey::lexeme, lexeme_hash(), lexeme_match(), HASHCTL::match, Max, MemoryContextSwitchTo(), VacAttrStats::numnumbers, VacAttrStats::numvalues, palloc(), pfree(), PointerGetDatum(), WordEntry::pos, prune_lexemes_hashtable(), qsort_interruptible(), TSVectorData::size, VacAttrStats::stacoll, VacAttrStats::stadistinct, VacAttrStats::stakind, VacAttrStats::stanullfrac, VacAttrStats::stanumbers, VacAttrStats::staop, VacAttrStats::stats_valid, VacAttrStats::statypalign, VacAttrStats::statypbyval, VacAttrStats::statypid, VacAttrStats::statyplen, VacAttrStats::stavalues, VacAttrStats::stawidth, STRPTR, trackitem_compare_frequencies_desc(), trackitem_compare_lexemes(), TSVectorGetDatum(), vacuum_delay_point(), value, and VARSIZE_ANY().

Referenced by ts_typanalyze().

◆ lexeme_compare()

static int lexeme_compare ( const void *  key1,
const void *  key2 
)
static

Definition at line 517 of file ts_typanalyze.c.

518{
519 const LexemeHashKey *d1 = (const LexemeHashKey *) key1;
520 const LexemeHashKey *d2 = (const LexemeHashKey *) key2;
521
522 /* First, compare by length */
523 if (d1->length > d2->length)
524 return 1;
525 else if (d1->length < d2->length)
526 return -1;
527 /* Lengths are equal, do a byte-by-byte comparison */
528 return strncmp(d1->lexeme, d2->lexeme, d1->length);
529}

References LexemeHashKey::length, and LexemeHashKey::lexeme.

Referenced by lexeme_match(), and trackitem_compare_lexemes().

◆ lexeme_hash()

static uint32 lexeme_hash ( const void *  key,
Size  keysize 
)
static

Definition at line 495 of file ts_typanalyze.c.

496{
497 const LexemeHashKey *l = (const LexemeHashKey *) key;
498
499 return DatumGetUInt32(hash_any((const unsigned char *) l->lexeme,
500 l->length));
501}
static Datum hash_any(const unsigned char *k, int keylen)
Definition: hashfn.h:31
static uint32 DatumGetUInt32(Datum X)
Definition: postgres.h:232

References DatumGetUInt32(), hash_any(), sort-test::key, LexemeHashKey::length, and LexemeHashKey::lexeme.

Referenced by compute_tsvector_stats().

◆ lexeme_match()

static int lexeme_match ( const void *  key1,
const void *  key2,
Size  keysize 
)
static

Definition at line 507 of file ts_typanalyze.c.

508{
509 /* The keysize parameter is superfluous, the keys store their lengths */
510 return lexeme_compare(key1, key2);
511}
static int lexeme_compare(const void *key1, const void *key2)

References lexeme_compare().

Referenced by compute_tsvector_stats().

◆ prune_lexemes_hashtable()

static void prune_lexemes_hashtable ( HTAB lexemes_tab,
int  b_current 
)
static

Definition at line 470 of file ts_typanalyze.c.

471{
472 HASH_SEQ_STATUS scan_status;
473 TrackItem *item;
474
475 hash_seq_init(&scan_status, lexemes_tab);
476 while ((item = (TrackItem *) hash_seq_search(&scan_status)) != NULL)
477 {
478 if (item->frequency + item->delta <= b_current)
479 {
480 char *lexeme = item->key.lexeme;
481
482 if (hash_search(lexemes_tab, &item->key,
483 HASH_REMOVE, NULL) == NULL)
484 elog(ERROR, "hash table corrupted");
485 pfree(lexeme);
486 }
487 }
488}
#define ERROR
Definition: elog.h:39
@ HASH_REMOVE
Definition: hsearch.h:115

References TrackItem::delta, elog, ERROR, TrackItem::frequency, HASH_REMOVE, hash_search(), hash_seq_init(), hash_seq_search(), TrackItem::key, LexemeHashKey::lexeme, and pfree().

Referenced by compute_tsvector_stats().

◆ trackitem_compare_frequencies_desc()

static int trackitem_compare_frequencies_desc ( const void *  e1,
const void *  e2,
void *  arg 
)
static

Definition at line 535 of file ts_typanalyze.c.

536{
537 const TrackItem *const *t1 = (const TrackItem *const *) e1;
538 const TrackItem *const *t2 = (const TrackItem *const *) e2;
539
540 return (*t2)->frequency - (*t1)->frequency;
541}

References TrackItem::frequency.

Referenced by compute_tsvector_stats().

◆ trackitem_compare_lexemes()

static int trackitem_compare_lexemes ( const void *  e1,
const void *  e2,
void *  arg 
)
static

Definition at line 547 of file ts_typanalyze.c.

548{
549 const TrackItem *const *t1 = (const TrackItem *const *) e1;
550 const TrackItem *const *t2 = (const TrackItem *const *) e2;
551
552 return lexeme_compare(&(*t1)->key, &(*t2)->key);
553}

References lexeme_compare().

Referenced by compute_tsvector_stats().

◆ ts_typanalyze()

Datum ts_typanalyze ( PG_FUNCTION_ARGS  )

Definition at line 58 of file ts_typanalyze.c.

59{
61
62 /* If the attstattarget column is negative, use the default value */
63 if (stats->attstattarget < 0)
65
67 /* see comment about the choice of minrows in commands/analyze.c */
68 stats->minrows = 300 * stats->attstattarget;
69
70 PG_RETURN_BOOL(true);
71}
int default_statistics_target
Definition: analyze.c:70
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359
int minrows
Definition: vacuum.h:137
AnalyzeAttrComputeStatsFunc compute_stats
Definition: vacuum.h:136
static void compute_tsvector_stats(VacAttrStats *stats, AnalyzeAttrFetchFunc fetchfunc, int samplerows, double totalrows)

References VacAttrStats::attstattarget, VacAttrStats::compute_stats, compute_tsvector_stats(), default_statistics_target, VacAttrStats::minrows, PG_GETARG_POINTER, and PG_RETURN_BOOL.