LCOV - differential code coverage report
Current view: top level - contrib/btree_gist - btree_ts.c (source / functions) Coverage Total Hit UBC CBC
Current: Differential Code Coverage 16@8cea358b128 vs 17@8cea358b128 Lines: 100.0 % 151 151 151
Current Date: 2024-04-14 14:21:10 Functions: 100.0 % 34 34 34
Baseline: 16@8cea358b128 Branches: 72.0 % 50 36 14 36
Baseline Date: 2024-04-14 14:21:09 Line coverage date bins:
Legend: Lines: hit not hit | Branches: + taken - not taken # not executed (240..) days: 100.0 % 151 151 151
Function coverage date bins:
(240..) days: 100.0 % 34 34 34
Branch coverage date bins:
(240..) days: 72.0 % 50 36 14 36

 Age         Owner                    Branch data    TLA  Line data    Source code
                                  1                 :                : /*
                                  2                 :                :  * contrib/btree_gist/btree_ts.c
                                  3                 :                :  */
                                  4                 :                : #include "postgres.h"
                                  5                 :                : 
                                  6                 :                : #include <limits.h>
                                  7                 :                : 
                                  8                 :                : #include "btree_gist.h"
                                  9                 :                : #include "btree_utils_num.h"
                                 10                 :                : #include "utils/builtins.h"
                                 11                 :                : #include "utils/datetime.h"
                                 12                 :                : #include "utils/float.h"
                                 13                 :                : 
                                 14                 :                : typedef struct
                                 15                 :                : {
                                 16                 :                :     Timestamp   lower;
                                 17                 :                :     Timestamp   upper;
                                 18                 :                : } tsKEY;
                                 19                 :                : 
                                 20                 :                : /*
                                 21                 :                : ** timestamp ops
                                 22                 :                : */
 7261 teodor@sigaev.ru           23                 :CBC           3 : PG_FUNCTION_INFO_V1(gbt_ts_compress);
                                 24                 :              2 : PG_FUNCTION_INFO_V1(gbt_tstz_compress);
 3306 heikki.linnakangas@i       25                 :              4 : PG_FUNCTION_INFO_V1(gbt_ts_fetch);
 7261 teodor@sigaev.ru           26                 :              4 : PG_FUNCTION_INFO_V1(gbt_ts_union);
                                 27                 :              4 : PG_FUNCTION_INFO_V1(gbt_ts_picksplit);
                                 28                 :              3 : PG_FUNCTION_INFO_V1(gbt_ts_consistent);
 4792 tgl@sss.pgh.pa.us          29                 :              3 : PG_FUNCTION_INFO_V1(gbt_ts_distance);
 7261 teodor@sigaev.ru           30                 :              2 : PG_FUNCTION_INFO_V1(gbt_tstz_consistent);
 4792 tgl@sss.pgh.pa.us          31                 :              2 : PG_FUNCTION_INFO_V1(gbt_tstz_distance);
 7261 teodor@sigaev.ru           32                 :              4 : PG_FUNCTION_INFO_V1(gbt_ts_penalty);
                                 33                 :              4 : PG_FUNCTION_INFO_V1(gbt_ts_same);
                                 34                 :                : 
                                 35                 :                : 
                                 36                 :                : #ifdef USE_FLOAT8_BYVAL
                                 37                 :                : #define TimestampGetDatumFast(X) TimestampGetDatum(X)
                                 38                 :                : #else
                                 39                 :                : #define TimestampGetDatumFast(X) PointerGetDatum(&(X))
                                 40                 :                : #endif
                                 41                 :                : 
                                 42                 :                : 
                                 43                 :                : static bool
 2581 andrew@dunslane.net        44                 :          12504 : gbt_tsgt(const void *a, const void *b, FmgrInfo *flinfo)
                                 45                 :                : {
 5837 tgl@sss.pgh.pa.us          46                 :          12504 :     const Timestamp *aa = (const Timestamp *) a;
                                 47                 :          12504 :     const Timestamp *bb = (const Timestamp *) b;
                                 48                 :                : 
                                 49                 :          12504 :     return DatumGetBool(DirectFunctionCall2(timestamp_gt,
                                 50                 :                :                                             TimestampGetDatumFast(*aa),
                                 51                 :                :                                             TimestampGetDatumFast(*bb)));
                                 52                 :                : }
                                 53                 :                : 
                                 54                 :                : static bool
 2581 andrew@dunslane.net        55                 :           1854 : gbt_tsge(const void *a, const void *b, FmgrInfo *flinfo)
                                 56                 :                : {
 5837 tgl@sss.pgh.pa.us          57                 :           1854 :     const Timestamp *aa = (const Timestamp *) a;
                                 58                 :           1854 :     const Timestamp *bb = (const Timestamp *) b;
                                 59                 :                : 
                                 60                 :           1854 :     return DatumGetBool(DirectFunctionCall2(timestamp_ge,
                                 61                 :                :                                             TimestampGetDatumFast(*aa),
                                 62                 :                :                                             TimestampGetDatumFast(*bb)));
                                 63                 :                : }
                                 64                 :                : 
                                 65                 :                : static bool
 2581 andrew@dunslane.net        66                 :           5889 : gbt_tseq(const void *a, const void *b, FmgrInfo *flinfo)
                                 67                 :                : {
 5837 tgl@sss.pgh.pa.us          68                 :           5889 :     const Timestamp *aa = (const Timestamp *) a;
                                 69                 :           5889 :     const Timestamp *bb = (const Timestamp *) b;
                                 70                 :                : 
                                 71                 :           5889 :     return DatumGetBool(DirectFunctionCall2(timestamp_eq,
                                 72                 :                :                                             TimestampGetDatumFast(*aa),
                                 73                 :                :                                             TimestampGetDatumFast(*bb)));
                                 74                 :                : }
                                 75                 :                : 
                                 76                 :                : static bool
 2581 andrew@dunslane.net        77                 :           1793 : gbt_tsle(const void *a, const void *b, FmgrInfo *flinfo)
                                 78                 :                : {
 5837 tgl@sss.pgh.pa.us          79                 :           1793 :     const Timestamp *aa = (const Timestamp *) a;
                                 80                 :           1793 :     const Timestamp *bb = (const Timestamp *) b;
                                 81                 :                : 
                                 82                 :           1793 :     return DatumGetBool(DirectFunctionCall2(timestamp_le,
                                 83                 :                :                                             TimestampGetDatumFast(*aa),
                                 84                 :                :                                             TimestampGetDatumFast(*bb)));
                                 85                 :                : }
                                 86                 :                : 
                                 87                 :                : static bool
 2581 andrew@dunslane.net        88                 :          12178 : gbt_tslt(const void *a, const void *b, FmgrInfo *flinfo)
                                 89                 :                : {
 5837 tgl@sss.pgh.pa.us          90                 :          12178 :     const Timestamp *aa = (const Timestamp *) a;
                                 91                 :          12178 :     const Timestamp *bb = (const Timestamp *) b;
                                 92                 :                : 
                                 93                 :          12178 :     return DatumGetBool(DirectFunctionCall2(timestamp_lt,
                                 94                 :                :                                             TimestampGetDatumFast(*aa),
                                 95                 :                :                                             TimestampGetDatumFast(*bb)));
                                 96                 :                : }
                                 97                 :                : 
                                 98                 :                : 
                                 99                 :                : static int
 2581 andrew@dunslane.net       100                 :          12763 : gbt_tskey_cmp(const void *a, const void *b, FmgrInfo *flinfo)
                                101                 :                : {
 4599 peter_e@gmx.net           102                 :          12763 :     tsKEY      *ia = (tsKEY *) (((const Nsrt *) a)->t);
                                103                 :          12763 :     tsKEY      *ib = (tsKEY *) (((const Nsrt *) b)->t);
                                104                 :                :     int         res;
                                105                 :                : 
 5247 teodor@sigaev.ru          106                 :          12763 :     res = DatumGetInt32(DirectFunctionCall2(timestamp_cmp, TimestampGetDatumFast(ia->lower), TimestampGetDatumFast(ib->lower)));
                                107         [ +  + ]:          12763 :     if (res == 0)
                                108                 :           3653 :         return DatumGetInt32(DirectFunctionCall2(timestamp_cmp, TimestampGetDatumFast(ia->upper), TimestampGetDatumFast(ib->upper)));
                                109                 :                : 
                                110                 :           9110 :     return res;
                                111                 :                : }
                                112                 :                : 
                                113                 :                : static float8
 2581 andrew@dunslane.net       114                 :            534 : gbt_ts_dist(const void *a, const void *b, FmgrInfo *flinfo)
                                115                 :                : {
 4792 tgl@sss.pgh.pa.us         116                 :            534 :     const Timestamp *aa = (const Timestamp *) a;
                                117                 :            534 :     const Timestamp *bb = (const Timestamp *) b;
                                118                 :                :     Interval   *i;
                                119                 :                : 
                                120   [ +  -  +  -  :            534 :     if (TIMESTAMP_NOT_FINITE(*aa) || TIMESTAMP_NOT_FINITE(*bb))
                                        +  +  +  + ]
                                121                 :             42 :         return get_float8_infinity();
                                122                 :                : 
                                123                 :            492 :     i = DatumGetIntervalP(DirectFunctionCall2(timestamp_mi,
                                124                 :                :                                               TimestampGetDatumFast(*aa),
                                125                 :                :                                               TimestampGetDatumFast(*bb)));
  555 peter@eisentraut.org      126                 :            492 :     return fabs(INTERVAL_TO_SEC(i));
                                127                 :                : }
                                128                 :                : 
                                129                 :                : 
                                130                 :                : static const gbtree_ninfo tinfo =
                                131                 :                : {
                                132                 :                :     gbt_t_ts,
                                133                 :                :     sizeof(Timestamp),
                                134                 :                :     16,                         /* sizeof(gbtreekey16) */
                                135                 :                :     gbt_tsgt,
                                136                 :                :     gbt_tsge,
                                137                 :                :     gbt_tseq,
                                138                 :                :     gbt_tsle,
                                139                 :                :     gbt_tslt,
                                140                 :                :     gbt_tskey_cmp,
                                141                 :                :     gbt_ts_dist
                                142                 :                : };
                                143                 :                : 
                                144                 :                : 
 4792 tgl@sss.pgh.pa.us         145                 :              2 : PG_FUNCTION_INFO_V1(ts_dist);
                                146                 :                : Datum
                                147                 :            571 : ts_dist(PG_FUNCTION_ARGS)
                                148                 :                : {
                                149                 :            571 :     Timestamp   a = PG_GETARG_TIMESTAMP(0);
                                150                 :            571 :     Timestamp   b = PG_GETARG_TIMESTAMP(1);
                                151                 :                :     Interval   *r;
                                152                 :                : 
                                153   [ +  +  +  +  :            571 :     if (TIMESTAMP_NOT_FINITE(a) || TIMESTAMP_NOT_FINITE(b))
                                        +  -  -  + ]
                                154                 :                :     {
 4753 bruce@momjian.us          155                 :             24 :         Interval   *p = palloc(sizeof(Interval));
                                156                 :                : 
 4792 tgl@sss.pgh.pa.us         157                 :             24 :         p->day = INT_MAX;
                                158                 :             24 :         p->month = INT_MAX;
 3300 andres@anarazel.de        159                 :             24 :         p->time = PG_INT64_MAX;
 4792 tgl@sss.pgh.pa.us         160                 :             24 :         PG_RETURN_INTERVAL_P(p);
                                161                 :                :     }
                                162                 :                :     else
 4753 bruce@momjian.us          163                 :            547 :         r = DatumGetIntervalP(DirectFunctionCall2(timestamp_mi,
                                164                 :                :                                                   PG_GETARG_DATUM(0),
                                165                 :                :                                                   PG_GETARG_DATUM(1)));
                                166                 :            547 :     PG_RETURN_INTERVAL_P(abs_interval(r));
                                167                 :                : }
                                168                 :                : 
 4792 tgl@sss.pgh.pa.us         169                 :              2 : PG_FUNCTION_INFO_V1(tstz_dist);
                                170                 :                : Datum
                                171                 :            552 : tstz_dist(PG_FUNCTION_ARGS)
                                172                 :                : {
 4753 bruce@momjian.us          173                 :            552 :     TimestampTz a = PG_GETARG_TIMESTAMPTZ(0);
                                174                 :            552 :     TimestampTz b = PG_GETARG_TIMESTAMPTZ(1);
                                175                 :                :     Interval   *r;
                                176                 :                : 
 4792 tgl@sss.pgh.pa.us         177   [ +  +  +  +  :            552 :     if (TIMESTAMP_NOT_FINITE(a) || TIMESTAMP_NOT_FINITE(b))
                                        +  -  -  + ]
                                178                 :                :     {
 4753 bruce@momjian.us          179                 :             18 :         Interval   *p = palloc(sizeof(Interval));
                                180                 :                : 
 4792 tgl@sss.pgh.pa.us         181                 :             18 :         p->day = INT_MAX;
                                182                 :             18 :         p->month = INT_MAX;
 3300 andres@anarazel.de        183                 :             18 :         p->time = PG_INT64_MAX;
 4792 tgl@sss.pgh.pa.us         184                 :             18 :         PG_RETURN_INTERVAL_P(p);
                                185                 :                :     }
                                186                 :                : 
                                187                 :            534 :     r = DatumGetIntervalP(DirectFunctionCall2(timestamp_mi,
                                188                 :                :                                               PG_GETARG_DATUM(0),
                                189                 :                :                                               PG_GETARG_DATUM(1)));
 4753 bruce@momjian.us          190                 :            534 :     PG_RETURN_INTERVAL_P(abs_interval(r));
                                191                 :                : }
                                192                 :                : 
                                193                 :                : 
                                194                 :                : /**************************************************
                                195                 :                :  * timestamp ops
                                196                 :                :  **************************************************/
                                197                 :                : 
                                198                 :                : 
                                199                 :                : static inline Timestamp
 5837 tgl@sss.pgh.pa.us         200                 :           5196 : tstz_to_ts_gmt(TimestampTz ts)
                                201                 :                : {
                                202                 :                :     /* No timezone correction is needed, since GMT is offset 0 by definition */
 3468                           203                 :           5196 :     return (Timestamp) ts;
                                204                 :                : }
                                205                 :                : 
                                206                 :                : 
                                207                 :                : Datum
 7261 teodor@sigaev.ru          208                 :           2619 : gbt_ts_compress(PG_FUNCTION_ARGS)
                                209                 :                : {
 7168 bruce@momjian.us          210                 :           2619 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
                                211                 :                : 
 3307 heikki.linnakangas@i      212                 :           2619 :     PG_RETURN_POINTER(gbt_num_compress(entry, &tinfo));
                                213                 :                : }
                                214                 :                : 
                                215                 :                : 
                                216                 :                : Datum
 7261 teodor@sigaev.ru          217                 :            556 : gbt_tstz_compress(PG_FUNCTION_ARGS)
                                218                 :                : {
 7168 bruce@momjian.us          219                 :            556 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
                                220                 :                :     GISTENTRY  *retval;
                                221                 :                : 
                                222         [ +  + ]:            556 :     if (entry->leafkey)
                                223                 :                :     {
                                224                 :            549 :         tsKEY      *r = (tsKEY *) palloc(sizeof(tsKEY));
 5837 tgl@sss.pgh.pa.us         225                 :            549 :         TimestampTz ts = DatumGetTimestampTz(entry->key);
                                226                 :                :         Timestamp   gmt;
                                227                 :                : 
                                228                 :            549 :         gmt = tstz_to_ts_gmt(ts);
                                229                 :                : 
 7168 bruce@momjian.us          230                 :            549 :         retval = palloc(sizeof(GISTENTRY));
                                231                 :            549 :         r->lower = r->upper = gmt;
                                232                 :            549 :         gistentryinit(*retval, PointerGetDatum(r),
                                233                 :                :                       entry->rel, entry->page,
                                234                 :                :                       entry->offset, false);
                                235                 :                :     }
                                236                 :                :     else
                                237                 :              7 :         retval = entry;
                                238                 :                : 
                                239                 :            556 :     PG_RETURN_POINTER(retval);
                                240                 :                : }
                                241                 :                : 
                                242                 :                : Datum
 3306 heikki.linnakangas@i      243                 :            530 : gbt_ts_fetch(PG_FUNCTION_ARGS)
                                244                 :                : {
                                245                 :            530 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
                                246                 :                : 
                                247                 :            530 :     PG_RETURN_POINTER(gbt_num_fetch(entry, &tinfo));
                                248                 :                : }
                                249                 :                : 
                                250                 :                : Datum
 7261 teodor@sigaev.ru          251                 :           1984 : gbt_ts_consistent(PG_FUNCTION_ARGS)
                                252                 :                : {
 7168 bruce@momjian.us          253                 :           1984 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
 5837 tgl@sss.pgh.pa.us         254                 :           1984 :     Timestamp   query = PG_GETARG_TIMESTAMP(1);
 5844                           255                 :           1984 :     StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
                                256                 :                : 
                                257                 :                :     /* Oid      subtype = PG_GETARG_OID(3); */
                                258                 :           1984 :     bool       *recheck = (bool *) PG_GETARG_POINTER(4);
 7168 bruce@momjian.us          259                 :           1984 :     tsKEY      *kkk = (tsKEY *) DatumGetPointer(entry->key);
                                260                 :                :     GBT_NUMKEY_R key;
                                261                 :                : 
                                262                 :                :     /* All cases served by this function are exact */
 5844 tgl@sss.pgh.pa.us         263                 :           1984 :     *recheck = false;
                                264                 :                : 
 5421 bruce@momjian.us          265                 :           1984 :     key.lower = (GBT_NUMKEY *) &kkk->lower;
                                266                 :           1984 :     key.upper = (GBT_NUMKEY *) &kkk->upper;
                                267                 :                : 
 1536 alvherre@alvh.no-ip.      268                 :           1984 :     PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) &query, &strategy,
                                269                 :                :                                       GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
                                270                 :                : }
                                271                 :                : 
                                272                 :                : Datum
 4792 tgl@sss.pgh.pa.us         273                 :            212 : gbt_ts_distance(PG_FUNCTION_ARGS)
                                274                 :                : {
                                275                 :            212 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
                                276                 :            212 :     Timestamp   query = PG_GETARG_TIMESTAMP(1);
                                277                 :                : 
                                278                 :                :     /* Oid      subtype = PG_GETARG_OID(3); */
                                279                 :            212 :     tsKEY      *kkk = (tsKEY *) DatumGetPointer(entry->key);
                                280                 :                :     GBT_NUMKEY_R key;
                                281                 :                : 
                                282                 :            212 :     key.lower = (GBT_NUMKEY *) &kkk->lower;
                                283                 :            212 :     key.upper = (GBT_NUMKEY *) &kkk->upper;
                                284                 :                : 
 1536 alvherre@alvh.no-ip.      285                 :            212 :     PG_RETURN_FLOAT8(gbt_num_distance(&key, (void *) &query, GIST_LEAF(entry),
                                286                 :                :                                       &tinfo, fcinfo->flinfo));
                                287                 :                : }
                                288                 :                : 
                                289                 :                : Datum
 7261 teodor@sigaev.ru          290                 :           4323 : gbt_tstz_consistent(PG_FUNCTION_ARGS)
                                291                 :                : {
 7168 bruce@momjian.us          292                 :           4323 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
 5421                           293                 :           4323 :     TimestampTz query = PG_GETARG_TIMESTAMPTZ(1);
 5844 tgl@sss.pgh.pa.us         294                 :           4323 :     StrategyNumber strategy = (StrategyNumber) PG_GETARG_UINT16(2);
                                295                 :                : 
                                296                 :                :     /* Oid      subtype = PG_GETARG_OID(3); */
                                297                 :           4323 :     bool       *recheck = (bool *) PG_GETARG_POINTER(4);
 7168 bruce@momjian.us          298                 :           4323 :     char       *kkk = (char *) DatumGetPointer(entry->key);
                                299                 :                :     GBT_NUMKEY_R key;
                                300                 :                :     Timestamp   qqq;
                                301                 :                : 
                                302                 :                :     /* All cases served by this function are exact */
 5844 tgl@sss.pgh.pa.us         303                 :           4323 :     *recheck = false;
                                304                 :                : 
 5421 bruce@momjian.us          305                 :           4323 :     key.lower = (GBT_NUMKEY *) &kkk[0];
                                306                 :           4323 :     key.upper = (GBT_NUMKEY *) &kkk[MAXALIGN(tinfo.size)];
 5837 tgl@sss.pgh.pa.us         307                 :           4323 :     qqq = tstz_to_ts_gmt(query);
                                308                 :                : 
 1536 alvherre@alvh.no-ip.      309                 :           4323 :     PG_RETURN_BOOL(gbt_num_consistent(&key, (void *) &qqq, &strategy,
                                310                 :                :                                       GIST_LEAF(entry), &tinfo, fcinfo->flinfo));
                                311                 :                : }
                                312                 :                : 
                                313                 :                : Datum
 4792 tgl@sss.pgh.pa.us         314                 :            324 : gbt_tstz_distance(PG_FUNCTION_ARGS)
                                315                 :                : {
                                316                 :            324 :     GISTENTRY  *entry = (GISTENTRY *) PG_GETARG_POINTER(0);
                                317                 :            324 :     TimestampTz query = PG_GETARG_TIMESTAMPTZ(1);
                                318                 :                : 
                                319                 :                :     /* Oid      subtype = PG_GETARG_OID(3); */
                                320                 :            324 :     char       *kkk = (char *) DatumGetPointer(entry->key);
                                321                 :                :     GBT_NUMKEY_R key;
                                322                 :                :     Timestamp   qqq;
                                323                 :                : 
                                324                 :            324 :     key.lower = (GBT_NUMKEY *) &kkk[0];
                                325                 :            324 :     key.upper = (GBT_NUMKEY *) &kkk[MAXALIGN(tinfo.size)];
                                326                 :            324 :     qqq = tstz_to_ts_gmt(query);
                                327                 :                : 
 1536 alvherre@alvh.no-ip.      328                 :            324 :     PG_RETURN_FLOAT8(gbt_num_distance(&key, (void *) &qqq, GIST_LEAF(entry),
                                329                 :                :                                       &tinfo, fcinfo->flinfo));
                                330                 :                : }
                                331                 :                : 
                                332                 :                : 
                                333                 :                : Datum
 7261 teodor@sigaev.ru          334                 :           2497 : gbt_ts_union(PG_FUNCTION_ARGS)
                                335                 :                : {
 7168 bruce@momjian.us          336                 :           2497 :     GistEntryVector *entryvec = (GistEntryVector *) PG_GETARG_POINTER(0);
                                337                 :           2497 :     void       *out = palloc(sizeof(tsKEY));
                                338                 :                : 
                                339                 :           2497 :     *(int *) PG_GETARG_POINTER(1) = sizeof(tsKEY);
 2581 andrew@dunslane.net       340                 :           2497 :     PG_RETURN_POINTER(gbt_num_union((void *) out, entryvec, &tinfo, fcinfo->flinfo));
                                341                 :                : }
                                342                 :                : 
                                343                 :                : 
                                344                 :                : #define penalty_check_max_float(val) \
                                345                 :                :     do { \
                                346                 :                :         if ( val > FLT_MAX ) \
                                347                 :                :                 val = FLT_MAX; \
                                348                 :                :         if ( val < -FLT_MAX ) \
                                349                 :                :                 val = -FLT_MAX; \
                                350                 :                :     } while (0)
                                351                 :                : 
                                352                 :                : 
                                353                 :                : Datum
 7261 teodor@sigaev.ru          354                 :           4817 : gbt_ts_penalty(PG_FUNCTION_ARGS)
                                355                 :                : {
 7168 bruce@momjian.us          356                 :           4817 :     tsKEY      *origentry = (tsKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(0))->key);
                                357                 :           4817 :     tsKEY      *newentry = (tsKEY *) DatumGetPointer(((GISTENTRY *) PG_GETARG_POINTER(1))->key);
                                358                 :           4817 :     float      *result = (float *) PG_GETARG_POINTER(2);
                                359                 :                : 
                                360                 :                :     double      orgdbl[2],
                                361                 :                :                 newdbl[2];
                                362                 :                : 
                                363                 :                :     /*
                                364                 :                :      * We are always using "double" timestamps here. Precision should be good
                                365                 :                :      * enough.
                                366                 :                :      */
 6756                           367                 :           4817 :     orgdbl[0] = ((double) origentry->lower);
                                368                 :           4817 :     orgdbl[1] = ((double) origentry->upper);
                                369                 :           4817 :     newdbl[0] = ((double) newentry->lower);
                                370                 :           4817 :     newdbl[1] = ((double) newentry->upper);
                                371                 :                : 
                                372   [ -  +  -  + ]:           4817 :     penalty_check_max_float(orgdbl[0]);
                                373   [ -  +  -  + ]:           4817 :     penalty_check_max_float(orgdbl[1]);
                                374   [ -  +  -  + ]:           4817 :     penalty_check_max_float(newdbl[0]);
                                375   [ -  +  -  + ]:           4817 :     penalty_check_max_float(newdbl[1]);
                                376                 :                : 
                                377   [ +  +  +  +  :           4817 :     penalty_num(result, orgdbl[0], orgdbl[1], newdbl[0], newdbl[1]);
                                              +  + ]
                                378                 :                : 
 7168                           379                 :           4817 :     PG_RETURN_POINTER(result);
                                380                 :                : }
                                381                 :                : 
                                382                 :                : 
                                383                 :                : Datum
 7261 teodor@sigaev.ru          384                 :             23 : gbt_ts_picksplit(PG_FUNCTION_ARGS)
                                385                 :                : {
 1536 alvherre@alvh.no-ip.      386                 :             23 :     PG_RETURN_POINTER(gbt_num_picksplit((GistEntryVector *) PG_GETARG_POINTER(0),
                                387                 :                :                                         (GIST_SPLITVEC *) PG_GETARG_POINTER(1),
                                388                 :                :                                         &tinfo, fcinfo->flinfo));
                                389                 :                : }
                                390                 :                : 
                                391                 :                : Datum
 7261 teodor@sigaev.ru          392                 :           2474 : gbt_ts_same(PG_FUNCTION_ARGS)
                                393                 :                : {
 7168 bruce@momjian.us          394                 :           2474 :     tsKEY      *b1 = (tsKEY *) PG_GETARG_POINTER(0);
                                395                 :           2474 :     tsKEY      *b2 = (tsKEY *) PG_GETARG_POINTER(1);
                                396                 :           2474 :     bool       *result = (bool *) PG_GETARG_POINTER(2);
                                397                 :                : 
 2581 andrew@dunslane.net       398                 :           2474 :     *result = gbt_num_same((void *) b1, (void *) b2, &tinfo, fcinfo->flinfo);
 7168 bruce@momjian.us          399                 :           2474 :     PG_RETURN_POINTER(result);
                                400                 :                : }
        

Generated by: LCOV version 2.1-beta2-3-g6141622