LCOV - differential code coverage report
Current view: top level - src/backend/tsearch - ts_typanalyze.c (source / functions) Coverage Total Hit UNC UIC UBC GBC GIC GNC CBC EUB ECB DUB DCB
Current: Differential Code Coverage HEAD vs 15 Lines: 84.8 % 132 112 1 10 9 1 53 3 55 9 53 1 4
Current Date: 2023-04-08 17:13:01 Functions: 87.5 % 8 7 1 7 1 7
Baseline: 15 Line coverage date bins:
Baseline Date: 2023-04-08 15:09:40 (60,120] days: 0.0 % 1 0 1
Legend: Lines: hit not hit (180,240] days: 100.0 % 3 3 3
(240..) days: 85.2 % 128 109 10 9 1 53 55 9 52
Function coverage date bins:
(240..) days: 43.8 % 16 7 1 7 1 7

 Age         Owner                  TLA  Line data    Source code
                                  1                 : /*-------------------------------------------------------------------------
                                  2                 :  *
                                  3                 :  * ts_typanalyze.c
                                  4                 :  *    functions for gathering statistics from tsvector columns
                                  5                 :  *
                                  6                 :  * Portions Copyright (c) 1996-2023, PostgreSQL Global Development Group
                                  7                 :  *
                                  8                 :  *
                                  9                 :  * IDENTIFICATION
                                 10                 :  *    src/backend/tsearch/ts_typanalyze.c
                                 11                 :  *
                                 12                 :  *-------------------------------------------------------------------------
                                 13                 :  */
                                 14                 : #include "postgres.h"
                                 15                 : 
                                 16                 : #include "catalog/pg_collation.h"
                                 17                 : #include "catalog/pg_operator.h"
                                 18                 : #include "commands/vacuum.h"
                                 19                 : #include "common/hashfn.h"
                                 20                 : #include "tsearch/ts_type.h"
                                 21                 : #include "utils/builtins.h"
                                 22                 : #include "varatt.h"
                                 23                 : 
                                 24                 : 
                                 25                 : /* A hash key for lexemes */
                                 26                 : typedef struct
                                 27                 : {
                                 28                 :     char       *lexeme;         /* lexeme (not NULL terminated!) */
                                 29                 :     int         length;         /* its length in bytes */
                                 30                 : } LexemeHashKey;
                                 31                 : 
                                 32                 : /* A hash table entry for the Lossy Counting algorithm */
                                 33                 : typedef struct
                                 34                 : {
                                 35                 :     LexemeHashKey key;          /* This is 'e' from the LC algorithm. */
                                 36                 :     int         frequency;      /* This is 'f'. */
                                 37                 :     int         delta;          /* And this is 'delta'. */
                                 38                 : } TrackItem;
                                 39                 : 
                                 40                 : static void compute_tsvector_stats(VacAttrStats *stats,
                                 41                 :                                    AnalyzeAttrFetchFunc fetchfunc,
                                 42                 :                                    int samplerows,
                                 43                 :                                    double totalrows);
                                 44                 : static void prune_lexemes_hashtable(HTAB *lexemes_tab, int b_current);
                                 45                 : static uint32 lexeme_hash(const void *key, Size keysize);
                                 46                 : static int  lexeme_match(const void *key1, const void *key2, Size keysize);
                                 47                 : static int  lexeme_compare(const void *key1, const void *key2);
                                 48                 : static int  trackitem_compare_frequencies_desc(const void *e1, const void *e2,
                                 49                 :                                                void *arg);
                                 50                 : static int  trackitem_compare_lexemes(const void *e1, const void *e2,
                                 51                 :                                       void *arg);
                                 52                 : 
                                 53                 : 
                                 54                 : /*
                                 55                 :  *  ts_typanalyze -- a custom typanalyze function for tsvector columns
                                 56                 :  */
                                 57                 : Datum
 5382 tgl                        58 GIC           3 : ts_typanalyze(PG_FUNCTION_ARGS)
 5382 tgl                        59 ECB             : {
 5382 tgl                        60 GIC           3 :     VacAttrStats *stats = (VacAttrStats *) PG_GETARG_POINTER(0);
 5382 tgl                        61 CBC           3 :     Form_pg_attribute attr = stats->attr;
 5382 tgl                        62 ECB             : 
                                 63                 :     /* If the attstattarget column is negative, use the default value */
                                 64                 :     /* NB: it is okay to scribble on stats->attr since it's a copy */
 5382 tgl                        65 GIC           3 :     if (attr->attstattarget < 0)
 5382 tgl                        66 CBC           3 :         attr->attstattarget = default_statistics_target;
 5382 tgl                        67 ECB             : 
 5382 tgl                        68 GIC           3 :     stats->compute_stats = compute_tsvector_stats;
 5230 tgl                        69 ECB             :     /* see comment about the choice of minrows in commands/analyze.c */
 5382 tgl                        70 GIC           3 :     stats->minrows = 300 * attr->attstattarget;
 5382 tgl                        71 ECB             : 
 5382 tgl                        72 GIC           3 :     PG_RETURN_BOOL(true);
 5382 tgl                        73 ECB             : }
                                 74                 : 
                                 75                 : /*
                                 76                 :  *  compute_tsvector_stats() -- compute statistics for a tsvector column
                                 77                 :  *
                                 78                 :  *  This functions computes statistics that are useful for determining @@
                                 79                 :  *  operations' selectivity, along with the fraction of non-null rows and
                                 80                 :  *  average width.
                                 81                 :  *
                                 82                 :  *  Instead of finding the most common values, as we do for most datatypes,
                                 83                 :  *  we're looking for the most common lexemes. This is more useful, because
                                 84                 :  *  there most probably won't be any two rows with the same tsvector and thus
                                 85                 :  *  the notion of a MCV is a bit bogus with this datatype. With a list of the
                                 86                 :  *  most common lexemes we can do a better job at figuring out @@ selectivity.
                                 87                 :  *
                                 88                 :  *  For the same reasons we assume that tsvector columns are unique when
                                 89                 :  *  determining the number of distinct values.
                                 90                 :  *
                                 91                 :  *  The algorithm used is Lossy Counting, as proposed in the paper "Approximate
                                 92                 :  *  frequency counts over data streams" by G. S. Manku and R. Motwani, in
                                 93                 :  *  Proceedings of the 28th International Conference on Very Large Data Bases,
                                 94                 :  *  Hong Kong, China, August 2002, section 4.2. The paper is available at
                                 95                 :  *  http://www.vldb.org/conf/2002/S10P03.pdf
                                 96                 :  *
                                 97                 :  *  The Lossy Counting (aka LC) algorithm goes like this:
                                 98                 :  *  Let s be the threshold frequency for an item (the minimum frequency we
                                 99                 :  *  are interested in) and epsilon the error margin for the frequency. Let D
                                100                 :  *  be a set of triples (e, f, delta), where e is an element value, f is that
                                101                 :  *  element's frequency (actually, its current occurrence count) and delta is
                                102                 :  *  the maximum error in f. We start with D empty and process the elements in
                                103                 :  *  batches of size w. (The batch size is also known as "bucket size" and is
                                104                 :  *  equal to 1/epsilon.) Let the current batch number be b_current, starting
                                105                 :  *  with 1. For each element e we either increment its f count, if it's
                                106                 :  *  already in D, or insert a new triple into D with values (e, 1, b_current
                                107                 :  *  - 1). After processing each batch we prune D, by removing from it all
                                108                 :  *  elements with f + delta <= b_current.  After the algorithm finishes we
                                109                 :  *  suppress all elements from D that do not satisfy f >= (s - epsilon) * N,
                                110                 :  *  where N is the total number of elements in the input.  We emit the
                                111                 :  *  remaining elements with estimated frequency f/N.  The LC paper proves
                                112                 :  *  that this algorithm finds all elements with true frequency at least s,
                                113                 :  *  and that no frequency is overestimated or is underestimated by more than
                                114                 :  *  epsilon.  Furthermore, given reasonable assumptions about the input
                                115                 :  *  distribution, the required table size is no more than about 7 times w.
                                116                 :  *
                                117                 :  *  We set s to be the estimated frequency of the K'th word in a natural
                                118                 :  *  language's frequency table, where K is the target number of entries in
                                119                 :  *  the MCELEM array plus an arbitrary constant, meant to reflect the fact
                                120                 :  *  that the most common words in any language would usually be stopwords
                                121                 :  *  so we will not actually see them in the input.  We assume that the
                                122                 :  *  distribution of word frequencies (including the stopwords) follows Zipf's
                                123                 :  *  law with an exponent of 1.
                                124                 :  *
                                125                 :  *  Assuming Zipfian distribution, the frequency of the K'th word is equal
                                126                 :  *  to 1/(K * H(W)) where H(n) is 1/2 + 1/3 + ... + 1/n and W is the number of
                                127                 :  *  words in the language.  Putting W as one million, we get roughly 0.07/K.
                                128                 :  *  Assuming top 10 words are stopwords gives s = 0.07/(K + 10).  We set
                                129                 :  *  epsilon = s/10, which gives bucket width w = (K + 10)/0.007 and
                                130                 :  *  maximum expected hashtable size of about 1000 * (K + 10).
                                131                 :  *
                                132                 :  *  Note: in the above discussion, s, epsilon, and f/N are in terms of a
                                133                 :  *  lexeme's frequency as a fraction of all lexemes seen in the input.
                                134                 :  *  However, what we actually want to store in the finished pg_statistic
                                135                 :  *  entry is each lexeme's frequency as a fraction of all rows that it occurs
                                136                 :  *  in.  Assuming that the input tsvectors are correctly constructed, no
                                137                 :  *  lexeme occurs more than once per tsvector, so the final count f is a
                                138                 :  *  correct estimate of the number of input tsvectors it occurs in, and we
                                139                 :  *  need only change the divisor from N to nonnull_cnt to get the number we
                                140                 :  *  want.
                                141                 :  */
                                142                 : static void
 5382 tgl                       143 GIC           3 : compute_tsvector_stats(VacAttrStats *stats,
 5382 tgl                       144 ECB             :                        AnalyzeAttrFetchFunc fetchfunc,
                                145                 :                        int samplerows,
                                146                 :                        double totalrows)
                                147                 : {
                                148                 :     int         num_mcelem;
 5050 bruce                     149 GIC           3 :     int         null_cnt = 0;
 5050 bruce                     150 CBC           3 :     double      total_width = 0;
 5050 bruce                     151 ECB             : 
                                152                 :     /* This is D from the LC algorithm. */
                                153                 :     HTAB       *lexemes_tab;
                                154                 :     HASHCTL     hash_ctl;
                                155                 :     HASH_SEQ_STATUS scan_status;
                                156                 : 
                                157                 :     /* This is the current bucket number from the LC algorithm */
                                158                 :     int         b_current;
                                159                 : 
                                160                 :     /* This is 'w' from the LC algorithm */
                                161                 :     int         bucket_width;
                                162                 :     int         vector_no,
                                163                 :                 lexeme_no;
                                164                 :     LexemeHashKey hash_key;
                                165                 : 
                                166                 :     /*
                                167                 :      * We want statistics_target * 10 lexemes in the MCELEM array.  This
                                168                 :      * multiplier is pretty arbitrary, but is meant to reflect the fact that
                                169                 :      * the number of individual lexeme values tracked in pg_statistic ought to
                                170                 :      * be more than the number of values for a simple scalar column.
                                171                 :      */
 5228 tgl                       172 CBC           3 :     num_mcelem = stats->attr->attstattarget * 10;
                                173                 : 
                                174                 :     /*
                                175                 :      * We set bucket width equal to (num_mcelem + 10) / 0.007 as per the
                                176                 :      * comment above.
                                177                 :      */
 4697                           178               3 :     bucket_width = (num_mcelem + 10) * 1000 / 7;
                                179                 : 
                                180                 :     /*
                                181                 :      * Create the hashtable. It will be in local memory, so we don't need to
                                182                 :      * worry about overflowing the initial size. Also we don't need to pay any
                                183                 :      * attention to locking and memory management.
                                184                 :      */
 5382                           185               3 :     hash_ctl.keysize = sizeof(LexemeHashKey);
                                186               3 :     hash_ctl.entrysize = sizeof(TrackItem);
                                187               3 :     hash_ctl.hash = lexeme_hash;
                                188               3 :     hash_ctl.match = lexeme_match;
                                189               3 :     hash_ctl.hcxt = CurrentMemoryContext;
                                190               3 :     lexemes_tab = hash_create("Analyzed lexemes table",
                                191                 :                               num_mcelem,
                                192                 :                               &hash_ctl,
                                193                 :                               HASH_ELEM | HASH_FUNCTION | HASH_COMPARE | HASH_CONTEXT);
                                194                 : 
                                195                 :     /* Initialize counters. */
                                196               3 :     b_current = 1;
 4697                           197               3 :     lexeme_no = 0;
                                198                 : 
                                199                 :     /* Loop over the tsvectors. */
 5382                           200            1527 :     for (vector_no = 0; vector_no < samplerows; vector_no++)
                                201                 :     {
                                202                 :         Datum       value;
                                203                 :         bool        isnull;
                                204                 :         TSVector    vector;
                                205                 :         WordEntry  *curentryptr;
                                206                 :         char       *lexemesptr;
                                207                 :         int         j;
                                208                 : 
                                209            1524 :         vacuum_delay_point();
                                210                 : 
                                211            1524 :         value = fetchfunc(stats, vector_no, &isnull);
                                212                 : 
                                213                 :         /*
                                214                 :          * Check for null/nonnull.
                                215                 :          */
                                216            1524 :         if (isnull)
                                217                 :         {
 5382 tgl                       218 UBC           0 :             null_cnt++;
                                219               0 :             continue;
                                220                 :         }
                                221                 : 
                                222                 :         /*
                                223                 :          * Add up widths for average-width calculation.  Since it's a
                                224                 :          * tsvector, we know it's varlena.  As in the regular
                                225                 :          * compute_minimal_stats function, we use the toasted width for this
                                226                 :          * calculation.
                                227                 :          */
 5382 tgl                       228 CBC        1524 :         total_width += VARSIZE_ANY(DatumGetPointer(value));
                                229                 : 
                                230                 :         /*
                                231                 :          * Now detoast the tsvector if needed.
                                232                 :          */
                                233            1524 :         vector = DatumGetTSVector(value);
                                234                 : 
                                235                 :         /*
                                236                 :          * We loop through the lexemes in the tsvector and add them to our
                                237                 :          * tracking hashtable.
                                238                 :          */
                                239            1524 :         lexemesptr = STRPTR(vector);
                                240            1524 :         curentryptr = ARRPTR(vector);
                                241           87924 :         for (j = 0; j < vector->size; j++)
                                242                 :         {
                                243                 :             TrackItem  *item;
                                244                 :             bool        found;
                                245                 : 
                                246                 :             /*
                                247                 :              * Construct a hash key.  The key points into the (detoasted)
                                248                 :              * tsvector value at this point, but if a new entry is created, we
                                249                 :              * make a copy of it.  This way we can free the tsvector value
                                250                 :              * once we've processed all its lexemes.
                                251                 :              */
 5382 tgl                       252 GIC       86400 :             hash_key.lexeme = lexemesptr + curentryptr->pos;
 5382 tgl                       253 CBC       86400 :             hash_key.length = curentryptr->len;
 5382 tgl                       254 ECB             : 
                                255                 :             /* Lookup current lexeme in hashtable, adding it if new */
 5382 tgl                       256 GIC       86400 :             item = (TrackItem *) hash_search(lexemes_tab,
                                257                 :                                              &hash_key,
                                258                 :                                              HASH_ENTER, &found);
                                259                 : 
                                260           86400 :             if (found)
 5382 tgl                       261 ECB             :             {
                                262                 :                 /* The lexeme is already on the tracking list */
 5382 tgl                       263 GIC       82977 :                 item->frequency++;
 5382 tgl                       264 ECB             :             }
                                265                 :             else
                                266                 :             {
                                267                 :                 /* Initialize new tracking list element */
 5382 tgl                       268 GIC        3423 :                 item->frequency = 1;
 5382 tgl                       269 CBC        3423 :                 item->delta = b_current - 1;
 2097 heikki.linnakangas        270 ECB             : 
 2097 heikki.linnakangas        271 GIC        3423 :                 item->key.lexeme = palloc(hash_key.length);
 2097 heikki.linnakangas        272 CBC        3423 :                 memcpy(item->key.lexeme, hash_key.lexeme, hash_key.length);
 5382 tgl                       273 ECB             :             }
                                274                 : 
                                275                 :             /* lexeme_no is the number of elements processed (ie N) */
 4697 tgl                       276 GIC       86400 :             lexeme_no++;
 4697 tgl                       277 ECB             : 
                                278                 :             /* We prune the D structure after processing each bucket */
 5382 tgl                       279 GIC       86400 :             if (lexeme_no % bucket_width == 0)
 5382 tgl                       280 ECB             :             {
 5382 tgl                       281 UIC           0 :                 prune_lexemes_hashtable(lexemes_tab, b_current);
 5382 tgl                       282 UBC           0 :                 b_current++;
 5382 tgl                       283 EUB             :             }
                                284                 : 
                                285                 :             /* Advance to the next WordEntry in the tsvector */
 5382 tgl                       286 GIC       86400 :             curentryptr++;
 5382 tgl                       287 ECB             :         }
                                288                 : 
                                289                 :         /* If the vector was toasted, free the detoasted copy. */
 2097 heikki.linnakangas        290 GIC        1524 :         if (TSVectorGetDatum(vector) != value)
 2097 heikki.linnakangas        291 CBC         192 :             pfree(vector);
 5382 tgl                       292 ECB             :     }
                                293                 : 
                                294                 :     /* We can only compute real stats if we found some non-null values. */
 5382 tgl                       295 GIC           3 :     if (null_cnt < samplerows)
 5382 tgl                       296 ECB             :     {
 5382 tgl                       297 GIC           3 :         int         nonnull_cnt = samplerows - null_cnt;
 5382 tgl                       298 ECB             :         int         i;
                                299                 :         TrackItem **sort_table;
                                300                 :         TrackItem  *item;
                                301                 :         int         track_len;
                                302                 :         int         cutoff_freq;
                                303                 :         int         minfreq,
                                304                 :                     maxfreq;
                                305                 : 
 5382 tgl                       306 GIC           3 :         stats->stats_valid = true;
                                307                 :         /* Do the simple null-frac and average width stats */
 5382 tgl                       308 CBC           3 :         stats->stanullfrac = (double) null_cnt / (double) samplerows;
 5382 tgl                       309 GIC           3 :         stats->stawidth = total_width / (double) nonnull_cnt;
 5382 tgl                       310 ECB             : 
                                311                 :         /* Assume it's a unique column (see notes above) */
 2436 tgl                       312 GIC           3 :         stats->stadistinct = -1.0 * (1.0 - stats->stanullfrac);
                                313                 : 
 5382 tgl                       314 ECB             :         /*
                                315                 :          * Construct an array of the interesting hashtable items, that is,
                                316                 :          * those meeting the cutoff frequency (s - epsilon)*N.  Also identify
                                317                 :          * the minimum and maximum frequencies among these items.
                                318                 :          *
                                319                 :          * Since epsilon = s/10 and bucket_width = 1/epsilon, the cutoff
                                320                 :          * frequency is 9*N / bucket_width.
                                321                 :          */
 4697 tgl                       322 GIC           3 :         cutoff_freq = 9 * lexeme_no / bucket_width;
                                323                 : 
 4660 bruce                     324 CBC           3 :         i = hash_get_num_entries(lexemes_tab);  /* surely enough space */
 4697 tgl                       325 GIC           3 :         sort_table = (TrackItem **) palloc(sizeof(TrackItem *) * i);
 5382 tgl                       326 ECB             : 
 5382 tgl                       327 CBC           3 :         hash_seq_init(&scan_status, lexemes_tab);
 4697 tgl                       328 GIC           3 :         track_len = 0;
 4697 tgl                       329 CBC           3 :         minfreq = lexeme_no;
                                330               3 :         maxfreq = 0;
 5382                           331            3429 :         while ((item = (TrackItem *) hash_seq_search(&scan_status)) != NULL)
 5382 tgl                       332 ECB             :         {
 4697 tgl                       333 CBC        3423 :             if (item->frequency > cutoff_freq)
                                334                 :             {
                                335            3159 :                 sort_table[track_len++] = item;
 4697 tgl                       336 GIC        3159 :                 minfreq = Min(minfreq, item->frequency);
 4697 tgl                       337 CBC        3159 :                 maxfreq = Max(maxfreq, item->frequency);
 4697 tgl                       338 ECB             :             }
 5382                           339                 :         }
 4697 tgl                       340 GIC           3 :         Assert(track_len <= i);
                                341                 : 
 4697 tgl                       342 ECB             :         /* emit some statistics for debug purposes */
 4697 tgl                       343 GIC           3 :         elog(DEBUG3, "tsvector_stats: target # mces = %d, bucket width = %d, "
                                344                 :              "# lexemes = %d, hashtable size = %d, usable entries = %d",
 4697 tgl                       345 ECB             :              num_mcelem, bucket_width, lexeme_no, i, track_len);
                                346                 : 
                                347                 :         /*
                                348                 :          * If we obtained more lexemes than we really want, get rid of those
                                349                 :          * with least frequencies.  The easiest way is to qsort the array into
                                350                 :          * descending frequency order and truncate the array.
                                351                 :          */
 4697 tgl                       352 GIC           3 :         if (num_mcelem < track_len)
                                353                 :         {
  271 tgl                       354 CBC           3 :             qsort_interruptible(sort_table, track_len, sizeof(TrackItem *),
                                355                 :                                 trackitem_compare_frequencies_desc, NULL);
 4697 tgl                       356 ECB             :             /* reset minfreq to the smallest frequency we're keeping */
 4697 tgl                       357 GIC           3 :             minfreq = sort_table[num_mcelem - 1]->frequency;
                                358                 :         }
 4697 tgl                       359 ECB             :         else
 5382 tgl                       360 UIC           0 :             num_mcelem = track_len;
                                361                 : 
 5382 tgl                       362 EUB             :         /* Generate MCELEM slot entry */
 5382 tgl                       363 GIC           3 :         if (num_mcelem > 0)
                                364                 :         {
 5050 bruce                     365 ECB             :             MemoryContext old_context;
                                366                 :             Datum      *mcelem_values;
                                367                 :             float4     *mcelem_freqs;
                                368                 : 
                                369                 :             /*
                                370                 :              * We want to store statistics sorted on the lexeme value using
                                371                 :              * first length, then byte-for-byte comparison. The reason for
                                372                 :              * doing length comparison first is that we don't care about the
                                373                 :              * ordering so long as it's consistent, and comparing lengths
                                374                 :              * first gives us a chance to avoid a strncmp() call.
                                375                 :              *
                                376                 :              * This is different from what we do with scalar statistics --
                                377                 :              * they get sorted on frequencies. The rationale is that we
                                378                 :              * usually search through most common elements looking for a
                                379                 :              * specific value, so we can grab its frequency.  When values are
                                380                 :              * presorted we can employ binary search for that.  See
                                381                 :              * ts_selfuncs.c for a real usage scenario.
                                382                 :              */
  271 tgl                       383 GIC           3 :             qsort_interruptible(sort_table, num_mcelem, sizeof(TrackItem *),
                                384                 :                                 trackitem_compare_lexemes, NULL);
 5246 heikki.linnakangas        385 ECB             : 
                                386                 :             /* Must copy the target values into anl_context */
 5382 tgl                       387 GIC           3 :             old_context = MemoryContextSwitchTo(stats->anl_context);
                                388                 : 
 5315 tgl                       389 ECB             :             /*
                                390                 :              * We sorted statistics on the lexeme value, but we want to be
                                391                 :              * able to find out the minimal and maximal frequency without
                                392                 :              * going through all the values.  We keep those two extra
                                393                 :              * frequencies in two extra cells in mcelem_freqs.
                                394                 :              *
                                395                 :              * (Note: the MCELEM statistics slot definition allows for a third
                                396                 :              * extra number containing the frequency of nulls, but we don't
                                397                 :              * create that for a tsvector column, since null elements aren't
                                398                 :              * possible.)
                                399                 :              */
 5382 tgl                       400 GIC           3 :             mcelem_values = (Datum *) palloc(num_mcelem * sizeof(Datum));
 5315                           401               3 :             mcelem_freqs = (float4 *) palloc((num_mcelem + 2) * sizeof(float4));
 5382 tgl                       402 ECB             : 
 4697                           403                 :             /*
                                404                 :              * See comments above about use of nonnull_cnt as the divisor for
                                405                 :              * the final frequency estimates.
                                406                 :              */
 5382 tgl                       407 GIC        3003 :             for (i = 0; i < num_mcelem; i++)
                                408                 :             {
  186 drowley                   409 GNC        3000 :                 TrackItem  *titem = sort_table[i];
                                410                 : 
 5382 tgl                       411 CBC        6000 :                 mcelem_values[i] =
  186 drowley                   412 GNC        3000 :                     PointerGetDatum(cstring_to_text_with_len(titem->key.lexeme,
                                413                 :                                                              titem->key.length));
                                414            3000 :                 mcelem_freqs[i] = (double) titem->frequency / (double) nonnull_cnt;
                                415                 :             }
 5315 tgl                       416 CBC           3 :             mcelem_freqs[i++] = (double) minfreq / (double) nonnull_cnt;
 5315 tgl                       417 GIC           3 :             mcelem_freqs[i] = (double) maxfreq / (double) nonnull_cnt;
 5382 tgl                       418 CBC           3 :             MemoryContextSwitchTo(old_context);
 5382 tgl                       419 ECB             : 
 5382 tgl                       420 CBC           3 :             stats->stakind[0] = STATISTIC_KIND_MCELEM;
 5382 tgl                       421 GIC           3 :             stats->staop[0] = TextEqualOperator;
 1577 tgl                       422 CBC           3 :             stats->stacoll[0] = DEFAULT_COLLATION_OID;
 5382                           423               3 :             stats->stanumbers[0] = mcelem_freqs;
 5315 tgl                       424 ECB             :             /* See above comment about two extra frequency fields */
 5315 tgl                       425 CBC           3 :             stats->numnumbers[0] = num_mcelem + 2;
 5382 tgl                       426 GIC           3 :             stats->stavalues[0] = mcelem_values;
 5382 tgl                       427 CBC           3 :             stats->numvalues[0] = num_mcelem;
 5382 tgl                       428 ECB             :             /* We are storing text values */
 5382 tgl                       429 CBC           3 :             stats->statypid[0] = TEXTOID;
 5050 bruce                     430 GIC           3 :             stats->statyplen[0] = -1;    /* typlen, -1 for varlena */
 5382 tgl                       431 CBC           3 :             stats->statypbyval[0] = false;
                                432               3 :             stats->statypalign[0] = 'i';
 5382 tgl                       433 ECB             :         }
                                434                 :     }
                                435                 :     else
                                436                 :     {
                                437                 :         /* We found only nulls; assume the column is entirely null */
 5382 tgl                       438 UIC           0 :         stats->stats_valid = true;
                                439               0 :         stats->stanullfrac = 1.0;
 5050 bruce                     440 UBC           0 :         stats->stawidth = 0; /* "unknown" */
 2118 tgl                       441               0 :         stats->stadistinct = 0.0;    /* "unknown" */
 5382 tgl                       442 EUB             :     }
                                443                 : 
                                444                 :     /*
                                445                 :      * We don't need to bother cleaning up any of our temporary palloc's. The
                                446                 :      * hashtable should also go away, as it used a child memory context.
                                447                 :      */
 5382 tgl                       448 GIC           3 : }
                                449                 : 
 5382 tgl                       450 ECB             : /*
                                451                 :  *  A function to prune the D structure from the Lossy Counting algorithm.
                                452                 :  *  Consult compute_tsvector_stats() for wider explanation.
                                453                 :  */
                                454                 : static void
 5382 tgl                       455 UIC           0 : prune_lexemes_hashtable(HTAB *lexemes_tab, int b_current)
                                456                 : {
 5050 bruce                     457 EUB             :     HASH_SEQ_STATUS scan_status;
                                458                 :     TrackItem  *item;
                                459                 : 
 5382 tgl                       460 UIC           0 :     hash_seq_init(&scan_status, lexemes_tab);
                                461               0 :     while ((item = (TrackItem *) hash_seq_search(&scan_status)) != NULL)
 5382 tgl                       462 EUB             :     {
 5382 tgl                       463 UBC           0 :         if (item->frequency + item->delta <= b_current)
                                464                 :         {
 2097 heikki.linnakangas        465               0 :             char       *lexeme = item->key.lexeme;
                                466                 : 
   62 peter                     467 UNC           0 :             if (hash_search(lexemes_tab, &item->key,
                                468                 :                             HASH_REMOVE, NULL) == NULL)
 5382 tgl                       469 UBC           0 :                 elog(ERROR, "hash table corrupted");
 2097 heikki.linnakangas        470 UIC           0 :             pfree(lexeme);
 5382 tgl                       471 EUB             :         }
                                472                 :     }
 5382 tgl                       473 UIC           0 : }
                                474                 : 
 5382 tgl                       475 EUB             : /*
                                476                 :  * Hash functions for lexemes. They are strings, but not NULL terminated,
                                477                 :  * so we need a special hash function.
                                478                 :  */
                                479                 : static uint32
 5382 tgl                       480 GIC       86400 : lexeme_hash(const void *key, Size keysize)
                                481                 : {
 5382 tgl                       482 CBC       86400 :     const LexemeHashKey *l = (const LexemeHashKey *) key;
                                483                 : 
                                484           86400 :     return DatumGetUInt32(hash_any((const unsigned char *) l->lexeme,
 5382 tgl                       485 GIC       86400 :                                    l->length));
 5382 tgl                       486 ECB             : }
                                487                 : 
                                488                 : /*
                                489                 :  *  Matching function for lexemes, to be used in hashtable lookups.
                                490                 :  */
                                491                 : static int
 5382 tgl                       492 GIC       82977 : lexeme_match(const void *key1, const void *key2, Size keysize)
                                493                 : {
 5315 tgl                       494 ECB             :     /* The keysize parameter is superfluous, the keys store their lengths */
 5315 tgl                       495 GIC       82977 :     return lexeme_compare(key1, key2);
                                496                 : }
 5382 tgl                       497 ECB             : 
                                498                 : /*
                                499                 :  *  Comparison function for lexemes.
                                500                 :  */
                                501                 : static int
 5315 tgl                       502 GIC      113514 : lexeme_compare(const void *key1, const void *key2)
                                503                 : {
 5050 bruce                     504 CBC      113514 :     const LexemeHashKey *d1 = (const LexemeHashKey *) key1;
 5050 bruce                     505 GIC      113514 :     const LexemeHashKey *d2 = (const LexemeHashKey *) key2;
 5315 tgl                       506 ECB             : 
                                507                 :     /* First, compare by length */
 5315 tgl                       508 GIC      113514 :     if (d1->length > d2->length)
 5382 tgl                       509 UIC           0 :         return 1;
 5315 tgl                       510 CBC      113514 :     else if (d1->length < d2->length)
 5315 tgl                       511 UBC           0 :         return -1;
 5315 tgl                       512 ECB             :     /* Lengths are equal, do a byte-by-byte comparison */
 5315 tgl                       513 GBC      113514 :     return strncmp(d1->lexeme, d2->lexeme, d1->length);
                                514                 : }
 5382 tgl                       515 ECB             : 
                                516                 : /*
                                517                 :  *  Comparator for sorting TrackItems on frequencies (descending sort)
                                518                 :  */
                                519                 : static int
  271 tgl                       520 GIC       19230 : trackitem_compare_frequencies_desc(const void *e1, const void *e2, void *arg)
                                521                 : {
 2118 tgl                       522 CBC       19230 :     const TrackItem *const *t1 = (const TrackItem *const *) e1;
 2118 tgl                       523 GIC       19230 :     const TrackItem *const *t2 = (const TrackItem *const *) e2;
 5382 tgl                       524 ECB             : 
 5382 tgl                       525 CBC       19230 :     return (*t2)->frequency - (*t1)->frequency;
                                526                 : }
 5315 tgl                       527 ECB             : 
                                528                 : /*
                                529                 :  *  Comparator for sorting TrackItems on lexemes
                                530                 :  */
                                531                 : static int
  271 tgl                       532 GIC       30537 : trackitem_compare_lexemes(const void *e1, const void *e2, void *arg)
                                533                 : {
 2118 tgl                       534 CBC       30537 :     const TrackItem *const *t1 = (const TrackItem *const *) e1;
 2118 tgl                       535 GIC       30537 :     const TrackItem *const *t2 = (const TrackItem *const *) e2;
 5315 tgl                       536 ECB             : 
 5315 tgl                       537 CBC       30537 :     return lexeme_compare(&(*t1)->key, &(*t2)->key);
                                538                 : }
        

Generated by: LCOV version v1.16-55-g56c0a2a