LCOV - code coverage report
Current view: top level - contrib/btree_gist - btree_int2.c (source / functions) Hit Total Coverage
Test: PostgreSQL 18devel Lines: 78 92 84.8 %
Date: 2025-04-24 12:15:10 Functions: 26 28 92.9 %
Legend: Lines: hit not hit

          Line data    Source code
       1             : /*
       2             :  * contrib/btree_gist/btree_int2.c
       3             :  */
       4             : #include "postgres.h"
       5             : 
       6             : #include "btree_gist.h"
       7             : #include "btree_utils_num.h"
       8             : #include "common/int.h"
       9             : #include "utils/sortsupport.h"
      10             : 
      11             : typedef struct int16key
      12             : {
      13             :     int16       lower;
      14             :     int16       upper;
      15             : } int16KEY;
      16             : 
      17             : /* GiST support functions */
      18           4 : PG_FUNCTION_INFO_V1(gbt_int2_compress);
      19           4 : PG_FUNCTION_INFO_V1(gbt_int2_fetch);
      20           4 : PG_FUNCTION_INFO_V1(gbt_int2_union);
      21           4 : PG_FUNCTION_INFO_V1(gbt_int2_picksplit);
      22           4 : PG_FUNCTION_INFO_V1(gbt_int2_consistent);
      23           4 : PG_FUNCTION_INFO_V1(gbt_int2_distance);
      24           4 : PG_FUNCTION_INFO_V1(gbt_int2_penalty);
      25           4 : PG_FUNCTION_INFO_V1(gbt_int2_same);
      26           4 : PG_FUNCTION_INFO_V1(gbt_int2_sortsupport);
      27             : 
      28             : 
      29             : static bool
      30        3270 : gbt_int2gt(const void *a, const void *b, FmgrInfo *flinfo)
      31             : {
      32        3270 :     return (*((const int16 *) a) > *((const int16 *) b));
      33             : }
      34             : static bool
      35        1152 : gbt_int2ge(const void *a, const void *b, FmgrInfo *flinfo)
      36             : {
      37        1152 :     return (*((const int16 *) a) >= *((const int16 *) b));
      38             : }
      39             : static bool
      40         546 : gbt_int2eq(const void *a, const void *b, FmgrInfo *flinfo)
      41             : {
      42         546 :     return (*((const int16 *) a) == *((const int16 *) b));
      43             : }
      44             : static bool
      45        1112 : gbt_int2le(const void *a, const void *b, FmgrInfo *flinfo)
      46             : {
      47        1112 :     return (*((const int16 *) a) <= *((const int16 *) b));
      48             : }
      49             : static bool
      50        2724 : gbt_int2lt(const void *a, const void *b, FmgrInfo *flinfo)
      51             : {
      52        2724 :     return (*((const int16 *) a) < *((const int16 *) b));
      53             : }
      54             : 
      55             : static int
      56        1090 : gbt_int2key_cmp(const void *a, const void *b, FmgrInfo *flinfo)
      57             : {
      58        1090 :     int16KEY   *ia = (int16KEY *) (((const Nsrt *) a)->t);
      59        1090 :     int16KEY   *ib = (int16KEY *) (((const Nsrt *) b)->t);
      60             : 
      61        1090 :     if (ia->lower == ib->lower)
      62             :     {
      63          28 :         if (ia->upper == ib->upper)
      64          28 :             return 0;
      65             : 
      66           0 :         return (ia->upper > ib->upper) ? 1 : -1;
      67             :     }
      68             : 
      69        1062 :     return (ia->lower > ib->lower) ? 1 : -1;
      70             : }
      71             : 
      72             : static float8
      73         548 : gbt_int2_dist(const void *a, const void *b, FmgrInfo *flinfo)
      74             : {
      75         548 :     return GET_FLOAT_DISTANCE(int16, a, b);
      76             : }
      77             : 
      78             : 
      79             : static const gbtree_ninfo tinfo =
      80             : {
      81             :     gbt_t_int2,
      82             :     sizeof(int16),
      83             :     4,                          /* sizeof(gbtreekey4) */
      84             :     gbt_int2gt,
      85             :     gbt_int2ge,
      86             :     gbt_int2eq,
      87             :     gbt_int2le,
      88             :     gbt_int2lt,
      89             :     gbt_int2key_cmp,
      90             :     gbt_int2_dist
      91             : };
      92             : 
      93             : 
      94           4 : PG_FUNCTION_INFO_V1(int2_dist);
      95             : Datum
      96        1098 : int2_dist(PG_FUNCTION_ARGS)
      97             : {
      98        1098 :     int16       a = PG_GETARG_INT16(0);
      99        1098 :     int16       b = PG_GETARG_INT16(1);
     100             :     int16       r;
     101             :     int16       ra;
     102             : 
     103        1098 :     if (pg_sub_s16_overflow(a, b, &r) ||
     104        1098 :         r == PG_INT16_MIN)
     105           0 :         ereport(ERROR,
     106             :                 (errcode(ERRCODE_NUMERIC_VALUE_OUT_OF_RANGE),
     107             :                  errmsg("smallint out of range")));
     108             : 
     109        1098 :     ra = abs(r);
     110             : 
     111        1098 :     PG_RETURN_INT16(ra);
     112             : }
     113             : 
     114             : 
     115             : /**************************************************
     116             :  * GiST support functions
     117             :  **************************************************/
     118             : 
     119             : Datum
     120        1096 : gbt_int2_compress(PG_FUNCTION_ARGS)
     121             : {
     122        1096 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
     123             : 
     124        1096 :     PG_RETURN_POINTER(gbt_num_compress(entry, &tinfo));
     125             : }
     126             : 
     127             : Datum
     128         546 : gbt_int2_fetch(PG_FUNCTION_ARGS)
     129             : {
     130         546 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
     131             : 
     132         546 :     PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
     133             : }
     134             : 
     135             : Datum
     136        3842 : gbt_int2_consistent(PG_FUNCTION_ARGS)
     137             : {
     138        3842 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
     139        3842 :     int16       query = PG_GETARG_INT16(1);
     140        3842 :     StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
     141             : 
     142             :     /* Oid      subtype = PG_GETARG_OID(3); */
     143        3842 :     bool       *recheck = (bool *) PG_GETARG_POINTER(4);
     144        3842 :     int16KEY   *kkk = (int16KEY *) DatumGetPointer(entry->key);
     145             :     GBT_NUMKEY_R key;
     146             : 
     147             :     /* All cases served by this function are exact */
     148        3842 :     *recheck = false;
     149             : 
     150        3842 :     key.lower = (GBT_NUMKEY *) &kkk->lower;
     151        3842 :     key.upper = (GBT_NUMKEY *) &kkk->upper;
     152             : 
     153        3842 :     PG_RETURN_BOOL(gbt_num_consistent(&key, &query, &strategy,
     154             :                                       GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
     155             : }
     156             : 
     157             : Datum
     158         550 : gbt_int2_distance(PG_FUNCTION_ARGS)
     159             : {
     160         550 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
     161         550 :     int16       query = PG_GETARG_INT16(1);
     162             : 
     163             :     /* Oid      subtype = PG_GETARG_OID(3); */
     164         550 :     int16KEY   *kkk = (int16KEY *) DatumGetPointer(entry->key);
     165             :     GBT_NUMKEY_R key;
     166             : 
     167         550 :     key.lower = (GBT_NUMKEY *) &kkk->lower;
     168         550 :     key.upper = (GBT_NUMKEY *) &kkk->upper;
     169             : 
     170         550 :     PG_RETURN_FLOAT8(gbt_num_distance(&key, &query, GIST_LEAF(entry),
     171             :                                       &tinfo, fcinfo->flinfo));
     172             : }
     173             : 
     174             : Datum
     175           2 : gbt_int2_union(PG_FUNCTION_ARGS)
     176             : {
     177           2 :     GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
     178           2 :     void       *out = palloc(sizeof(int16KEY));
     179             : 
     180           2 :     *(int *) PG_GETARG_POINTER(1) = sizeof(int16KEY);
     181           2 :     PG_RETURN_POINTER(gbt_num_union(out, entryvec, &tinfo, fcinfo->flinfo));
     182             : }
     183             : 
     184             : Datum
     185           0 : gbt_int2_penalty(PG_FUNCTION_ARGS)
     186             : {
     187           0 :     int16KEY   *origentry = (int16KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
     188           0 :     int16KEY   *newentry = (int16KEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
     189           0 :     float      *result = (float *) PG_GETARG_POINTER(2);
     190             : 
     191           0 :     penalty_num(result, origentry->lower, origentry->upper, newentry->lower, newentry->upper);
     192             : 
     193           0 :     PG_RETURN_POINTER(result);
     194             : }
     195             : 
     196             : Datum
     197           2 : gbt_int2_picksplit(PG_FUNCTION_ARGS)
     198             : {
     199           2 :     PG_RETURN_POINTER(gbt_num_picksplit((GistEntryVector *) PG_GETARG_POINTER(0),
     200             :                                         (GIST_SPLITVEC *) PG_GETARG_POINTER(1),
     201             :                                         &tinfo, fcinfo->flinfo));
     202             : }
     203             : 
     204             : Datum
     205           0 : gbt_int2_same(PG_FUNCTION_ARGS)
     206             : {
     207           0 :     int16KEY   *b1 = (int16KEY *) PG_GETARG_POINTER(0);
     208           0 :     int16KEY   *b2 = (int16KEY *) PG_GETARG_POINTER(1);
     209           0 :     bool       *result = (bool *) PG_GETARG_POINTER(2);
     210             : 
     211           0 :     *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
     212           0 :     PG_RETURN_POINTER(result);
     213             : }
     214             : 
     215             : static int
     216       10148 : gbt_int2_ssup_cmp(Datum x, Datum y, SortSupport ssup)
     217             : {
     218       10148 :     int16KEY   *arg1 = (int16KEY *) DatumGetPointer(x);
     219       10148 :     int16KEY   *arg2 = (int16KEY *) DatumGetPointer(y);
     220             : 
     221             :     /* for leaf items we expect lower == upper, so only compare lower */
     222       10148 :     if (arg1->lower < arg2->lower)
     223        4712 :         return -1;
     224        5436 :     else if (arg1->lower > arg2->lower)
     225        5406 :         return 1;
     226             :     else
     227          30 :         return 0;
     228             : }
     229             : 
     230             : Datum
     231           2 : gbt_int2_sortsupport(PG_FUNCTION_ARGS)
     232             : {
     233           2 :     SortSupport ssup = (SortSupport) PG_GETARG_POINTER(0);
     234             : 
     235           2 :     ssup->comparator = gbt_int2_ssup_cmp;
     236           2 :     PG_RETURN_VOID();
     237             : }

Generated by: LCOV version 1.14