PostgreSQL Source Code git master
All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
date.c File Reference
#include "postgres.h"
#include <ctype.h>
#include <limits.h>
#include <float.h>
#include <math.h>
#include <time.h>
#include "access/xact.h"
#include "catalog/pg_type.h"
#include "common/hashfn.h"
#include "common/int.h"
#include "libpq/pqformat.h"
#include "miscadmin.h"
#include "nodes/supportnodes.h"
#include "parser/scansup.h"
#include "utils/array.h"
#include "utils/builtins.h"
#include "utils/date.h"
#include "utils/datetime.h"
#include "utils/numeric.h"
#include "utils/skipsupport.h"
#include "utils/sortsupport.h"
Include dependency graph for date.c:

Go to the source code of this file.

Macros

#define TIMEADT_GT(t1, t2)    (DatumGetTimeADT(t1) > DatumGetTimeADT(t2))
 
#define TIMEADT_LT(t1, t2)    (DatumGetTimeADT(t1) < DatumGetTimeADT(t2))
 
#define TIMETZ_GT(t1, t2)    DatumGetBool(DirectFunctionCall2(timetz_gt,t1,t2))
 
#define TIMETZ_LT(t1, t2)    DatumGetBool(DirectFunctionCall2(timetz_lt,t1,t2))
 

Functions

static int32 anytime_typmodin (bool istz, ArrayType *ta)
 
int32 anytime_typmod_check (bool istz, int32 typmod)
 
static char * anytime_typmodout (bool istz, int32 typmod)
 
Datum date_in (PG_FUNCTION_ARGS)
 
Datum date_out (PG_FUNCTION_ARGS)
 
Datum date_recv (PG_FUNCTION_ARGS)
 
Datum date_send (PG_FUNCTION_ARGS)
 
Datum make_date (PG_FUNCTION_ARGS)
 
void EncodeSpecialDate (DateADT dt, char *str)
 
DateADT GetSQLCurrentDate (void)
 
TimeTzADTGetSQLCurrentTime (int32 typmod)
 
TimeADT GetSQLLocalTime (int32 typmod)
 
Datum date_eq (PG_FUNCTION_ARGS)
 
Datum date_ne (PG_FUNCTION_ARGS)
 
Datum date_lt (PG_FUNCTION_ARGS)
 
Datum date_le (PG_FUNCTION_ARGS)
 
Datum date_gt (PG_FUNCTION_ARGS)
 
Datum date_ge (PG_FUNCTION_ARGS)
 
Datum date_cmp (PG_FUNCTION_ARGS)
 
Datum date_sortsupport (PG_FUNCTION_ARGS)
 
static Datum date_decrement (Relation rel, Datum existing, bool *underflow)
 
static Datum date_increment (Relation rel, Datum existing, bool *overflow)
 
Datum date_skipsupport (PG_FUNCTION_ARGS)
 
Datum hashdate (PG_FUNCTION_ARGS)
 
Datum hashdateextended (PG_FUNCTION_ARGS)
 
Datum date_finite (PG_FUNCTION_ARGS)
 
Datum date_larger (PG_FUNCTION_ARGS)
 
Datum date_smaller (PG_FUNCTION_ARGS)
 
Datum date_mi (PG_FUNCTION_ARGS)
 
Datum date_pli (PG_FUNCTION_ARGS)
 
Datum date_mii (PG_FUNCTION_ARGS)
 
Timestamp date2timestamp_opt_overflow (DateADT dateVal, int *overflow)
 
static TimestampTz date2timestamp (DateADT dateVal)
 
TimestampTz date2timestamptz_opt_overflow (DateADT dateVal, int *overflow)
 
static TimestampTz date2timestamptz (DateADT dateVal)
 
double date2timestamp_no_overflow (DateADT dateVal)
 
int32 date_cmp_timestamp_internal (DateADT dateVal, Timestamp dt2)
 
Datum date_eq_timestamp (PG_FUNCTION_ARGS)
 
Datum date_ne_timestamp (PG_FUNCTION_ARGS)
 
Datum date_lt_timestamp (PG_FUNCTION_ARGS)
 
Datum date_gt_timestamp (PG_FUNCTION_ARGS)
 
Datum date_le_timestamp (PG_FUNCTION_ARGS)
 
Datum date_ge_timestamp (PG_FUNCTION_ARGS)
 
Datum date_cmp_timestamp (PG_FUNCTION_ARGS)
 
int32 date_cmp_timestamptz_internal (DateADT dateVal, TimestampTz dt2)
 
Datum date_eq_timestamptz (PG_FUNCTION_ARGS)
 
Datum date_ne_timestamptz (PG_FUNCTION_ARGS)
 
Datum date_lt_timestamptz (PG_FUNCTION_ARGS)
 
Datum date_gt_timestamptz (PG_FUNCTION_ARGS)
 
Datum date_le_timestamptz (PG_FUNCTION_ARGS)
 
Datum date_ge_timestamptz (PG_FUNCTION_ARGS)
 
Datum date_cmp_timestamptz (PG_FUNCTION_ARGS)
 
Datum timestamp_eq_date (PG_FUNCTION_ARGS)
 
Datum timestamp_ne_date (PG_FUNCTION_ARGS)
 
Datum timestamp_lt_date (PG_FUNCTION_ARGS)
 
Datum timestamp_gt_date (PG_FUNCTION_ARGS)
 
Datum timestamp_le_date (PG_FUNCTION_ARGS)
 
Datum timestamp_ge_date (PG_FUNCTION_ARGS)
 
Datum timestamp_cmp_date (PG_FUNCTION_ARGS)
 
Datum timestamptz_eq_date (PG_FUNCTION_ARGS)
 
Datum timestamptz_ne_date (PG_FUNCTION_ARGS)
 
Datum timestamptz_lt_date (PG_FUNCTION_ARGS)
 
Datum timestamptz_gt_date (PG_FUNCTION_ARGS)
 
Datum timestamptz_le_date (PG_FUNCTION_ARGS)
 
Datum timestamptz_ge_date (PG_FUNCTION_ARGS)
 
Datum timestamptz_cmp_date (PG_FUNCTION_ARGS)
 
Datum in_range_date_interval (PG_FUNCTION_ARGS)
 
Datum extract_date (PG_FUNCTION_ARGS)
 
Datum date_pl_interval (PG_FUNCTION_ARGS)
 
Datum date_mi_interval (PG_FUNCTION_ARGS)
 
Datum date_timestamp (PG_FUNCTION_ARGS)
 
Datum timestamp_date (PG_FUNCTION_ARGS)
 
Datum date_timestamptz (PG_FUNCTION_ARGS)
 
Datum timestamptz_date (PG_FUNCTION_ARGS)
 
Datum time_in (PG_FUNCTION_ARGS)
 
int tm2time (struct pg_tm *tm, fsec_t fsec, TimeADT *result)
 
bool time_overflows (int hour, int min, int sec, fsec_t fsec)
 
bool float_time_overflows (int hour, int min, double sec)
 
int time2tm (TimeADT time, struct pg_tm *tm, fsec_t *fsec)
 
Datum time_out (PG_FUNCTION_ARGS)
 
Datum time_recv (PG_FUNCTION_ARGS)
 
Datum time_send (PG_FUNCTION_ARGS)
 
Datum timetypmodin (PG_FUNCTION_ARGS)
 
Datum timetypmodout (PG_FUNCTION_ARGS)
 
Datum make_time (PG_FUNCTION_ARGS)
 
Datum time_support (PG_FUNCTION_ARGS)
 
Datum time_scale (PG_FUNCTION_ARGS)
 
void AdjustTimeForTypmod (TimeADT *time, int32 typmod)
 
Datum time_eq (PG_FUNCTION_ARGS)
 
Datum time_ne (PG_FUNCTION_ARGS)
 
Datum time_lt (PG_FUNCTION_ARGS)
 
Datum time_le (PG_FUNCTION_ARGS)
 
Datum time_gt (PG_FUNCTION_ARGS)
 
Datum time_ge (PG_FUNCTION_ARGS)
 
Datum time_cmp (PG_FUNCTION_ARGS)
 
Datum time_hash (PG_FUNCTION_ARGS)
 
Datum time_hash_extended (PG_FUNCTION_ARGS)
 
Datum time_larger (PG_FUNCTION_ARGS)
 
Datum time_smaller (PG_FUNCTION_ARGS)
 
Datum overlaps_time (PG_FUNCTION_ARGS)
 
Datum timestamp_time (PG_FUNCTION_ARGS)
 
Datum timestamptz_time (PG_FUNCTION_ARGS)
 
Datum datetime_timestamp (PG_FUNCTION_ARGS)
 
Datum time_interval (PG_FUNCTION_ARGS)
 
Datum interval_time (PG_FUNCTION_ARGS)
 
Datum time_mi_time (PG_FUNCTION_ARGS)
 
Datum time_pl_interval (PG_FUNCTION_ARGS)
 
Datum time_mi_interval (PG_FUNCTION_ARGS)
 
Datum in_range_time_interval (PG_FUNCTION_ARGS)
 
static Datum time_part_common (PG_FUNCTION_ARGS, bool retnumeric)
 
Datum time_part (PG_FUNCTION_ARGS)
 
Datum extract_time (PG_FUNCTION_ARGS)
 
int tm2timetz (struct pg_tm *tm, fsec_t fsec, int tz, TimeTzADT *result)
 
Datum timetz_in (PG_FUNCTION_ARGS)
 
Datum timetz_out (PG_FUNCTION_ARGS)
 
Datum timetz_recv (PG_FUNCTION_ARGS)
 
Datum timetz_send (PG_FUNCTION_ARGS)
 
Datum timetztypmodin (PG_FUNCTION_ARGS)
 
Datum timetztypmodout (PG_FUNCTION_ARGS)
 
int timetz2tm (TimeTzADT *time, struct pg_tm *tm, fsec_t *fsec, int *tzp)
 
Datum timetz_scale (PG_FUNCTION_ARGS)
 
static int timetz_cmp_internal (TimeTzADT *time1, TimeTzADT *time2)
 
Datum timetz_eq (PG_FUNCTION_ARGS)
 
Datum timetz_ne (PG_FUNCTION_ARGS)
 
Datum timetz_lt (PG_FUNCTION_ARGS)
 
Datum timetz_le (PG_FUNCTION_ARGS)
 
Datum timetz_gt (PG_FUNCTION_ARGS)
 
Datum timetz_ge (PG_FUNCTION_ARGS)
 
Datum timetz_cmp (PG_FUNCTION_ARGS)
 
Datum timetz_hash (PG_FUNCTION_ARGS)
 
Datum timetz_hash_extended (PG_FUNCTION_ARGS)
 
Datum timetz_larger (PG_FUNCTION_ARGS)
 
Datum timetz_smaller (PG_FUNCTION_ARGS)
 
Datum timetz_pl_interval (PG_FUNCTION_ARGS)
 
Datum timetz_mi_interval (PG_FUNCTION_ARGS)
 
Datum in_range_timetz_interval (PG_FUNCTION_ARGS)
 
Datum overlaps_timetz (PG_FUNCTION_ARGS)
 
Datum timetz_time (PG_FUNCTION_ARGS)
 
Datum time_timetz (PG_FUNCTION_ARGS)
 
Datum timestamptz_timetz (PG_FUNCTION_ARGS)
 
Datum datetimetz_timestamptz (PG_FUNCTION_ARGS)
 
static Datum timetz_part_common (PG_FUNCTION_ARGS, bool retnumeric)
 
Datum timetz_part (PG_FUNCTION_ARGS)
 
Datum extract_timetz (PG_FUNCTION_ARGS)
 
Datum timetz_zone (PG_FUNCTION_ARGS)
 
Datum timetz_izone (PG_FUNCTION_ARGS)
 
Datum timetz_at_local (PG_FUNCTION_ARGS)
 

Macro Definition Documentation

◆ TIMEADT_GT

#define TIMEADT_GT (   t1,
  t2 
)     (DatumGetTimeADT(t1) > DatumGetTimeADT(t2))

◆ TIMEADT_LT

#define TIMEADT_LT (   t1,
  t2 
)     (DatumGetTimeADT(t1) < DatumGetTimeADT(t2))

◆ TIMETZ_GT

#define TIMETZ_GT (   t1,
  t2 
)     DatumGetBool(DirectFunctionCall2(timetz_gt,t1,t2))

◆ TIMETZ_LT

#define TIMETZ_LT (   t1,
  t2 
)     DatumGetBool(DirectFunctionCall2(timetz_lt,t1,t2))

Function Documentation

◆ AdjustTimeForTypmod()

void AdjustTimeForTypmod ( TimeADT time,
int32  typmod 
)

Definition at line 1710 of file date.c.

1711{
1712 static const int64 TimeScales[MAX_TIME_PRECISION + 1] = {
1713 INT64CONST(1000000),
1714 INT64CONST(100000),
1715 INT64CONST(10000),
1716 INT64CONST(1000),
1717 INT64CONST(100),
1718 INT64CONST(10),
1719 INT64CONST(1)
1720 };
1721
1722 static const int64 TimeOffsets[MAX_TIME_PRECISION + 1] = {
1723 INT64CONST(500000),
1724 INT64CONST(50000),
1725 INT64CONST(5000),
1726 INT64CONST(500),
1727 INT64CONST(50),
1728 INT64CONST(5),
1729 INT64CONST(0)
1730 };
1731
1732 if (typmod >= 0 && typmod <= MAX_TIME_PRECISION)
1733 {
1734 if (*time >= INT64CONST(0))
1735 *time = ((*time + TimeOffsets[typmod]) / TimeScales[typmod]) *
1736 TimeScales[typmod];
1737 else
1738 *time = -((((-*time) + TimeOffsets[typmod]) / TimeScales[typmod]) *
1739 TimeScales[typmod]);
1740 }
1741}
#define INT64CONST(x)
Definition: c.h:516
int64_t int64
Definition: c.h:499
#define MAX_TIME_PRECISION
Definition: date.h:45

References INT64CONST, and MAX_TIME_PRECISION.

Referenced by executeDateTimeMethod(), GetSQLCurrentTime(), GetSQLLocalTime(), parse_datetime(), time_in(), time_recv(), time_scale(), timetz_in(), timetz_recv(), and timetz_scale().

◆ anytime_typmod_check()

int32 anytime_typmod_check ( bool  istz,
int32  typmod 
)

Definition at line 72 of file date.c.

73{
74 if (typmod < 0)
76 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
77 errmsg("TIME(%d)%s precision must not be negative",
78 typmod, (istz ? " WITH TIME ZONE" : ""))));
79 if (typmod > MAX_TIME_PRECISION)
80 {
82 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
83 errmsg("TIME(%d)%s precision reduced to maximum allowed, %d",
84 typmod, (istz ? " WITH TIME ZONE" : ""),
86 typmod = MAX_TIME_PRECISION;
87 }
88
89 return typmod;
90}
int errcode(int sqlerrcode)
Definition: elog.c:854
int errmsg(const char *fmt,...)
Definition: elog.c:1071
#define WARNING
Definition: elog.h:36
#define ERROR
Definition: elog.h:39
#define ereport(elevel,...)
Definition: elog.h:149

References ereport, errcode(), errmsg(), ERROR, MAX_TIME_PRECISION, and WARNING.

Referenced by anytime_typmodin(), executeDateTimeMethod(), and transformSQLValueFunction().

◆ anytime_typmodin()

static int32 anytime_typmodin ( bool  istz,
ArrayType ta 
)
static

Definition at line 51 of file date.c.

52{
53 int32 *tl;
54 int n;
55
56 tl = ArrayGetIntegerTypmods(ta, &n);
57
58 /*
59 * we're not too tense about good error message here because grammar
60 * shouldn't allow wrong number of modifiers for TIME
61 */
62 if (n != 1)
64 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
65 errmsg("invalid type modifier")));
66
67 return anytime_typmod_check(istz, tl[0]);
68}
int32 * ArrayGetIntegerTypmods(ArrayType *arr, int *n)
Definition: arrayutils.c:233
int32_t int32
Definition: c.h:498
int32 anytime_typmod_check(bool istz, int32 typmod)
Definition: date.c:72

References anytime_typmod_check(), ArrayGetIntegerTypmods(), ereport, errcode(), errmsg(), and ERROR.

Referenced by timetypmodin(), and timetztypmodin().

◆ anytime_typmodout()

static char * anytime_typmodout ( bool  istz,
int32  typmod 
)
static

Definition at line 94 of file date.c.

95{
96 const char *tz = istz ? " with time zone" : " without time zone";
97
98 if (typmod >= 0)
99 return psprintf("(%d)%s", (int) typmod, tz);
100 else
101 return pstrdup(tz);
102}
char * pstrdup(const char *in)
Definition: mcxt.c:2322
char * psprintf(const char *fmt,...)
Definition: psprintf.c:43

References psprintf(), and pstrdup().

Referenced by timetypmodout(), and timetztypmodout().

◆ date2timestamp()

static TimestampTz date2timestamp ( DateADT  dateVal)
static

Definition at line 673 of file date.c.

674{
675 return date2timestamp_opt_overflow(dateVal, NULL);
676}
Timestamp date2timestamp_opt_overflow(DateADT dateVal, int *overflow)
Definition: date.c:629

References date2timestamp_opt_overflow().

Referenced by date_mi_interval(), date_pl_interval(), date_timestamp(), datetime_timestamp(), and in_range_date_interval().

◆ date2timestamp_no_overflow()

double date2timestamp_no_overflow ( DateADT  dateVal)

Definition at line 785 of file date.c.

786{
787 double result;
788
789 if (DATE_IS_NOBEGIN(dateVal))
790 result = -DBL_MAX;
791 else if (DATE_IS_NOEND(dateVal))
792 result = DBL_MAX;
793 else
794 {
795 /* date is days since 2000, timestamp is microseconds since same... */
796 result = dateVal * (double) USECS_PER_DAY;
797 }
798
799 return result;
800}
#define USECS_PER_DAY
Definition: timestamp.h:131
#define DATE_IS_NOEND(j)
Definition: date.h:42
#define DATE_IS_NOBEGIN(j)
Definition: date.h:40

References DATE_IS_NOBEGIN, DATE_IS_NOEND, and USECS_PER_DAY.

Referenced by convert_timevalue_to_scalar().

◆ date2timestamp_opt_overflow()

Timestamp date2timestamp_opt_overflow ( DateADT  dateVal,
int *  overflow 
)

Definition at line 629 of file date.c.

630{
631 Timestamp result;
632
633 if (overflow)
634 *overflow = 0;
635
636 if (DATE_IS_NOBEGIN(dateVal))
637 TIMESTAMP_NOBEGIN(result);
638 else if (DATE_IS_NOEND(dateVal))
639 TIMESTAMP_NOEND(result);
640 else
641 {
642 /*
643 * Since dates have the same minimum values as timestamps, only upper
644 * boundary need be checked for overflow.
645 */
647 {
648 if (overflow)
649 {
650 *overflow = 1;
651 TIMESTAMP_NOEND(result);
652 return result;
653 }
654 else
655 {
657 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
658 errmsg("date out of range for timestamp")));
659 }
660 }
661
662 /* date is days since 2000, timestamp is microseconds since same... */
663 result = dateVal * USECS_PER_DAY;
664 }
665
666 return result;
667}
int64 Timestamp
Definition: timestamp.h:38
#define TIMESTAMP_NOBEGIN(j)
Definition: timestamp.h:159
#define TIMESTAMP_END_JULIAN
Definition: timestamp.h:253
#define POSTGRES_EPOCH_JDATE
Definition: timestamp.h:235
#define TIMESTAMP_NOEND(j)
Definition: timestamp.h:164

References DATE_IS_NOBEGIN, DATE_IS_NOEND, ereport, errcode(), errmsg(), ERROR, POSTGRES_EPOCH_JDATE, TIMESTAMP_END_JULIAN, TIMESTAMP_NOBEGIN, TIMESTAMP_NOEND, and USECS_PER_DAY.

Referenced by date2timestamp(), and date_cmp_timestamp_internal().

◆ date2timestamptz()

static TimestampTz date2timestamptz ( DateADT  dateVal)
static

Definition at line 769 of file date.c.

770{
771 return date2timestamptz_opt_overflow(dateVal, NULL);
772}
TimestampTz date2timestamptz_opt_overflow(DateADT dateVal, int *overflow)
Definition: date.c:689

References date2timestamptz_opt_overflow().

Referenced by date_timestamptz().

◆ date2timestamptz_opt_overflow()

TimestampTz date2timestamptz_opt_overflow ( DateADT  dateVal,
int *  overflow 
)

Definition at line 689 of file date.c.

690{
691 TimestampTz result;
692 struct pg_tm tt,
693 *tm = &tt;
694 int tz;
695
696 if (overflow)
697 *overflow = 0;
698
699 if (DATE_IS_NOBEGIN(dateVal))
700 TIMESTAMP_NOBEGIN(result);
701 else if (DATE_IS_NOEND(dateVal))
702 TIMESTAMP_NOEND(result);
703 else
704 {
705 /*
706 * Since dates have the same minimum values as timestamps, only upper
707 * boundary need be checked for overflow.
708 */
710 {
711 if (overflow)
712 {
713 *overflow = 1;
714 TIMESTAMP_NOEND(result);
715 return result;
716 }
717 else
718 {
720 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
721 errmsg("date out of range for timestamp")));
722 }
723 }
724
726 &(tm->tm_year), &(tm->tm_mon), &(tm->tm_mday));
727 tm->tm_hour = 0;
728 tm->tm_min = 0;
729 tm->tm_sec = 0;
731
732 result = dateVal * USECS_PER_DAY + tz * USECS_PER_SEC;
733
734 /*
735 * Since it is possible to go beyond allowed timestamptz range because
736 * of time zone, check for allowed timestamp range after adding tz.
737 */
738 if (!IS_VALID_TIMESTAMP(result))
739 {
740 if (overflow)
741 {
742 if (result < MIN_TIMESTAMP)
743 {
744 *overflow = -1;
745 TIMESTAMP_NOBEGIN(result);
746 }
747 else
748 {
749 *overflow = 1;
750 TIMESTAMP_NOEND(result);
751 }
752 }
753 else
754 {
756 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
757 errmsg("date out of range for timestamp")));
758 }
759 }
760 }
761
762 return result;
763}
int DetermineTimeZoneOffset(struct pg_tm *tm, pg_tz *tzp)
Definition: datetime.c:1595
void j2date(int jd, int *year, int *month, int *day)
Definition: datetime.c:321
int64 TimestampTz
Definition: timestamp.h:39
#define IS_VALID_TIMESTAMP(t)
Definition: timestamp.h:267
#define USECS_PER_SEC
Definition: timestamp.h:134
#define MIN_TIMESTAMP
Definition: timestamp.h:256
static struct pg_tm tm
Definition: localtime.c:104
PGDLLIMPORT pg_tz * session_timezone
Definition: pgtz.c:28
Definition: pgtime.h:35
int tm_hour
Definition: pgtime.h:38
int tm_mday
Definition: pgtime.h:39
int tm_mon
Definition: pgtime.h:40
int tm_min
Definition: pgtime.h:37
int tm_sec
Definition: pgtime.h:36
int tm_year
Definition: pgtime.h:41

References DATE_IS_NOBEGIN, DATE_IS_NOEND, DetermineTimeZoneOffset(), ereport, errcode(), errmsg(), ERROR, IS_VALID_TIMESTAMP, j2date(), MIN_TIMESTAMP, POSTGRES_EPOCH_JDATE, session_timezone, TIMESTAMP_END_JULIAN, TIMESTAMP_NOBEGIN, TIMESTAMP_NOEND, tm, pg_tm::tm_hour, pg_tm::tm_mday, pg_tm::tm_min, pg_tm::tm_mon, pg_tm::tm_sec, pg_tm::tm_year, USECS_PER_DAY, and USECS_PER_SEC.

Referenced by date2timestamptz(), and date_cmp_timestamptz_internal().

◆ date_cmp()

Datum date_cmp ( PG_FUNCTION_ARGS  )

Definition at line 445 of file date.c.

446{
447 DateADT dateVal1 = PG_GETARG_DATEADT(0);
448 DateADT dateVal2 = PG_GETARG_DATEADT(1);
449
450 if (dateVal1 < dateVal2)
451 PG_RETURN_INT32(-1);
452 else if (dateVal1 > dateVal2)
455}
int32 DateADT
Definition: date.h:23
#define PG_GETARG_DATEADT(n)
Definition: date.h:89
#define PG_RETURN_INT32(x)
Definition: fmgr.h:354

References PG_GETARG_DATEADT, and PG_RETURN_INT32.

Referenced by compareDatetime(), gbt_date_ssup_cmp(), and gbt_datekey_cmp().

◆ date_cmp_timestamp()

Datum date_cmp_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 879 of file date.c.

880{
881 DateADT dateVal = PG_GETARG_DATEADT(0);
883
885}
int32 date_cmp_timestamp_internal(DateADT dateVal, Timestamp dt2)
Definition: date.c:808
#define PG_GETARG_TIMESTAMP(n)
Definition: timestamp.h:63

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_INT32.

◆ date_cmp_timestamp_internal()

int32 date_cmp_timestamp_internal ( DateADT  dateVal,
Timestamp  dt2 
)

Definition at line 808 of file date.c.

809{
810 Timestamp dt1;
811 int overflow;
812
813 dt1 = date2timestamp_opt_overflow(dateVal, &overflow);
814 if (overflow > 0)
815 {
816 /* dt1 is larger than any finite timestamp, but less than infinity */
817 return TIMESTAMP_IS_NOEND(dt2) ? -1 : +1;
818 }
819 Assert(overflow == 0); /* -1 case cannot occur */
820
821 return timestamp_cmp_internal(dt1, dt2);
822}
int timestamp_cmp_internal(Timestamp dt1, Timestamp dt2)
Definition: timestamp.c:2210
#define TIMESTAMP_IS_NOEND(j)
Definition: timestamp.h:167
Assert(PointerIsAligned(start, uint64))

References Assert(), date2timestamp_opt_overflow(), timestamp_cmp_internal(), and TIMESTAMP_IS_NOEND.

Referenced by cmpDateToTimestamp(), date_cmp_timestamp(), date_eq_timestamp(), date_ge_timestamp(), date_gt_timestamp(), date_le_timestamp(), date_lt_timestamp(), date_ne_timestamp(), timestamp_cmp_date(), timestamp_eq_date(), timestamp_ge_date(), timestamp_gt_date(), timestamp_le_date(), timestamp_lt_date(), and timestamp_ne_date().

◆ date_cmp_timestamptz()

Datum date_cmp_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 963 of file date.c.

964{
965 DateADT dateVal = PG_GETARG_DATEADT(0);
967
969}
int32 date_cmp_timestamptz_internal(DateADT dateVal, TimestampTz dt2)
Definition: date.c:888
#define PG_GETARG_TIMESTAMPTZ(n)
Definition: timestamp.h:64

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_INT32.

◆ date_cmp_timestamptz_internal()

int32 date_cmp_timestamptz_internal ( DateADT  dateVal,
TimestampTz  dt2 
)

Definition at line 888 of file date.c.

889{
890 TimestampTz dt1;
891 int overflow;
892
893 dt1 = date2timestamptz_opt_overflow(dateVal, &overflow);
894 if (overflow > 0)
895 {
896 /* dt1 is larger than any finite timestamp, but less than infinity */
897 return TIMESTAMP_IS_NOEND(dt2) ? -1 : +1;
898 }
899 if (overflow < 0)
900 {
901 /* dt1 is less than any finite timestamp, but more than -infinity */
902 return TIMESTAMP_IS_NOBEGIN(dt2) ? +1 : -1;
903 }
904
905 return timestamptz_cmp_internal(dt1, dt2);
906}
#define TIMESTAMP_IS_NOBEGIN(j)
Definition: timestamp.h:162
#define timestamptz_cmp_internal(dt1, dt2)
Definition: timestamp.h:143

References date2timestamptz_opt_overflow(), TIMESTAMP_IS_NOBEGIN, TIMESTAMP_IS_NOEND, and timestamptz_cmp_internal.

Referenced by cmpDateToTimestampTz(), date_cmp_timestamptz(), date_eq_timestamptz(), date_ge_timestamptz(), date_gt_timestamptz(), date_le_timestamptz(), date_lt_timestamptz(), date_ne_timestamptz(), timestamptz_cmp_date(), timestamptz_eq_date(), timestamptz_ge_date(), timestamptz_gt_date(), timestamptz_le_date(), timestamptz_lt_date(), and timestamptz_ne_date().

◆ date_decrement()

static Datum date_decrement ( Relation  rel,
Datum  existing,
bool *  underflow 
)
static

Definition at line 467 of file date.c.

468{
469 DateADT dexisting = DatumGetDateADT(existing);
470
471 if (dexisting == DATEVAL_NOBEGIN)
472 {
473 /* return value is undefined */
474 *underflow = true;
475 return (Datum) 0;
476 }
477
478 *underflow = false;
479 return DateADTGetDatum(dexisting - 1);
480}
static Datum DateADTGetDatum(DateADT X)
Definition: date.h:72
static DateADT DatumGetDateADT(Datum X)
Definition: date.h:54
#define DATEVAL_NOBEGIN
Definition: date.h:36
uintptr_t Datum
Definition: postgres.h:69

References DateADTGetDatum(), DATEVAL_NOBEGIN, and DatumGetDateADT().

Referenced by date_skipsupport().

◆ date_eq()

Datum date_eq ( PG_FUNCTION_ARGS  )

Definition at line 391 of file date.c.

392{
393 DateADT dateVal1 = PG_GETARG_DATEADT(0);
394 DateADT dateVal2 = PG_GETARG_DATEADT(1);
395
396 PG_RETURN_BOOL(dateVal1 == dateVal2);
397}
#define PG_RETURN_BOOL(x)
Definition: fmgr.h:359

References PG_GETARG_DATEADT, and PG_RETURN_BOOL.

Referenced by gbt_dateeq().

◆ date_eq_timestamp()

Datum date_eq_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 825 of file date.c.

826{
827 DateADT dateVal = PG_GETARG_DATEADT(0);
829
831}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ date_eq_timestamptz()

Datum date_eq_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 909 of file date.c.

910{
911 DateADT dateVal = PG_GETARG_DATEADT(0);
913
915}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ date_finite()

Datum date_finite ( PG_FUNCTION_ARGS  )

Definition at line 524 of file date.c.

525{
527
529}
#define DATE_NOT_FINITE(j)
Definition: date.h:43
long date
Definition: pgtypes_date.h:9

References DATE_NOT_FINITE, PG_GETARG_DATEADT, and PG_RETURN_BOOL.

◆ date_ge()

Datum date_ge ( PG_FUNCTION_ARGS  )

Definition at line 436 of file date.c.

437{
438 DateADT dateVal1 = PG_GETARG_DATEADT(0);
439 DateADT dateVal2 = PG_GETARG_DATEADT(1);
440
441 PG_RETURN_BOOL(dateVal1 >= dateVal2);
442}

References PG_GETARG_DATEADT, and PG_RETURN_BOOL.

Referenced by gbt_datege().

◆ date_ge_timestamp()

Datum date_ge_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 870 of file date.c.

871{
872 DateADT dateVal = PG_GETARG_DATEADT(0);
874
876}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ date_ge_timestamptz()

Datum date_ge_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 954 of file date.c.

955{
956 DateADT dateVal = PG_GETARG_DATEADT(0);
958
960}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ date_gt()

Datum date_gt ( PG_FUNCTION_ARGS  )

Definition at line 427 of file date.c.

428{
429 DateADT dateVal1 = PG_GETARG_DATEADT(0);
430 DateADT dateVal2 = PG_GETARG_DATEADT(1);
431
432 PG_RETURN_BOOL(dateVal1 > dateVal2);
433}

References PG_GETARG_DATEADT, and PG_RETURN_BOOL.

Referenced by gbt_dategt().

◆ date_gt_timestamp()

Datum date_gt_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 852 of file date.c.

853{
854 DateADT dateVal = PG_GETARG_DATEADT(0);
856
858}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ date_gt_timestamptz()

Datum date_gt_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 936 of file date.c.

937{
938 DateADT dateVal = PG_GETARG_DATEADT(0);
940
942}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ date_in()

Datum date_in ( PG_FUNCTION_ARGS  )

Definition at line 114 of file date.c.

115{
116 char *str = PG_GETARG_CSTRING(0);
117 Node *escontext = fcinfo->context;
119 fsec_t fsec;
120 struct pg_tm tt,
121 *tm = &tt;
122 int tzp;
123 int dtype;
124 int nf;
125 int dterr;
126 char *field[MAXDATEFIELDS];
127 int ftype[MAXDATEFIELDS];
128 char workbuf[MAXDATELEN + 1];
129 DateTimeErrorExtra extra;
130
131 dterr = ParseDateTime(str, workbuf, sizeof(workbuf),
132 field, ftype, MAXDATEFIELDS, &nf);
133 if (dterr == 0)
134 dterr = DecodeDateTime(field, ftype, nf,
135 &dtype, tm, &fsec, &tzp, &extra);
136 if (dterr != 0)
137 {
138 DateTimeParseError(dterr, &extra, str, "date", escontext);
140 }
141
142 switch (dtype)
143 {
144 case DTK_DATE:
145 break;
146
147 case DTK_EPOCH:
149 break;
150
151 case DTK_LATE:
154
155 case DTK_EARLY:
158
159 default:
160 DateTimeParseError(DTERR_BAD_FORMAT, &extra, str, "date", escontext);
162 }
163
164 /* Prevent overflow in Julian-day routines */
166 ereturn(escontext, (Datum) 0,
167 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
168 errmsg("date out of range: \"%s\"", str)));
169
171
172 /* Now check for just-out-of-range dates */
173 if (!IS_VALID_DATE(date))
174 ereturn(escontext, (Datum) 0,
175 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
176 errmsg("date out of range: \"%s\"", str)));
177
179}
int ParseDateTime(const char *timestr, char *workbuf, size_t buflen, char **field, int *ftype, int maxfields, int *numfields)
Definition: datetime.c:764
void DateTimeParseError(int dterr, DateTimeErrorExtra *extra, const char *str, const char *datatype, Node *escontext)
Definition: datetime.c:4208
int DecodeDateTime(char **field, int *ftype, int nf, int *dtype, struct pg_tm *tm, fsec_t *fsec, int *tzp, DateTimeErrorExtra *extra)
Definition: datetime.c:988
int date2j(int year, int month, int day)
Definition: datetime.c:296
void GetEpochTime(struct pg_tm *tm)
Definition: timestamp.c:2168
#define IS_VALID_DATE(d)
Definition: timestamp.h:262
int32 fsec_t
Definition: timestamp.h:41
#define IS_VALID_JULIAN(y, m, d)
Definition: timestamp.h:227
#define PG_RETURN_DATEADT(x)
Definition: date.h:93
#define DATE_NOEND(j)
Definition: date.h:41
#define DATE_NOBEGIN(j)
Definition: date.h:39
#define ereturn(context, dummy_value,...)
Definition: elog.h:278
#define PG_GETARG_CSTRING(n)
Definition: fmgr.h:277
#define PG_RETURN_NULL()
Definition: fmgr.h:345
const char * str
#define MAXDATEFIELDS
Definition: datetime.h:202
#define DTK_EPOCH
Definition: datetime.h:152
#define DTK_LATE
Definition: datetime.h:151
#define DTK_DATE
Definition: datetime.h:144
#define DTERR_BAD_FORMAT
Definition: datetime.h:282
#define DTK_EARLY
Definition: datetime.h:150
#define MAXDATELEN
Definition: datetime.h:200
Definition: nodes.h:135

References date2j(), DATE_NOBEGIN, DATE_NOEND, DateTimeParseError(), DecodeDateTime(), DTERR_BAD_FORMAT, DTK_DATE, DTK_EARLY, DTK_EPOCH, DTK_LATE, ereturn, errcode(), errmsg(), GetEpochTime(), IS_VALID_DATE, IS_VALID_JULIAN, MAXDATEFIELDS, MAXDATELEN, ParseDateTime(), PG_GETARG_CSTRING, PG_RETURN_DATEADT, PG_RETURN_NULL, POSTGRES_EPOCH_JDATE, str, tm, pg_tm::tm_mday, pg_tm::tm_mon, and pg_tm::tm_year.

◆ date_increment()

static Datum date_increment ( Relation  rel,
Datum  existing,
bool *  overflow 
)
static

Definition at line 483 of file date.c.

484{
485 DateADT dexisting = DatumGetDateADT(existing);
486
487 if (dexisting == DATEVAL_NOEND)
488 {
489 /* return value is undefined */
490 *overflow = true;
491 return (Datum) 0;
492 }
493
494 *overflow = false;
495 return DateADTGetDatum(dexisting + 1);
496}
#define DATEVAL_NOEND
Definition: date.h:37

References DateADTGetDatum(), DATEVAL_NOEND, and DatumGetDateADT().

Referenced by date_skipsupport().

◆ date_larger()

Datum date_larger ( PG_FUNCTION_ARGS  )

Definition at line 532 of file date.c.

533{
534 DateADT dateVal1 = PG_GETARG_DATEADT(0);
535 DateADT dateVal2 = PG_GETARG_DATEADT(1);
536
537 PG_RETURN_DATEADT((dateVal1 > dateVal2) ? dateVal1 : dateVal2);
538}

References PG_GETARG_DATEADT, and PG_RETURN_DATEADT.

◆ date_le()

Datum date_le ( PG_FUNCTION_ARGS  )

Definition at line 418 of file date.c.

419{
420 DateADT dateVal1 = PG_GETARG_DATEADT(0);
421 DateADT dateVal2 = PG_GETARG_DATEADT(1);
422
423 PG_RETURN_BOOL(dateVal1 <= dateVal2);
424}

References PG_GETARG_DATEADT, and PG_RETURN_BOOL.

Referenced by gbt_datele().

◆ date_le_timestamp()

Datum date_le_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 861 of file date.c.

862{
863 DateADT dateVal = PG_GETARG_DATEADT(0);
865
867}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ date_le_timestamptz()

Datum date_le_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 945 of file date.c.

946{
947 DateADT dateVal = PG_GETARG_DATEADT(0);
949
951}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ date_lt()

Datum date_lt ( PG_FUNCTION_ARGS  )

Definition at line 409 of file date.c.

410{
411 DateADT dateVal1 = PG_GETARG_DATEADT(0);
412 DateADT dateVal2 = PG_GETARG_DATEADT(1);
413
414 PG_RETURN_BOOL(dateVal1 < dateVal2);
415}

References PG_GETARG_DATEADT, and PG_RETURN_BOOL.

Referenced by gbt_datelt().

◆ date_lt_timestamp()

Datum date_lt_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 843 of file date.c.

844{
845 DateADT dateVal = PG_GETARG_DATEADT(0);
847
849}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ date_lt_timestamptz()

Datum date_lt_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 927 of file date.c.

928{
929 DateADT dateVal = PG_GETARG_DATEADT(0);
931
933}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ date_mi()

Datum date_mi ( PG_FUNCTION_ARGS  )

Definition at line 552 of file date.c.

553{
554 DateADT dateVal1 = PG_GETARG_DATEADT(0);
555 DateADT dateVal2 = PG_GETARG_DATEADT(1);
556
557 if (DATE_NOT_FINITE(dateVal1) || DATE_NOT_FINITE(dateVal2))
559 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
560 errmsg("cannot subtract infinite dates")));
561
562 PG_RETURN_INT32((int32) (dateVal1 - dateVal2));
563}

References DATE_NOT_FINITE, ereport, errcode(), errmsg(), ERROR, PG_GETARG_DATEADT, and PG_RETURN_INT32.

Referenced by date_dist(), gbt_date_penalty(), and gdb_date_dist().

◆ date_mi_interval()

Datum date_mi_interval ( PG_FUNCTION_ARGS  )

Definition at line 1331 of file date.c.

1332{
1333 DateADT dateVal = PG_GETARG_DATEADT(0);
1334 Interval *span = PG_GETARG_INTERVAL_P(1);
1335 Timestamp dateStamp;
1336
1337 dateStamp = date2timestamp(dateVal);
1338
1340 TimestampGetDatum(dateStamp),
1341 PointerGetDatum(span));
1342}
Datum timestamp_mi_interval(PG_FUNCTION_ARGS)
Definition: timestamp.c:3225
static TimestampTz date2timestamp(DateADT dateVal)
Definition: date.c:673
#define DirectFunctionCall2(func, arg1, arg2)
Definition: fmgr.h:684
static Datum PointerGetDatum(const void *X)
Definition: postgres.h:327
static Datum TimestampGetDatum(Timestamp X)
Definition: timestamp.h:46
#define PG_GETARG_INTERVAL_P(n)
Definition: timestamp.h:65

References date2timestamp(), DirectFunctionCall2, PG_GETARG_DATEADT, PG_GETARG_INTERVAL_P, PointerGetDatum(), timestamp_mi_interval(), and TimestampGetDatum().

◆ date_mii()

Datum date_mii ( PG_FUNCTION_ARGS  )

Definition at line 593 of file date.c.

594{
595 DateADT dateVal = PG_GETARG_DATEADT(0);
597 DateADT result;
598
599 if (DATE_NOT_FINITE(dateVal))
600 PG_RETURN_DATEADT(dateVal); /* can't change infinity */
601
602 result = dateVal - days;
603
604 /* Check for integer overflow and out-of-allowed-range */
605 if ((days >= 0 ? (result > dateVal) : (result < dateVal)) ||
606 !IS_VALID_DATE(result))
608 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
609 errmsg("date out of range")));
610
611 PG_RETURN_DATEADT(result);
612}
const char *const days[]
Definition: datetime.c:84
#define PG_GETARG_INT32(n)
Definition: fmgr.h:269

References DATE_NOT_FINITE, days, ereport, errcode(), errmsg(), ERROR, IS_VALID_DATE, PG_GETARG_DATEADT, PG_GETARG_INT32, and PG_RETURN_DATEADT.

◆ date_ne()

Datum date_ne ( PG_FUNCTION_ARGS  )

Definition at line 400 of file date.c.

401{
402 DateADT dateVal1 = PG_GETARG_DATEADT(0);
403 DateADT dateVal2 = PG_GETARG_DATEADT(1);
404
405 PG_RETURN_BOOL(dateVal1 != dateVal2);
406}

References PG_GETARG_DATEADT, and PG_RETURN_BOOL.

◆ date_ne_timestamp()

Datum date_ne_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 834 of file date.c.

835{
836 DateADT dateVal = PG_GETARG_DATEADT(0);
838
840}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ date_ne_timestamptz()

Datum date_ne_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 918 of file date.c.

919{
920 DateADT dateVal = PG_GETARG_DATEADT(0);
922
924}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ date_out()

Datum date_out ( PG_FUNCTION_ARGS  )

Definition at line 185 of file date.c.

186{
188 char *result;
189 struct pg_tm tt,
190 *tm = &tt;
191 char buf[MAXDATELEN + 1];
192
195 else
196 {
198 &(tm->tm_year), &(tm->tm_mon), &(tm->tm_mday));
200 }
201
202 result = pstrdup(buf);
203 PG_RETURN_CSTRING(result);
204}
void EncodeDateOnly(struct pg_tm *tm, int style, char *str)
Definition: datetime.c:4343
void EncodeSpecialDate(DateADT dt, char *str)
Definition: date.c:302
#define PG_RETURN_CSTRING(x)
Definition: fmgr.h:362
int DateStyle
Definition: globals.c:126
static char * buf
Definition: pg_test_fsync.c:72

References buf, DATE_NOT_FINITE, DateStyle, EncodeDateOnly(), EncodeSpecialDate(), j2date(), MAXDATELEN, PG_GETARG_DATEADT, PG_RETURN_CSTRING, POSTGRES_EPOCH_JDATE, pstrdup(), tm, pg_tm::tm_mday, pg_tm::tm_mon, and pg_tm::tm_year.

Referenced by ExecGetJsonValueItemString().

◆ date_pl_interval()

Datum date_pl_interval ( PG_FUNCTION_ARGS  )

Definition at line 1311 of file date.c.

1312{
1313 DateADT dateVal = PG_GETARG_DATEADT(0);
1314 Interval *span = PG_GETARG_INTERVAL_P(1);
1315 Timestamp dateStamp;
1316
1317 dateStamp = date2timestamp(dateVal);
1318
1320 TimestampGetDatum(dateStamp),
1321 PointerGetDatum(span));
1322}
Datum timestamp_pl_interval(PG_FUNCTION_ARGS)
Definition: timestamp.c:3108

References date2timestamp(), DirectFunctionCall2, PG_GETARG_DATEADT, PG_GETARG_INTERVAL_P, PointerGetDatum(), timestamp_pl_interval(), and TimestampGetDatum().

◆ date_pli()

Datum date_pli ( PG_FUNCTION_ARGS  )

Definition at line 569 of file date.c.

570{
571 DateADT dateVal = PG_GETARG_DATEADT(0);
573 DateADT result;
574
575 if (DATE_NOT_FINITE(dateVal))
576 PG_RETURN_DATEADT(dateVal); /* can't change infinity */
577
578 result = dateVal + days;
579
580 /* Check for integer overflow and out-of-allowed-range */
581 if ((days >= 0 ? (result < dateVal) : (result > dateVal)) ||
582 !IS_VALID_DATE(result))
584 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
585 errmsg("date out of range")));
586
587 PG_RETURN_DATEADT(result);
588}

References DATE_NOT_FINITE, days, ereport, errcode(), errmsg(), ERROR, IS_VALID_DATE, PG_GETARG_DATEADT, PG_GETARG_INT32, and PG_RETURN_DATEADT.

◆ date_recv()

Datum date_recv ( PG_FUNCTION_ARGS  )

Definition at line 210 of file date.c.

211{
213 DateADT result;
214
215 result = (DateADT) pq_getmsgint(buf, sizeof(DateADT));
216
217 /* Limit to the same range that date_in() accepts. */
218 if (DATE_NOT_FINITE(result))
219 /* ok */ ;
220 else if (!IS_VALID_DATE(result))
222 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
223 errmsg("date out of range")));
224
225 PG_RETURN_DATEADT(result);
226}
#define PG_GETARG_POINTER(n)
Definition: fmgr.h:276
unsigned int pq_getmsgint(StringInfo msg, int b)
Definition: pqformat.c:415
StringInfoData * StringInfo
Definition: stringinfo.h:54

References buf, DATE_NOT_FINITE, ereport, errcode(), errmsg(), ERROR, IS_VALID_DATE, PG_GETARG_POINTER, PG_RETURN_DATEADT, and pq_getmsgint().

◆ date_send()

Datum date_send ( PG_FUNCTION_ARGS  )

Definition at line 232 of file date.c.

233{
236
240}
#define PG_RETURN_BYTEA_P(x)
Definition: fmgr.h:371
void pq_begintypsend(StringInfo buf)
Definition: pqformat.c:326
bytea * pq_endtypsend(StringInfo buf)
Definition: pqformat.c:346
static void pq_sendint32(StringInfo buf, uint32 i)
Definition: pqformat.h:144

References buf, PG_GETARG_DATEADT, PG_RETURN_BYTEA_P, pq_begintypsend(), pq_endtypsend(), and pq_sendint32().

◆ date_skipsupport()

Datum date_skipsupport ( PG_FUNCTION_ARGS  )

Definition at line 499 of file date.c.

500{
502
503 sksup->decrement = date_decrement;
504 sksup->increment = date_increment;
507
509}
static Datum date_decrement(Relation rel, Datum existing, bool *underflow)
Definition: date.c:467
static Datum date_increment(Relation rel, Datum existing, bool *overflow)
Definition: date.c:483
#define PG_RETURN_VOID()
Definition: fmgr.h:349
struct SkipSupportData * SkipSupport
Definition: skipsupport.h:50
SkipSupportIncDec decrement
Definition: skipsupport.h:91
SkipSupportIncDec increment
Definition: skipsupport.h:92

References date_decrement(), date_increment(), DateADTGetDatum(), DATEVAL_NOBEGIN, DATEVAL_NOEND, SkipSupportData::decrement, SkipSupportData::high_elem, SkipSupportData::increment, SkipSupportData::low_elem, PG_GETARG_POINTER, and PG_RETURN_VOID.

◆ date_smaller()

Datum date_smaller ( PG_FUNCTION_ARGS  )

Definition at line 541 of file date.c.

542{
543 DateADT dateVal1 = PG_GETARG_DATEADT(0);
544 DateADT dateVal2 = PG_GETARG_DATEADT(1);
545
546 PG_RETURN_DATEADT((dateVal1 < dateVal2) ? dateVal1 : dateVal2);
547}

References PG_GETARG_DATEADT, and PG_RETURN_DATEADT.

◆ date_sortsupport()

Datum date_sortsupport ( PG_FUNCTION_ARGS  )

Definition at line 458 of file date.c.

459{
461
464}
struct SortSupportData * SortSupport
Definition: sortsupport.h:58
int(* comparator)(Datum x, Datum y, SortSupport ssup)
Definition: sortsupport.h:106
int ssup_datum_int32_cmp(Datum x, Datum y, SortSupport ssup)
Definition: tuplesort.c:3166

References SortSupportData::comparator, PG_GETARG_POINTER, PG_RETURN_VOID, and ssup_datum_int32_cmp().

◆ date_timestamp()

Datum date_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 1348 of file date.c.

1349{
1350 DateADT dateVal = PG_GETARG_DATEADT(0);
1351 Timestamp result;
1352
1353 result = date2timestamp(dateVal);
1354
1355 PG_RETURN_TIMESTAMP(result);
1356}
#define PG_RETURN_TIMESTAMP(x)
Definition: timestamp.h:67

References date2timestamp(), PG_GETARG_DATEADT, and PG_RETURN_TIMESTAMP.

Referenced by executeDateTimeMethod().

◆ date_timestamptz()

Datum date_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 1392 of file date.c.

1393{
1394 DateADT dateVal = PG_GETARG_DATEADT(0);
1395 TimestampTz result;
1396
1397 result = date2timestamptz(dateVal);
1398
1399 PG_RETURN_TIMESTAMP(result);
1400}
static TimestampTz date2timestamptz(DateADT dateVal)
Definition: date.c:769

References date2timestamptz(), PG_GETARG_DATEADT, and PG_RETURN_TIMESTAMP.

Referenced by executeDateTimeMethod().

◆ datetime_timestamp()

Datum datetime_timestamp ( PG_FUNCTION_ARGS  )

Definition at line 2031 of file date.c.

2032{
2034 TimeADT time = PG_GETARG_TIMEADT(1);
2035 Timestamp result;
2036
2037 result = date2timestamp(date);
2038 if (!TIMESTAMP_NOT_FINITE(result))
2039 {
2040 result += time;
2041 if (!IS_VALID_TIMESTAMP(result))
2042 ereport(ERROR,
2043 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2044 errmsg("timestamp out of range")));
2045 }
2046
2047 PG_RETURN_TIMESTAMP(result);
2048}
#define TIMESTAMP_NOT_FINITE(j)
Definition: timestamp.h:169
#define PG_GETARG_TIMEADT(n)
Definition: date.h:90
int64 TimeADT
Definition: date.h:25

References date2timestamp(), ereport, errcode(), errmsg(), ERROR, IS_VALID_TIMESTAMP, PG_GETARG_DATEADT, PG_GETARG_TIMEADT, PG_RETURN_TIMESTAMP, and TIMESTAMP_NOT_FINITE.

◆ datetimetz_timestamptz()

Datum datetimetz_timestamptz ( PG_FUNCTION_ARGS  )

Definition at line 2951 of file date.c.

2952{
2955 TimestampTz result;
2956
2957 if (DATE_IS_NOBEGIN(date))
2958 TIMESTAMP_NOBEGIN(result);
2959 else if (DATE_IS_NOEND(date))
2960 TIMESTAMP_NOEND(result);
2961 else
2962 {
2963 /*
2964 * Date's range is wider than timestamp's, so check for boundaries.
2965 * Since dates have the same minimum values as timestamps, only upper
2966 * boundary need be checked for overflow.
2967 */
2969 ereport(ERROR,
2970 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2971 errmsg("date out of range for timestamp")));
2972 result = date * USECS_PER_DAY + time->time + time->zone * USECS_PER_SEC;
2973
2974 /*
2975 * Since it is possible to go beyond allowed timestamptz range because
2976 * of time zone, check for allowed timestamp range after adding tz.
2977 */
2978 if (!IS_VALID_TIMESTAMP(result))
2979 ereport(ERROR,
2980 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2981 errmsg("date out of range for timestamp")));
2982 }
2983
2984 PG_RETURN_TIMESTAMP(result);
2985}
#define PG_GETARG_TIMETZADT_P(n)
Definition: date.h:91
Definition: date.h:28
TimeADT time
Definition: date.h:29
int32 zone
Definition: date.h:30

References DATE_IS_NOBEGIN, DATE_IS_NOEND, ereport, errcode(), errmsg(), ERROR, IS_VALID_TIMESTAMP, PG_GETARG_DATEADT, PG_GETARG_TIMETZADT_P, PG_RETURN_TIMESTAMP, POSTGRES_EPOCH_JDATE, TimeTzADT::time, TIMESTAMP_END_JULIAN, TIMESTAMP_NOBEGIN, TIMESTAMP_NOEND, USECS_PER_DAY, USECS_PER_SEC, and TimeTzADT::zone.

◆ EncodeSpecialDate()

void EncodeSpecialDate ( DateADT  dt,
char *  str 
)

Definition at line 302 of file date.c.

303{
304 if (DATE_IS_NOBEGIN(dt))
305 strcpy(str, EARLY);
306 else if (DATE_IS_NOEND(dt))
307 strcpy(str, LATE);
308 else /* shouldn't happen */
309 elog(ERROR, "invalid argument for EncodeSpecialDate");
310}
#define elog(elevel,...)
Definition: elog.h:226
#define EARLY
Definition: datetime.h:39
#define LATE
Definition: datetime.h:40

References DATE_IS_NOBEGIN, DATE_IS_NOEND, EARLY, elog, ERROR, LATE, and str.

Referenced by date_out(), and JsonEncodeDateTime().

◆ extract_date()

Datum extract_date ( PG_FUNCTION_ARGS  )

Definition at line 1131 of file date.c.

1132{
1133 text *units = PG_GETARG_TEXT_PP(0);
1135 int64 intresult;
1136 int type,
1137 val;
1138 char *lowunits;
1139 int year,
1140 mon,
1141 mday;
1142
1143 lowunits = downcase_truncate_identifier(VARDATA_ANY(units),
1144 VARSIZE_ANY_EXHDR(units),
1145 false);
1146
1147 type = DecodeUnits(0, lowunits, &val);
1148 if (type == UNKNOWN_FIELD)
1149 type = DecodeSpecial(0, lowunits, &val);
1150
1151 if (DATE_NOT_FINITE(date) && (type == UNITS || type == RESERV))
1152 {
1153 switch (val)
1154 {
1155 /* Oscillating units */
1156 case DTK_DAY:
1157 case DTK_MONTH:
1158 case DTK_QUARTER:
1159 case DTK_WEEK:
1160 case DTK_DOW:
1161 case DTK_ISODOW:
1162 case DTK_DOY:
1164 break;
1165
1166 /* Monotonically-increasing units */
1167 case DTK_YEAR:
1168 case DTK_DECADE:
1169 case DTK_CENTURY:
1170 case DTK_MILLENNIUM:
1171 case DTK_JULIAN:
1172 case DTK_ISOYEAR:
1173 case DTK_EPOCH:
1174 if (DATE_IS_NOBEGIN(date))
1176 CStringGetDatum("-Infinity"),
1178 Int32GetDatum(-1))));
1179 else
1181 CStringGetDatum("Infinity"),
1183 Int32GetDatum(-1))));
1184 default:
1185 ereport(ERROR,
1186 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1187 errmsg("unit \"%s\" not supported for type %s",
1188 lowunits, format_type_be(DATEOID))));
1189 }
1190 }
1191 else if (type == UNITS)
1192 {
1193 j2date(date + POSTGRES_EPOCH_JDATE, &year, &mon, &mday);
1194
1195 switch (val)
1196 {
1197 case DTK_DAY:
1198 intresult = mday;
1199 break;
1200
1201 case DTK_MONTH:
1202 intresult = mon;
1203 break;
1204
1205 case DTK_QUARTER:
1206 intresult = (mon - 1) / 3 + 1;
1207 break;
1208
1209 case DTK_WEEK:
1210 intresult = date2isoweek(year, mon, mday);
1211 break;
1212
1213 case DTK_YEAR:
1214 if (year > 0)
1215 intresult = year;
1216 else
1217 /* there is no year 0, just 1 BC and 1 AD */
1218 intresult = year - 1;
1219 break;
1220
1221 case DTK_DECADE:
1222 /* see comments in timestamp_part */
1223 if (year >= 0)
1224 intresult = year / 10;
1225 else
1226 intresult = -((8 - (year - 1)) / 10);
1227 break;
1228
1229 case DTK_CENTURY:
1230 /* see comments in timestamp_part */
1231 if (year > 0)
1232 intresult = (year + 99) / 100;
1233 else
1234 intresult = -((99 - (year - 1)) / 100);
1235 break;
1236
1237 case DTK_MILLENNIUM:
1238 /* see comments in timestamp_part */
1239 if (year > 0)
1240 intresult = (year + 999) / 1000;
1241 else
1242 intresult = -((999 - (year - 1)) / 1000);
1243 break;
1244
1245 case DTK_JULIAN:
1246 intresult = date + POSTGRES_EPOCH_JDATE;
1247 break;
1248
1249 case DTK_ISOYEAR:
1250 intresult = date2isoyear(year, mon, mday);
1251 /* Adjust BC years */
1252 if (intresult <= 0)
1253 intresult -= 1;
1254 break;
1255
1256 case DTK_DOW:
1257 case DTK_ISODOW:
1258 intresult = j2day(date + POSTGRES_EPOCH_JDATE);
1259 if (val == DTK_ISODOW && intresult == 0)
1260 intresult = 7;
1261 break;
1262
1263 case DTK_DOY:
1264 intresult = date2j(year, mon, mday) - date2j(year, 1, 1) + 1;
1265 break;
1266
1267 default:
1268 ereport(ERROR,
1269 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1270 errmsg("unit \"%s\" not supported for type %s",
1271 lowunits, format_type_be(DATEOID))));
1272 intresult = 0;
1273 }
1274 }
1275 else if (type == RESERV)
1276 {
1277 switch (val)
1278 {
1279 case DTK_EPOCH:
1281 break;
1282
1283 default:
1284 ereport(ERROR,
1285 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
1286 errmsg("unit \"%s\" not supported for type %s",
1287 lowunits, format_type_be(DATEOID))));
1288 intresult = 0;
1289 }
1290 }
1291 else
1292 {
1293 ereport(ERROR,
1294 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
1295 errmsg("unit \"%s\" not recognized for type %s",
1296 lowunits, format_type_be(DATEOID))));
1297 intresult = 0;
1298 }
1299
1301}
int DecodeUnits(int field, const char *lowtoken, int *val)
Definition: datetime.c:4163
int j2day(int date)
Definition: datetime.c:354
int DecodeSpecial(int field, const char *lowtoken, int *val)
Definition: datetime.c:3240
Numeric int64_to_numeric(int64 val)
Definition: numeric.c:4401
Datum numeric_in(PG_FUNCTION_ARGS)
Definition: numeric.c:637
int date2isoweek(int year, int mon, int mday)
Definition: timestamp.c:5313
int date2isoyear(int year, int mon, int mday)
Definition: timestamp.c:5368
#define UNIX_EPOCH_JDATE
Definition: timestamp.h:234
#define SECS_PER_DAY
Definition: timestamp.h:126
#define PG_GETARG_TEXT_PP(n)
Definition: fmgr.h:309
#define DirectFunctionCall3(func, arg1, arg2, arg3)
Definition: fmgr.h:686
char * format_type_be(Oid type_oid)
Definition: format_type.c:343
#define UNKNOWN_FIELD
Definition: datetime.h:124
#define DTK_DECADE
Definition: datetime.h:168
#define DTK_QUARTER
Definition: datetime.h:166
#define DTK_JULIAN
Definition: datetime.h:173
#define DTK_CENTURY
Definition: datetime.h:169
#define DTK_ISODOW
Definition: datetime.h:180
#define DTK_DAY
Definition: datetime.h:163
#define RESERV
Definition: datetime.h:90
#define DTK_MILLENNIUM
Definition: datetime.h:170
#define DTK_ISOYEAR
Definition: datetime.h:179
#define DTK_DOY
Definition: datetime.h:176
#define DTK_WEEK
Definition: datetime.h:164
#define DTK_DOW
Definition: datetime.h:175
#define DTK_YEAR
Definition: datetime.h:167
#define DTK_MONTH
Definition: datetime.h:165
#define UNITS
Definition: datetime.h:107
long val
Definition: informix.c:689
static Numeric DatumGetNumeric(Datum X)
Definition: numeric.h:61
#define PG_RETURN_NUMERIC(x)
Definition: numeric.h:80
static Datum ObjectIdGetDatum(Oid X)
Definition: postgres.h:257
static Datum CStringGetDatum(const char *X)
Definition: postgres.h:355
static Datum Int32GetDatum(int32 X)
Definition: postgres.h:217
#define InvalidOid
Definition: postgres_ext.h:35
char * downcase_truncate_identifier(const char *ident, int len, bool warn)
Definition: scansup.c:37
Definition: c.h:658
#define VARDATA_ANY(PTR)
Definition: varatt.h:324
#define VARSIZE_ANY_EXHDR(PTR)
Definition: varatt.h:317
const char * type

References CStringGetDatum(), date2isoweek(), date2isoyear(), date2j(), DATE_IS_NOBEGIN, DATE_NOT_FINITE, DatumGetNumeric(), DecodeSpecial(), DecodeUnits(), DirectFunctionCall3, downcase_truncate_identifier(), DTK_CENTURY, DTK_DAY, DTK_DECADE, DTK_DOW, DTK_DOY, DTK_EPOCH, DTK_ISODOW, DTK_ISOYEAR, DTK_JULIAN, DTK_MILLENNIUM, DTK_MONTH, DTK_QUARTER, DTK_WEEK, DTK_YEAR, ereport, errcode(), errmsg(), ERROR, format_type_be(), Int32GetDatum(), int64_to_numeric(), InvalidOid, j2date(), j2day(), numeric_in(), ObjectIdGetDatum(), PG_GETARG_DATEADT, PG_GETARG_TEXT_PP, PG_RETURN_NULL, PG_RETURN_NUMERIC, POSTGRES_EPOCH_JDATE, RESERV, SECS_PER_DAY, type, UNITS, UNIX_EPOCH_JDATE, UNKNOWN_FIELD, val, VARDATA_ANY, and VARSIZE_ANY_EXHDR.

◆ extract_time()

Datum extract_time ( PG_FUNCTION_ARGS  )

Definition at line 2314 of file date.c.

2315{
2316 return time_part_common(fcinfo, true);
2317}
static Datum time_part_common(PG_FUNCTION_ARGS, bool retnumeric)
Definition: date.c:2205

References time_part_common().

◆ extract_timetz()

Datum extract_timetz ( PG_FUNCTION_ARGS  )

Definition at line 3115 of file date.c.

3116{
3117 return timetz_part_common(fcinfo, true);
3118}
static Datum timetz_part_common(PG_FUNCTION_ARGS, bool retnumeric)
Definition: date.c:2992

References timetz_part_common().

◆ float_time_overflows()

bool float_time_overflows ( int  hour,
int  min,
double  sec 
)

Definition at line 1516 of file date.c.

1517{
1518 /* Range-check the fields individually. */
1519 if (hour < 0 || hour > HOURS_PER_DAY ||
1520 min < 0 || min >= MINS_PER_HOUR)
1521 return true;
1522
1523 /*
1524 * "sec", being double, requires extra care. Cope with NaN, and round off
1525 * before applying the range check to avoid unexpected errors due to
1526 * imprecise input. (We assume rint() behaves sanely with infinities.)
1527 */
1528 if (isnan(sec))
1529 return true;
1530 sec = rint(sec * USECS_PER_SEC);
1531 if (sec < 0 || sec > SECS_PER_MINUTE * USECS_PER_SEC)
1532 return true;
1533
1534 /*
1535 * Because we allow, eg, hour = 24 or sec = 60, we must check separately
1536 * that the total time value doesn't exceed 24:00:00. This must match the
1537 * way that callers will convert the fields to a time.
1538 */
1539 if (((((hour * MINS_PER_HOUR + min) * SECS_PER_MINUTE)
1540 * USECS_PER_SEC) + (int64) sec) > USECS_PER_DAY)
1541 return true;
1542
1543 return false;
1544}
#define MINS_PER_HOUR
Definition: timestamp.h:129
#define SECS_PER_MINUTE
Definition: timestamp.h:128
#define HOURS_PER_DAY
Definition: timestamp.h:118

References HOURS_PER_DAY, MINS_PER_HOUR, SECS_PER_MINUTE, USECS_PER_DAY, and USECS_PER_SEC.

Referenced by make_time(), and make_timestamp_internal().

◆ GetSQLCurrentDate()

DateADT GetSQLCurrentDate ( void  )

Definition at line 317 of file date.c.

318{
319 struct pg_tm tm;
320
321 static int cache_year = 0;
322 static int cache_mon = 0;
323 static int cache_mday = 0;
324 static DateADT cache_date;
325
327
328 /*
329 * date2j involves several integer divisions; moreover, unless our session
330 * lives across local midnight, we don't really have to do it more than
331 * once. So it seems worth having a separate cache here.
332 */
333 if (tm.tm_year != cache_year ||
334 tm.tm_mon != cache_mon ||
335 tm.tm_mday != cache_mday)
336 {
338 cache_year = tm.tm_year;
339 cache_mon = tm.tm_mon;
340 cache_mday = tm.tm_mday;
341 }
342
343 return cache_date;
344}
void GetCurrentDateTime(struct pg_tm *tm)
Definition: datetime.c:376

References date2j(), GetCurrentDateTime(), POSTGRES_EPOCH_JDATE, tm, pg_tm::tm_mday, pg_tm::tm_mon, and pg_tm::tm_year.

Referenced by ExecEvalSQLValueFunction().

◆ GetSQLCurrentTime()

TimeTzADT * GetSQLCurrentTime ( int32  typmod)

Definition at line 350 of file date.c.

351{
352 TimeTzADT *result;
353 struct pg_tm tt,
354 *tm = &tt;
355 fsec_t fsec;
356 int tz;
357
358 GetCurrentTimeUsec(tm, &fsec, &tz);
359
360 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
361 tm2timetz(tm, fsec, tz, result);
362 AdjustTimeForTypmod(&(result->time), typmod);
363 return result;
364}
void GetCurrentTimeUsec(struct pg_tm *tm, fsec_t *fsec, int *tzp)
Definition: datetime.c:397
int tm2timetz(struct pg_tm *tm, fsec_t fsec, int tz, TimeTzADT *result)
Definition: date.c:2328
void AdjustTimeForTypmod(TimeADT *time, int32 typmod)
Definition: date.c:1710
void * palloc(Size size)
Definition: mcxt.c:1940

References AdjustTimeForTypmod(), GetCurrentTimeUsec(), palloc(), TimeTzADT::time, tm, and tm2timetz().

Referenced by ExecEvalSQLValueFunction().

◆ GetSQLLocalTime()

TimeADT GetSQLLocalTime ( int32  typmod)

Definition at line 370 of file date.c.

371{
372 TimeADT result;
373 struct pg_tm tt,
374 *tm = &tt;
375 fsec_t fsec;
376 int tz;
377
378 GetCurrentTimeUsec(tm, &fsec, &tz);
379
380 tm2time(tm, fsec, &result);
381 AdjustTimeForTypmod(&result, typmod);
382 return result;
383}
int tm2time(struct pg_tm *tm, fsec_t fsec, TimeADT *result)
Definition: date.c:1481

References AdjustTimeForTypmod(), GetCurrentTimeUsec(), tm, and tm2time().

Referenced by ExecEvalSQLValueFunction().

◆ hashdate()

Datum hashdate ( PG_FUNCTION_ARGS  )

Definition at line 512 of file date.c.

513{
515}
static Datum hash_uint32(uint32 k)
Definition: hashfn.h:43

References hash_uint32(), and PG_GETARG_DATEADT.

◆ hashdateextended()

Datum hashdateextended ( PG_FUNCTION_ARGS  )

Definition at line 518 of file date.c.

519{
521}
#define PG_GETARG_INT64(n)
Definition: fmgr.h:283
static Datum hash_uint32_extended(uint32 k, uint64 seed)
Definition: hashfn.h:49

References hash_uint32_extended(), PG_GETARG_DATEADT, and PG_GETARG_INT64.

◆ in_range_date_interval()

Datum in_range_date_interval ( PG_FUNCTION_ARGS  )

Definition at line 1104 of file date.c.

1105{
1107 DateADT base = PG_GETARG_DATEADT(1);
1108 Interval *offset = PG_GETARG_INTERVAL_P(2);
1109 bool sub = PG_GETARG_BOOL(3);
1110 bool less = PG_GETARG_BOOL(4);
1111 Timestamp valStamp;
1112 Timestamp baseStamp;
1113
1114 /* XXX we could support out-of-range cases here, perhaps */
1115 valStamp = date2timestamp(val);
1116 baseStamp = date2timestamp(base);
1117
1119 TimestampGetDatum(valStamp),
1120 TimestampGetDatum(baseStamp),
1121 IntervalPGetDatum(offset),
1122 BoolGetDatum(sub),
1123 BoolGetDatum(less));
1124}
Datum in_range_timestamp_interval(PG_FUNCTION_ARGS)
Definition: timestamp.c:3894
#define PG_GETARG_BOOL(n)
Definition: fmgr.h:274
#define DirectFunctionCall5(func, arg1, arg2, arg3, arg4, arg5)
Definition: fmgr.h:690
static Datum BoolGetDatum(bool X)
Definition: postgres.h:107
static Datum IntervalPGetDatum(const Interval *X)
Definition: timestamp.h:58

References BoolGetDatum(), date2timestamp(), DirectFunctionCall5, in_range_timestamp_interval(), IntervalPGetDatum(), PG_GETARG_BOOL, PG_GETARG_DATEADT, PG_GETARG_INTERVAL_P, TimestampGetDatum(), and val.

◆ in_range_time_interval()

Datum in_range_time_interval ( PG_FUNCTION_ARGS  )

Definition at line 2163 of file date.c.

2164{
2166 TimeADT base = PG_GETARG_TIMEADT(1);
2167 Interval *offset = PG_GETARG_INTERVAL_P(2);
2168 bool sub = PG_GETARG_BOOL(3);
2169 bool less = PG_GETARG_BOOL(4);
2170 TimeADT sum;
2171
2172 /*
2173 * Like time_pl_interval/time_mi_interval, we disregard the month and day
2174 * fields of the offset. So our test for negative should too. This also
2175 * catches -infinity, so we only need worry about +infinity below.
2176 */
2177 if (offset->time < 0)
2178 ereport(ERROR,
2179 (errcode(ERRCODE_INVALID_PRECEDING_OR_FOLLOWING_SIZE),
2180 errmsg("invalid preceding or following size in window function")));
2181
2182 /*
2183 * We can't use time_pl_interval/time_mi_interval here, because their
2184 * wraparound behavior would give wrong (or at least undesirable) answers.
2185 * Fortunately the equivalent non-wrapping behavior is trivial, except
2186 * that adding an infinite (or very large) interval might cause integer
2187 * overflow. Subtraction cannot overflow here.
2188 */
2189 if (sub)
2190 sum = base - offset->time;
2191 else if (pg_add_s64_overflow(base, offset->time, &sum))
2192 PG_RETURN_BOOL(less);
2193
2194 if (less)
2195 PG_RETURN_BOOL(val <= sum);
2196 else
2197 PG_RETURN_BOOL(val >= sum);
2198}
static bool pg_add_s64_overflow(int64 a, int64 b, int64 *result)
Definition: int.h:235
TimeOffset time
Definition: timestamp.h:49

References ereport, errcode(), errmsg(), ERROR, pg_add_s64_overflow(), PG_GETARG_BOOL, PG_GETARG_INTERVAL_P, PG_GETARG_TIMEADT, PG_RETURN_BOOL, Interval::time, and val.

◆ in_range_timetz_interval()

Datum in_range_timetz_interval ( PG_FUNCTION_ARGS  )

Definition at line 2715 of file date.c.

2716{
2719 Interval *offset = PG_GETARG_INTERVAL_P(2);
2720 bool sub = PG_GETARG_BOOL(3);
2721 bool less = PG_GETARG_BOOL(4);
2722 TimeTzADT sum;
2723
2724 /*
2725 * Like timetz_pl_interval/timetz_mi_interval, we disregard the month and
2726 * day fields of the offset. So our test for negative should too. This
2727 * also catches -infinity, so we only need worry about +infinity below.
2728 */
2729 if (offset->time < 0)
2730 ereport(ERROR,
2731 (errcode(ERRCODE_INVALID_PRECEDING_OR_FOLLOWING_SIZE),
2732 errmsg("invalid preceding or following size in window function")));
2733
2734 /*
2735 * We can't use timetz_pl_interval/timetz_mi_interval here, because their
2736 * wraparound behavior would give wrong (or at least undesirable) answers.
2737 * Fortunately the equivalent non-wrapping behavior is trivial, except
2738 * that adding an infinite (or very large) interval might cause integer
2739 * overflow. Subtraction cannot overflow here.
2740 */
2741 if (sub)
2742 sum.time = base->time - offset->time;
2743 else if (pg_add_s64_overflow(base->time, offset->time, &sum.time))
2744 PG_RETURN_BOOL(less);
2745 sum.zone = base->zone;
2746
2747 if (less)
2749 else
2751}
static int timetz_cmp_internal(TimeTzADT *time1, TimeTzADT *time2)
Definition: date.c:2508

References ereport, errcode(), errmsg(), ERROR, pg_add_s64_overflow(), PG_GETARG_BOOL, PG_GETARG_INTERVAL_P, PG_GETARG_TIMETZADT_P, PG_RETURN_BOOL, Interval::time, TimeTzADT::time, timetz_cmp_internal(), val, and TimeTzADT::zone.

◆ interval_time()

Datum interval_time ( PG_FUNCTION_ARGS  )

Definition at line 2077 of file date.c.

2078{
2079 Interval *span = PG_GETARG_INTERVAL_P(0);
2080 TimeADT result;
2081
2082 if (INTERVAL_NOT_FINITE(span))
2083 ereport(ERROR,
2084 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2085 errmsg("cannot convert infinite interval to time")));
2086
2087 result = span->time % USECS_PER_DAY;
2088 if (result < 0)
2089 result += USECS_PER_DAY;
2090
2091 PG_RETURN_TIMEADT(result);
2092}
#define INTERVAL_NOT_FINITE(i)
Definition: timestamp.h:195
#define PG_RETURN_TIMEADT(x)
Definition: date.h:94

References ereport, errcode(), errmsg(), ERROR, INTERVAL_NOT_FINITE, PG_GETARG_INTERVAL_P, PG_RETURN_TIMEADT, Interval::time, and USECS_PER_DAY.

◆ make_date()

Datum make_date ( PG_FUNCTION_ARGS  )

Definition at line 246 of file date.c.

247{
248 struct pg_tm tm;
250 int dterr;
251 bool bc = false;
252
256
257 /* Handle negative years as BC */
258 if (tm.tm_year < 0)
259 {
260 int year = tm.tm_year;
261
262 bc = true;
263 if (pg_neg_s32_overflow(year, &year))
265 (errcode(ERRCODE_DATETIME_FIELD_OVERFLOW),
266 errmsg("date field value out of range: %d-%02d-%02d",
268 tm.tm_year = year;
269 }
270
271 dterr = ValidateDate(DTK_DATE_M, false, false, bc, &tm);
272
273 if (dterr != 0)
275 (errcode(ERRCODE_DATETIME_FIELD_OVERFLOW),
276 errmsg("date field value out of range: %d-%02d-%02d",
278
279 /* Prevent overflow in Julian-day routines */
282 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
283 errmsg("date out of range: %d-%02d-%02d",
285
287
288 /* Now check for just-out-of-range dates */
289 if (!IS_VALID_DATE(date))
291 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
292 errmsg("date out of range: %d-%02d-%02d",
294
296}
int ValidateDate(int fmask, bool isjulian, bool is2digits, bool bc, struct pg_tm *tm)
Definition: datetime.c:2552
#define DTK_DATE_M
Definition: datetime.h:191
static bool pg_neg_s32_overflow(int32 a, int32 *result)
Definition: int.h:205

References date2j(), DTK_DATE_M, ereport, errcode(), errmsg(), ERROR, IS_VALID_DATE, IS_VALID_JULIAN, PG_GETARG_INT32, pg_neg_s32_overflow(), PG_RETURN_DATEADT, POSTGRES_EPOCH_JDATE, tm, pg_tm::tm_mday, pg_tm::tm_mon, pg_tm::tm_year, and ValidateDate().

◆ make_time()

Datum make_time ( PG_FUNCTION_ARGS  )

Definition at line 1642 of file date.c.

1643{
1644 int tm_hour = PG_GETARG_INT32(0);
1645 int tm_min = PG_GETARG_INT32(1);
1646 double sec = PG_GETARG_FLOAT8(2);
1647 TimeADT time;
1648
1649 /* Check for time overflow */
1650 if (float_time_overflows(tm_hour, tm_min, sec))
1651 ereport(ERROR,
1652 (errcode(ERRCODE_DATETIME_FIELD_OVERFLOW),
1653 errmsg("time field value out of range: %d:%02d:%02g",
1654 tm_hour, tm_min, sec)));
1655
1656 /* This should match tm2time */
1657 time = (((tm_hour * MINS_PER_HOUR + tm_min) * SECS_PER_MINUTE)
1658 * USECS_PER_SEC) + (int64) rint(sec * USECS_PER_SEC);
1659
1660 PG_RETURN_TIMEADT(time);
1661}
bool float_time_overflows(int hour, int min, double sec)
Definition: date.c:1516
#define PG_GETARG_FLOAT8(n)
Definition: fmgr.h:282

References ereport, errcode(), errmsg(), ERROR, float_time_overflows(), MINS_PER_HOUR, PG_GETARG_FLOAT8, PG_GETARG_INT32, PG_RETURN_TIMEADT, SECS_PER_MINUTE, pg_tm::tm_hour, pg_tm::tm_min, and USECS_PER_SEC.

◆ overlaps_time()

Datum overlaps_time ( PG_FUNCTION_ARGS  )

Definition at line 1848 of file date.c.

1849{
1850 /*
1851 * The arguments are TimeADT, but we leave them as generic Datums to avoid
1852 * dereferencing nulls (TimeADT is pass-by-reference!)
1853 */
1854 Datum ts1 = PG_GETARG_DATUM(0);
1855 Datum te1 = PG_GETARG_DATUM(1);
1856 Datum ts2 = PG_GETARG_DATUM(2);
1857 Datum te2 = PG_GETARG_DATUM(3);
1858 bool ts1IsNull = PG_ARGISNULL(0);
1859 bool te1IsNull = PG_ARGISNULL(1);
1860 bool ts2IsNull = PG_ARGISNULL(2);
1861 bool te2IsNull = PG_ARGISNULL(3);
1862
1863#define TIMEADT_GT(t1,t2) \
1864 (DatumGetTimeADT(t1) > DatumGetTimeADT(t2))
1865#define TIMEADT_LT(t1,t2) \
1866 (DatumGetTimeADT(t1) < DatumGetTimeADT(t2))
1867
1868 /*
1869 * If both endpoints of interval 1 are null, the result is null (unknown).
1870 * If just one endpoint is null, take ts1 as the non-null one. Otherwise,
1871 * take ts1 as the lesser endpoint.
1872 */
1873 if (ts1IsNull)
1874 {
1875 if (te1IsNull)
1877 /* swap null for non-null */
1878 ts1 = te1;
1879 te1IsNull = true;
1880 }
1881 else if (!te1IsNull)
1882 {
1883 if (TIMEADT_GT(ts1, te1))
1884 {
1885 Datum tt = ts1;
1886
1887 ts1 = te1;
1888 te1 = tt;
1889 }
1890 }
1891
1892 /* Likewise for interval 2. */
1893 if (ts2IsNull)
1894 {
1895 if (te2IsNull)
1897 /* swap null for non-null */
1898 ts2 = te2;
1899 te2IsNull = true;
1900 }
1901 else if (!te2IsNull)
1902 {
1903 if (TIMEADT_GT(ts2, te2))
1904 {
1905 Datum tt = ts2;
1906
1907 ts2 = te2;
1908 te2 = tt;
1909 }
1910 }
1911
1912 /*
1913 * At this point neither ts1 nor ts2 is null, so we can consider three
1914 * cases: ts1 > ts2, ts1 < ts2, ts1 = ts2
1915 */
1916 if (TIMEADT_GT(ts1, ts2))
1917 {
1918 /*
1919 * This case is ts1 < te2 OR te1 < te2, which may look redundant but
1920 * in the presence of nulls it's not quite completely so.
1921 */
1922 if (te2IsNull)
1924 if (TIMEADT_LT(ts1, te2))
1925 PG_RETURN_BOOL(true);
1926 if (te1IsNull)
1928
1929 /*
1930 * If te1 is not null then we had ts1 <= te1 above, and we just found
1931 * ts1 >= te2, hence te1 >= te2.
1932 */
1933 PG_RETURN_BOOL(false);
1934 }
1935 else if (TIMEADT_LT(ts1, ts2))
1936 {
1937 /* This case is ts2 < te1 OR te2 < te1 */
1938 if (te1IsNull)
1940 if (TIMEADT_LT(ts2, te1))
1941 PG_RETURN_BOOL(true);
1942 if (te2IsNull)
1944
1945 /*
1946 * If te2 is not null then we had ts2 <= te2 above, and we just found
1947 * ts2 >= te1, hence te2 >= te1.
1948 */
1949 PG_RETURN_BOOL(false);
1950 }
1951 else
1952 {
1953 /*
1954 * For ts1 = ts2 the spec says te1 <> te2 OR te1 = te2, which is a
1955 * rather silly way of saying "true if both are nonnull, else null".
1956 */
1957 if (te1IsNull || te2IsNull)
1959 PG_RETURN_BOOL(true);
1960 }
1961
1962#undef TIMEADT_GT
1963#undef TIMEADT_LT
1964}
#define TIMEADT_GT(t1, t2)
#define TIMEADT_LT(t1, t2)
#define PG_ARGISNULL(n)
Definition: fmgr.h:209
#define PG_GETARG_DATUM(n)
Definition: fmgr.h:268

References PG_ARGISNULL, PG_GETARG_DATUM, PG_RETURN_BOOL, PG_RETURN_NULL, TIMEADT_GT, and TIMEADT_LT.

◆ overlaps_timetz()

Datum overlaps_timetz ( PG_FUNCTION_ARGS  )

Definition at line 2760 of file date.c.

2761{
2762 /*
2763 * The arguments are TimeTzADT *, but we leave them as generic Datums for
2764 * convenience of notation --- and to avoid dereferencing nulls.
2765 */
2766 Datum ts1 = PG_GETARG_DATUM(0);
2767 Datum te1 = PG_GETARG_DATUM(1);
2768 Datum ts2 = PG_GETARG_DATUM(2);
2769 Datum te2 = PG_GETARG_DATUM(3);
2770 bool ts1IsNull = PG_ARGISNULL(0);
2771 bool te1IsNull = PG_ARGISNULL(1);
2772 bool ts2IsNull = PG_ARGISNULL(2);
2773 bool te2IsNull = PG_ARGISNULL(3);
2774
2775#define TIMETZ_GT(t1,t2) \
2776 DatumGetBool(DirectFunctionCall2(timetz_gt,t1,t2))
2777#define TIMETZ_LT(t1,t2) \
2778 DatumGetBool(DirectFunctionCall2(timetz_lt,t1,t2))
2779
2780 /*
2781 * If both endpoints of interval 1 are null, the result is null (unknown).
2782 * If just one endpoint is null, take ts1 as the non-null one. Otherwise,
2783 * take ts1 as the lesser endpoint.
2784 */
2785 if (ts1IsNull)
2786 {
2787 if (te1IsNull)
2789 /* swap null for non-null */
2790 ts1 = te1;
2791 te1IsNull = true;
2792 }
2793 else if (!te1IsNull)
2794 {
2795 if (TIMETZ_GT(ts1, te1))
2796 {
2797 Datum tt = ts1;
2798
2799 ts1 = te1;
2800 te1 = tt;
2801 }
2802 }
2803
2804 /* Likewise for interval 2. */
2805 if (ts2IsNull)
2806 {
2807 if (te2IsNull)
2809 /* swap null for non-null */
2810 ts2 = te2;
2811 te2IsNull = true;
2812 }
2813 else if (!te2IsNull)
2814 {
2815 if (TIMETZ_GT(ts2, te2))
2816 {
2817 Datum tt = ts2;
2818
2819 ts2 = te2;
2820 te2 = tt;
2821 }
2822 }
2823
2824 /*
2825 * At this point neither ts1 nor ts2 is null, so we can consider three
2826 * cases: ts1 > ts2, ts1 < ts2, ts1 = ts2
2827 */
2828 if (TIMETZ_GT(ts1, ts2))
2829 {
2830 /*
2831 * This case is ts1 < te2 OR te1 < te2, which may look redundant but
2832 * in the presence of nulls it's not quite completely so.
2833 */
2834 if (te2IsNull)
2836 if (TIMETZ_LT(ts1, te2))
2837 PG_RETURN_BOOL(true);
2838 if (te1IsNull)
2840
2841 /*
2842 * If te1 is not null then we had ts1 <= te1 above, and we just found
2843 * ts1 >= te2, hence te1 >= te2.
2844 */
2845 PG_RETURN_BOOL(false);
2846 }
2847 else if (TIMETZ_LT(ts1, ts2))
2848 {
2849 /* This case is ts2 < te1 OR te2 < te1 */
2850 if (te1IsNull)
2852 if (TIMETZ_LT(ts2, te1))
2853 PG_RETURN_BOOL(true);
2854 if (te2IsNull)
2856
2857 /*
2858 * If te2 is not null then we had ts2 <= te2 above, and we just found
2859 * ts2 >= te1, hence te2 >= te1.
2860 */
2861 PG_RETURN_BOOL(false);
2862 }
2863 else
2864 {
2865 /*
2866 * For ts1 = ts2 the spec says te1 <> te2 OR te1 = te2, which is a
2867 * rather silly way of saying "true if both are nonnull, else null".
2868 */
2869 if (te1IsNull || te2IsNull)
2871 PG_RETURN_BOOL(true);
2872 }
2873
2874#undef TIMETZ_GT
2875#undef TIMETZ_LT
2876}
#define TIMETZ_GT(t1, t2)
#define TIMETZ_LT(t1, t2)

References PG_ARGISNULL, PG_GETARG_DATUM, PG_RETURN_BOOL, PG_RETURN_NULL, TIMETZ_GT, and TIMETZ_LT.

◆ time2tm()

int time2tm ( TimeADT  time,
struct pg_tm tm,
fsec_t fsec 
)

Definition at line 1553 of file date.c.

1554{
1555 tm->tm_hour = time / USECS_PER_HOUR;
1556 time -= tm->tm_hour * USECS_PER_HOUR;
1557 tm->tm_min = time / USECS_PER_MINUTE;
1558 time -= tm->tm_min * USECS_PER_MINUTE;
1559 tm->tm_sec = time / USECS_PER_SEC;
1560 time -= tm->tm_sec * USECS_PER_SEC;
1561 *fsec = time;
1562 return 0;
1563}
#define USECS_PER_HOUR
Definition: timestamp.h:132
#define USECS_PER_MINUTE
Definition: timestamp.h:133

References tm, pg_tm::tm_hour, pg_tm::tm_min, pg_tm::tm_sec, USECS_PER_HOUR, USECS_PER_MINUTE, and USECS_PER_SEC.

Referenced by JsonEncodeDateTime(), time_out(), time_part_common(), and time_timetz().

◆ time_cmp()

Datum time_cmp ( PG_FUNCTION_ARGS  )

Definition at line 1799 of file date.c.

1800{
1801 TimeADT time1 = PG_GETARG_TIMEADT(0);
1802 TimeADT time2 = PG_GETARG_TIMEADT(1);
1803
1804 if (time1 < time2)
1805 PG_RETURN_INT32(-1);
1806 if (time1 > time2)
1807 PG_RETURN_INT32(1);
1808 PG_RETURN_INT32(0);
1809}

References PG_GETARG_TIMEADT, and PG_RETURN_INT32.

Referenced by compareDatetime(), gbt_timekey_cmp(), and gbt_timekey_ssup_cmp().

◆ time_eq()

Datum time_eq ( PG_FUNCTION_ARGS  )

Definition at line 1745 of file date.c.

1746{
1747 TimeADT time1 = PG_GETARG_TIMEADT(0);
1748 TimeADT time2 = PG_GETARG_TIMEADT(1);
1749
1750 PG_RETURN_BOOL(time1 == time2);
1751}

References PG_GETARG_TIMEADT, and PG_RETURN_BOOL.

Referenced by gbt_timeeq().

◆ time_ge()

Datum time_ge ( PG_FUNCTION_ARGS  )

Definition at line 1790 of file date.c.

1791{
1792 TimeADT time1 = PG_GETARG_TIMEADT(0);
1793 TimeADT time2 = PG_GETARG_TIMEADT(1);
1794
1795 PG_RETURN_BOOL(time1 >= time2);
1796}

References PG_GETARG_TIMEADT, and PG_RETURN_BOOL.

Referenced by gbt_timege().

◆ time_gt()

Datum time_gt ( PG_FUNCTION_ARGS  )

Definition at line 1781 of file date.c.

1782{
1783 TimeADT time1 = PG_GETARG_TIMEADT(0);
1784 TimeADT time2 = PG_GETARG_TIMEADT(1);
1785
1786 PG_RETURN_BOOL(time1 > time2);
1787}

References PG_GETARG_TIMEADT, and PG_RETURN_BOOL.

Referenced by gbt_timegt().

◆ time_hash()

Datum time_hash ( PG_FUNCTION_ARGS  )

Definition at line 1812 of file date.c.

1813{
1814 return hashint8(fcinfo);
1815}
Datum hashint8(PG_FUNCTION_ARGS)
Definition: hashfunc.c:83

References hashint8().

◆ time_hash_extended()

Datum time_hash_extended ( PG_FUNCTION_ARGS  )

Definition at line 1818 of file date.c.

1819{
1820 return hashint8extended(fcinfo);
1821}
Datum hashint8extended(PG_FUNCTION_ARGS)
Definition: hashfunc.c:103

References hashint8extended().

◆ time_in()

Datum time_in ( PG_FUNCTION_ARGS  )

Definition at line 1439 of file date.c.

1440{
1441 char *str = PG_GETARG_CSTRING(0);
1442#ifdef NOT_USED
1443 Oid typelem = PG_GETARG_OID(1);
1444#endif
1445 int32 typmod = PG_GETARG_INT32(2);
1446 Node *escontext = fcinfo->context;
1447 TimeADT result;
1448 fsec_t fsec;
1449 struct pg_tm tt,
1450 *tm = &tt;
1451 int tz;
1452 int nf;
1453 int dterr;
1454 char workbuf[MAXDATELEN + 1];
1455 char *field[MAXDATEFIELDS];
1456 int dtype;
1457 int ftype[MAXDATEFIELDS];
1458 DateTimeErrorExtra extra;
1459
1460 dterr = ParseDateTime(str, workbuf, sizeof(workbuf),
1461 field, ftype, MAXDATEFIELDS, &nf);
1462 if (dterr == 0)
1463 dterr = DecodeTimeOnly(field, ftype, nf,
1464 &dtype, tm, &fsec, &tz, &extra);
1465 if (dterr != 0)
1466 {
1467 DateTimeParseError(dterr, &extra, str, "time", escontext);
1469 }
1470
1471 tm2time(tm, fsec, &result);
1472 AdjustTimeForTypmod(&result, typmod);
1473
1474 PG_RETURN_TIMEADT(result);
1475}
int DecodeTimeOnly(char **field, int *ftype, int nf, int *dtype, struct pg_tm *tm, fsec_t *fsec, int *tzp, DateTimeErrorExtra *extra)
Definition: datetime.c:1908
#define PG_GETARG_OID(n)
Definition: fmgr.h:275
unsigned int Oid
Definition: postgres_ext.h:30

References AdjustTimeForTypmod(), DateTimeParseError(), DecodeTimeOnly(), MAXDATEFIELDS, MAXDATELEN, ParseDateTime(), PG_GETARG_CSTRING, PG_GETARG_INT32, PG_GETARG_OID, PG_RETURN_NULL, PG_RETURN_TIMEADT, str, tm, and tm2time().

◆ time_interval()

Datum time_interval ( PG_FUNCTION_ARGS  )

Definition at line 2054 of file date.c.

2055{
2056 TimeADT time = PG_GETARG_TIMEADT(0);
2057 Interval *result;
2058
2059 result = (Interval *) palloc(sizeof(Interval));
2060
2061 result->time = time;
2062 result->day = 0;
2063 result->month = 0;
2064
2065 PG_RETURN_INTERVAL_P(result);
2066}
int32 day
Definition: timestamp.h:51
int32 month
Definition: timestamp.h:52
#define PG_RETURN_INTERVAL_P(x)
Definition: timestamp.h:69

References Interval::day, Interval::month, palloc(), PG_GETARG_TIMEADT, PG_RETURN_INTERVAL_P, and Interval::time.

◆ time_larger()

Datum time_larger ( PG_FUNCTION_ARGS  )

Definition at line 1824 of file date.c.

1825{
1826 TimeADT time1 = PG_GETARG_TIMEADT(0);
1827 TimeADT time2 = PG_GETARG_TIMEADT(1);
1828
1829 PG_RETURN_TIMEADT((time1 > time2) ? time1 : time2);
1830}

References PG_GETARG_TIMEADT, and PG_RETURN_TIMEADT.

◆ time_le()

Datum time_le ( PG_FUNCTION_ARGS  )

Definition at line 1772 of file date.c.

1773{
1774 TimeADT time1 = PG_GETARG_TIMEADT(0);
1775 TimeADT time2 = PG_GETARG_TIMEADT(1);
1776
1777 PG_RETURN_BOOL(time1 <= time2);
1778}

References PG_GETARG_TIMEADT, and PG_RETURN_BOOL.

Referenced by gbt_timele().

◆ time_lt()

Datum time_lt ( PG_FUNCTION_ARGS  )

Definition at line 1763 of file date.c.

1764{
1765 TimeADT time1 = PG_GETARG_TIMEADT(0);
1766 TimeADT time2 = PG_GETARG_TIMEADT(1);
1767
1768 PG_RETURN_BOOL(time1 < time2);
1769}

References PG_GETARG_TIMEADT, and PG_RETURN_BOOL.

Referenced by gbt_timelt().

◆ time_mi_interval()

Datum time_mi_interval ( PG_FUNCTION_ARGS  )

Definition at line 2140 of file date.c.

2141{
2142 TimeADT time = PG_GETARG_TIMEADT(0);
2143 Interval *span = PG_GETARG_INTERVAL_P(1);
2144 TimeADT result;
2145
2146 if (INTERVAL_NOT_FINITE(span))
2147 ereport(ERROR,
2148 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2149 errmsg("cannot subtract infinite interval from time")));
2150
2151 result = time - span->time;
2152 result -= result / USECS_PER_DAY * USECS_PER_DAY;
2153 if (result < INT64CONST(0))
2154 result += USECS_PER_DAY;
2155
2156 PG_RETURN_TIMEADT(result);
2157}

References ereport, errcode(), errmsg(), ERROR, INT64CONST, INTERVAL_NOT_FINITE, PG_GETARG_INTERVAL_P, PG_GETARG_TIMEADT, PG_RETURN_TIMEADT, Interval::time, and USECS_PER_DAY.

◆ time_mi_time()

Datum time_mi_time ( PG_FUNCTION_ARGS  )

Definition at line 2098 of file date.c.

2099{
2100 TimeADT time1 = PG_GETARG_TIMEADT(0);
2101 TimeADT time2 = PG_GETARG_TIMEADT(1);
2102 Interval *result;
2103
2104 result = (Interval *) palloc(sizeof(Interval));
2105
2106 result->month = 0;
2107 result->day = 0;
2108 result->time = time1 - time2;
2109
2110 PG_RETURN_INTERVAL_P(result);
2111}

References Interval::day, Interval::month, palloc(), PG_GETARG_TIMEADT, PG_RETURN_INTERVAL_P, and Interval::time.

Referenced by gbt_time_dist(), gbt_time_penalty(), and time_dist().

◆ time_ne()

Datum time_ne ( PG_FUNCTION_ARGS  )

Definition at line 1754 of file date.c.

1755{
1756 TimeADT time1 = PG_GETARG_TIMEADT(0);
1757 TimeADT time2 = PG_GETARG_TIMEADT(1);
1758
1759 PG_RETURN_BOOL(time1 != time2);
1760}

References PG_GETARG_TIMEADT, and PG_RETURN_BOOL.

◆ time_out()

Datum time_out ( PG_FUNCTION_ARGS  )

Definition at line 1566 of file date.c.

1567{
1568 TimeADT time = PG_GETARG_TIMEADT(0);
1569 char *result;
1570 struct pg_tm tt,
1571 *tm = &tt;
1572 fsec_t fsec;
1573 char buf[MAXDATELEN + 1];
1574
1575 time2tm(time, tm, &fsec);
1576 EncodeTimeOnly(tm, fsec, false, 0, DateStyle, buf);
1577
1578 result = pstrdup(buf);
1579 PG_RETURN_CSTRING(result);
1580}
void EncodeTimeOnly(struct pg_tm *tm, fsec_t fsec, bool print_tz, int tz, int style, char *str)
Definition: datetime.c:4428
int time2tm(TimeADT time, struct pg_tm *tm, fsec_t *fsec)
Definition: date.c:1553

References buf, DateStyle, EncodeTimeOnly(), MAXDATELEN, PG_GETARG_TIMEADT, PG_RETURN_CSTRING, pstrdup(), time2tm(), and tm.

Referenced by ExecGetJsonValueItemString().

◆ time_overflows()

bool time_overflows ( int  hour,
int  min,
int  sec,
fsec_t  fsec 
)

Definition at line 1492 of file date.c.

1493{
1494 /* Range-check the fields individually. */
1495 if (hour < 0 || hour > HOURS_PER_DAY ||
1496 min < 0 || min >= MINS_PER_HOUR ||
1497 sec < 0 || sec > SECS_PER_MINUTE ||
1498 fsec < 0 || fsec > USECS_PER_SEC)
1499 return true;
1500
1501 /*
1502 * Because we allow, eg, hour = 24 or sec = 60, we must check separately
1503 * that the total time value doesn't exceed 24:00:00.
1504 */
1505 if ((((((hour * MINS_PER_HOUR + min) * SECS_PER_MINUTE)
1506 + sec) * USECS_PER_SEC) + fsec) > USECS_PER_DAY)
1507 return true;
1508
1509 return false;
1510}

References HOURS_PER_DAY, MINS_PER_HOUR, SECS_PER_MINUTE, USECS_PER_DAY, and USECS_PER_SEC.

Referenced by DecodeDateTime(), and DecodeTimeOnly().

◆ time_part()

Datum time_part ( PG_FUNCTION_ARGS  )

Definition at line 2308 of file date.c.

2309{
2310 return time_part_common(fcinfo, false);
2311}

References time_part_common().

◆ time_part_common()

static Datum time_part_common ( PG_FUNCTION_ARGS  ,
bool  retnumeric 
)
static

Definition at line 2205 of file date.c.

2206{
2207 text *units = PG_GETARG_TEXT_PP(0);
2208 TimeADT time = PG_GETARG_TIMEADT(1);
2209 int64 intresult;
2210 int type,
2211 val;
2212 char *lowunits;
2213
2214 lowunits = downcase_truncate_identifier(VARDATA_ANY(units),
2215 VARSIZE_ANY_EXHDR(units),
2216 false);
2217
2218 type = DecodeUnits(0, lowunits, &val);
2219 if (type == UNKNOWN_FIELD)
2220 type = DecodeSpecial(0, lowunits, &val);
2221
2222 if (type == UNITS)
2223 {
2224 fsec_t fsec;
2225 struct pg_tm tt,
2226 *tm = &tt;
2227
2228 time2tm(time, tm, &fsec);
2229
2230 switch (val)
2231 {
2232 case DTK_MICROSEC:
2233 intresult = tm->tm_sec * INT64CONST(1000000) + fsec;
2234 break;
2235
2236 case DTK_MILLISEC:
2237 if (retnumeric)
2238 /*---
2239 * tm->tm_sec * 1000 + fsec / 1000
2240 * = (tm->tm_sec * 1'000'000 + fsec) / 1000
2241 */
2243 else
2244 PG_RETURN_FLOAT8(tm->tm_sec * 1000.0 + fsec / 1000.0);
2245 break;
2246
2247 case DTK_SECOND:
2248 if (retnumeric)
2249 /*---
2250 * tm->tm_sec + fsec / 1'000'000
2251 * = (tm->tm_sec * 1'000'000 + fsec) / 1'000'000
2252 */
2254 else
2255 PG_RETURN_FLOAT8(tm->tm_sec + fsec / 1000000.0);
2256 break;
2257
2258 case DTK_MINUTE:
2259 intresult = tm->tm_min;
2260 break;
2261
2262 case DTK_HOUR:
2263 intresult = tm->tm_hour;
2264 break;
2265
2266 case DTK_TZ:
2267 case DTK_TZ_MINUTE:
2268 case DTK_TZ_HOUR:
2269 case DTK_DAY:
2270 case DTK_MONTH:
2271 case DTK_QUARTER:
2272 case DTK_YEAR:
2273 case DTK_DECADE:
2274 case DTK_CENTURY:
2275 case DTK_MILLENNIUM:
2276 case DTK_ISOYEAR:
2277 default:
2278 ereport(ERROR,
2279 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
2280 errmsg("unit \"%s\" not supported for type %s",
2281 lowunits, format_type_be(TIMEOID))));
2282 intresult = 0;
2283 }
2284 }
2285 else if (type == RESERV && val == DTK_EPOCH)
2286 {
2287 if (retnumeric)
2289 else
2290 PG_RETURN_FLOAT8(time / 1000000.0);
2291 }
2292 else
2293 {
2294 ereport(ERROR,
2295 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
2296 errmsg("unit \"%s\" not recognized for type %s",
2297 lowunits, format_type_be(TIMEOID))));
2298 intresult = 0;
2299 }
2300
2301 if (retnumeric)
2303 else
2304 PG_RETURN_FLOAT8(intresult);
2305}
Numeric int64_div_fast_to_numeric(int64 val1, int log10val2)
Definition: numeric.c:4422
#define PG_RETURN_FLOAT8(x)
Definition: fmgr.h:367
#define DTK_SECOND
Definition: datetime.h:160
#define DTK_TZ_HOUR
Definition: datetime.h:177
#define DTK_TZ_MINUTE
Definition: datetime.h:178
#define DTK_TZ
Definition: datetime.h:146
#define DTK_HOUR
Definition: datetime.h:162
#define DTK_MICROSEC
Definition: datetime.h:172
#define DTK_MILLISEC
Definition: datetime.h:171
#define DTK_MINUTE
Definition: datetime.h:161

References DecodeSpecial(), DecodeUnits(), downcase_truncate_identifier(), DTK_CENTURY, DTK_DAY, DTK_DECADE, DTK_EPOCH, DTK_HOUR, DTK_ISOYEAR, DTK_MICROSEC, DTK_MILLENNIUM, DTK_MILLISEC, DTK_MINUTE, DTK_MONTH, DTK_QUARTER, DTK_SECOND, DTK_TZ, DTK_TZ_HOUR, DTK_TZ_MINUTE, DTK_YEAR, ereport, errcode(), errmsg(), ERROR, format_type_be(), int64_div_fast_to_numeric(), int64_to_numeric(), INT64CONST, PG_GETARG_TEXT_PP, PG_GETARG_TIMEADT, PG_RETURN_FLOAT8, PG_RETURN_NUMERIC, RESERV, time2tm(), tm, pg_tm::tm_hour, pg_tm::tm_min, pg_tm::tm_sec, type, UNITS, UNKNOWN_FIELD, val, VARDATA_ANY, and VARSIZE_ANY_EXHDR.

Referenced by extract_time(), and time_part().

◆ time_pl_interval()

Datum time_pl_interval ( PG_FUNCTION_ARGS  )

Definition at line 2117 of file date.c.

2118{
2119 TimeADT time = PG_GETARG_TIMEADT(0);
2120 Interval *span = PG_GETARG_INTERVAL_P(1);
2121 TimeADT result;
2122
2123 if (INTERVAL_NOT_FINITE(span))
2124 ereport(ERROR,
2125 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2126 errmsg("cannot add infinite interval to time")));
2127
2128 result = time + span->time;
2129 result -= result / USECS_PER_DAY * USECS_PER_DAY;
2130 if (result < INT64CONST(0))
2131 result += USECS_PER_DAY;
2132
2133 PG_RETURN_TIMEADT(result);
2134}

References ereport, errcode(), errmsg(), ERROR, INT64CONST, INTERVAL_NOT_FINITE, PG_GETARG_INTERVAL_P, PG_GETARG_TIMEADT, PG_RETURN_TIMEADT, Interval::time, and USECS_PER_DAY.

◆ time_recv()

Datum time_recv ( PG_FUNCTION_ARGS  )

Definition at line 1586 of file date.c.

1587{
1589
1590#ifdef NOT_USED
1591 Oid typelem = PG_GETARG_OID(1);
1592#endif
1593 int32 typmod = PG_GETARG_INT32(2);
1594 TimeADT result;
1595
1596 result = pq_getmsgint64(buf);
1597
1598 if (result < INT64CONST(0) || result > USECS_PER_DAY)
1599 ereport(ERROR,
1600 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
1601 errmsg("time out of range")));
1602
1603 AdjustTimeForTypmod(&result, typmod);
1604
1605 PG_RETURN_TIMEADT(result);
1606}
int64 pq_getmsgint64(StringInfo msg)
Definition: pqformat.c:453

References AdjustTimeForTypmod(), buf, ereport, errcode(), errmsg(), ERROR, INT64CONST, PG_GETARG_INT32, PG_GETARG_OID, PG_GETARG_POINTER, PG_RETURN_TIMEADT, pq_getmsgint64(), and USECS_PER_DAY.

◆ time_scale()

Datum time_scale ( PG_FUNCTION_ARGS  )

Definition at line 1690 of file date.c.

1691{
1692 TimeADT time = PG_GETARG_TIMEADT(0);
1693 int32 typmod = PG_GETARG_INT32(1);
1694 TimeADT result;
1695
1696 result = time;
1697 AdjustTimeForTypmod(&result, typmod);
1698
1699 PG_RETURN_TIMEADT(result);
1700}

References AdjustTimeForTypmod(), PG_GETARG_INT32, PG_GETARG_TIMEADT, and PG_RETURN_TIMEADT.

◆ time_send()

Datum time_send ( PG_FUNCTION_ARGS  )

Definition at line 1612 of file date.c.

1613{
1614 TimeADT time = PG_GETARG_TIMEADT(0);
1616
1618 pq_sendint64(&buf, time);
1620}
static void pq_sendint64(StringInfo buf, uint64 i)
Definition: pqformat.h:152

References buf, PG_GETARG_TIMEADT, PG_RETURN_BYTEA_P, pq_begintypsend(), pq_endtypsend(), and pq_sendint64().

◆ time_smaller()

Datum time_smaller ( PG_FUNCTION_ARGS  )

Definition at line 1833 of file date.c.

1834{
1835 TimeADT time1 = PG_GETARG_TIMEADT(0);
1836 TimeADT time2 = PG_GETARG_TIMEADT(1);
1837
1838 PG_RETURN_TIMEADT((time1 < time2) ? time1 : time2);
1839}

References PG_GETARG_TIMEADT, and PG_RETURN_TIMEADT.

◆ time_support()

Datum time_support ( PG_FUNCTION_ARGS  )

Definition at line 1670 of file date.c.

1671{
1672 Node *rawreq = (Node *) PG_GETARG_POINTER(0);
1673 Node *ret = NULL;
1674
1675 if (IsA(rawreq, SupportRequestSimplify))
1676 {
1678
1680 }
1681
1682 PG_RETURN_POINTER(ret);
1683}
Node * TemporalSimplify(int32 max_precis, Node *node)
Definition: datetime.c:4956
#define PG_RETURN_POINTER(x)
Definition: fmgr.h:361
#define IsA(nodeptr, _type_)
Definition: nodes.h:164

References SupportRequestSimplify::fcall, IsA, MAX_TIME_PRECISION, PG_GETARG_POINTER, PG_RETURN_POINTER, and TemporalSimplify().

◆ time_timetz()

Datum time_timetz ( PG_FUNCTION_ARGS  )

Definition at line 2893 of file date.c.

2894{
2895 TimeADT time = PG_GETARG_TIMEADT(0);
2896 TimeTzADT *result;
2897 struct pg_tm tt,
2898 *tm = &tt;
2899 fsec_t fsec;
2900 int tz;
2901
2903 time2tm(time, tm, &fsec);
2905
2906 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
2907
2908 result->time = time;
2909 result->zone = tz;
2910
2911 PG_RETURN_TIMETZADT_P(result);
2912}
#define PG_RETURN_TIMETZADT_P(x)
Definition: date.h:95

References DetermineTimeZoneOffset(), GetCurrentDateTime(), palloc(), PG_GETARG_TIMEADT, PG_RETURN_TIMETZADT_P, session_timezone, TimeTzADT::time, time2tm(), tm, and TimeTzADT::zone.

Referenced by castTimeToTimeTz(), and executeDateTimeMethod().

◆ timestamp_cmp_date()

Datum timestamp_cmp_date ( PG_FUNCTION_ARGS  )

Definition at line 1026 of file date.c.

1027{
1029 DateADT dateVal = PG_GETARG_DATEADT(1);
1030
1032}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_INT32.

◆ timestamp_date()

Datum timestamp_date ( PG_FUNCTION_ARGS  )

Definition at line 1362 of file date.c.

1363{
1365 DateADT result;
1366 struct pg_tm tt,
1367 *tm = &tt;
1368 fsec_t fsec;
1369
1371 DATE_NOBEGIN(result);
1372 else if (TIMESTAMP_IS_NOEND(timestamp))
1373 DATE_NOEND(result);
1374 else
1375 {
1376 if (timestamp2tm(timestamp, NULL, tm, &fsec, NULL, NULL) != 0)
1377 ereport(ERROR,
1378 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
1379 errmsg("timestamp out of range")));
1380
1382 }
1383
1384 PG_RETURN_DATEADT(result);
1385}
int timestamp2tm(Timestamp dt, int *tzp, struct pg_tm *tm, fsec_t *fsec, const char **tzn, pg_tz *attimezone)
Definition: timestamp.c:1910
int64 timestamp

References date2j(), DATE_NOBEGIN, DATE_NOEND, ereport, errcode(), errmsg(), ERROR, PG_GETARG_TIMESTAMP, PG_RETURN_DATEADT, POSTGRES_EPOCH_JDATE, timestamp2tm(), TIMESTAMP_IS_NOBEGIN, TIMESTAMP_IS_NOEND, tm, pg_tm::tm_mday, pg_tm::tm_mon, and pg_tm::tm_year.

Referenced by executeDateTimeMethod().

◆ timestamp_eq_date()

Datum timestamp_eq_date ( PG_FUNCTION_ARGS  )

Definition at line 972 of file date.c.

973{
975 DateADT dateVal = PG_GETARG_DATEADT(1);
976
978}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ timestamp_ge_date()

Datum timestamp_ge_date ( PG_FUNCTION_ARGS  )

Definition at line 1017 of file date.c.

1018{
1020 DateADT dateVal = PG_GETARG_DATEADT(1);
1021
1022 PG_RETURN_BOOL(date_cmp_timestamp_internal(dateVal, dt1) <= 0);
1023}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ timestamp_gt_date()

Datum timestamp_gt_date ( PG_FUNCTION_ARGS  )

Definition at line 999 of file date.c.

1000{
1002 DateADT dateVal = PG_GETARG_DATEADT(1);
1003
1005}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ timestamp_le_date()

Datum timestamp_le_date ( PG_FUNCTION_ARGS  )

Definition at line 1008 of file date.c.

1009{
1011 DateADT dateVal = PG_GETARG_DATEADT(1);
1012
1013 PG_RETURN_BOOL(date_cmp_timestamp_internal(dateVal, dt1) >= 0);
1014}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ timestamp_lt_date()

Datum timestamp_lt_date ( PG_FUNCTION_ARGS  )

Definition at line 990 of file date.c.

991{
993 DateADT dateVal = PG_GETARG_DATEADT(1);
994
996}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ timestamp_ne_date()

Datum timestamp_ne_date ( PG_FUNCTION_ARGS  )

Definition at line 981 of file date.c.

982{
984 DateADT dateVal = PG_GETARG_DATEADT(1);
985
987}

References date_cmp_timestamp_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMP, and PG_RETURN_BOOL.

◆ timestamp_time()

Datum timestamp_time ( PG_FUNCTION_ARGS  )

Definition at line 1970 of file date.c.

1971{
1973 TimeADT result;
1974 struct pg_tm tt,
1975 *tm = &tt;
1976 fsec_t fsec;
1977
1980
1981 if (timestamp2tm(timestamp, NULL, tm, &fsec, NULL, NULL) != 0)
1982 ereport(ERROR,
1983 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
1984 errmsg("timestamp out of range")));
1985
1986 /*
1987 * Could also do this with time = (timestamp / USECS_PER_DAY *
1988 * USECS_PER_DAY) - timestamp;
1989 */
1990 result = ((((tm->tm_hour * MINS_PER_HOUR + tm->tm_min) * SECS_PER_MINUTE) + tm->tm_sec) *
1991 USECS_PER_SEC) + fsec;
1992
1993 PG_RETURN_TIMEADT(result);
1994}

References ereport, errcode(), errmsg(), ERROR, MINS_PER_HOUR, PG_GETARG_TIMESTAMP, PG_RETURN_NULL, PG_RETURN_TIMEADT, SECS_PER_MINUTE, timestamp2tm(), TIMESTAMP_NOT_FINITE, tm, pg_tm::tm_hour, pg_tm::tm_min, pg_tm::tm_sec, and USECS_PER_SEC.

Referenced by executeDateTimeMethod().

◆ timestamptz_cmp_date()

Datum timestamptz_cmp_date ( PG_FUNCTION_ARGS  )

Definition at line 1089 of file date.c.

1090{
1092 DateADT dateVal = PG_GETARG_DATEADT(1);
1093
1095}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_INT32.

◆ timestamptz_date()

Datum timestamptz_date ( PG_FUNCTION_ARGS  )

Definition at line 1407 of file date.c.

1408{
1410 DateADT result;
1411 struct pg_tm tt,
1412 *tm = &tt;
1413 fsec_t fsec;
1414 int tz;
1415
1417 DATE_NOBEGIN(result);
1418 else if (TIMESTAMP_IS_NOEND(timestamp))
1419 DATE_NOEND(result);
1420 else
1421 {
1422 if (timestamp2tm(timestamp, &tz, tm, &fsec, NULL, NULL) != 0)
1423 ereport(ERROR,
1424 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
1425 errmsg("timestamp out of range")));
1426
1428 }
1429
1430 PG_RETURN_DATEADT(result);
1431}

References date2j(), DATE_NOBEGIN, DATE_NOEND, ereport, errcode(), errmsg(), ERROR, PG_GETARG_TIMESTAMP, PG_RETURN_DATEADT, POSTGRES_EPOCH_JDATE, timestamp2tm(), TIMESTAMP_IS_NOBEGIN, TIMESTAMP_IS_NOEND, tm, pg_tm::tm_mday, pg_tm::tm_mon, and pg_tm::tm_year.

Referenced by executeDateTimeMethod().

◆ timestamptz_eq_date()

Datum timestamptz_eq_date ( PG_FUNCTION_ARGS  )

Definition at line 1035 of file date.c.

1036{
1038 DateADT dateVal = PG_GETARG_DATEADT(1);
1039
1041}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ timestamptz_ge_date()

Datum timestamptz_ge_date ( PG_FUNCTION_ARGS  )

Definition at line 1080 of file date.c.

1081{
1083 DateADT dateVal = PG_GETARG_DATEADT(1);
1084
1086}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ timestamptz_gt_date()

Datum timestamptz_gt_date ( PG_FUNCTION_ARGS  )

Definition at line 1062 of file date.c.

1063{
1065 DateADT dateVal = PG_GETARG_DATEADT(1);
1066
1068}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ timestamptz_le_date()

Datum timestamptz_le_date ( PG_FUNCTION_ARGS  )

Definition at line 1071 of file date.c.

1072{
1074 DateADT dateVal = PG_GETARG_DATEADT(1);
1075
1077}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ timestamptz_lt_date()

Datum timestamptz_lt_date ( PG_FUNCTION_ARGS  )

Definition at line 1053 of file date.c.

1054{
1056 DateADT dateVal = PG_GETARG_DATEADT(1);
1057
1059}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ timestamptz_ne_date()

Datum timestamptz_ne_date ( PG_FUNCTION_ARGS  )

Definition at line 1044 of file date.c.

1045{
1047 DateADT dateVal = PG_GETARG_DATEADT(1);
1048
1050}

References date_cmp_timestamptz_internal(), PG_GETARG_DATEADT, PG_GETARG_TIMESTAMPTZ, and PG_RETURN_BOOL.

◆ timestamptz_time()

Datum timestamptz_time ( PG_FUNCTION_ARGS  )

Definition at line 2000 of file date.c.

2001{
2003 TimeADT result;
2004 struct pg_tm tt,
2005 *tm = &tt;
2006 int tz;
2007 fsec_t fsec;
2008
2011
2012 if (timestamp2tm(timestamp, &tz, tm, &fsec, NULL, NULL) != 0)
2013 ereport(ERROR,
2014 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2015 errmsg("timestamp out of range")));
2016
2017 /*
2018 * Could also do this with time = (timestamp / USECS_PER_DAY *
2019 * USECS_PER_DAY) - timestamp;
2020 */
2021 result = ((((tm->tm_hour * MINS_PER_HOUR + tm->tm_min) * SECS_PER_MINUTE) + tm->tm_sec) *
2022 USECS_PER_SEC) + fsec;
2023
2024 PG_RETURN_TIMEADT(result);
2025}

References ereport, errcode(), errmsg(), ERROR, MINS_PER_HOUR, PG_GETARG_TIMESTAMP, PG_RETURN_NULL, PG_RETURN_TIMEADT, SECS_PER_MINUTE, timestamp2tm(), TIMESTAMP_NOT_FINITE, tm, pg_tm::tm_hour, pg_tm::tm_min, pg_tm::tm_sec, and USECS_PER_SEC.

Referenced by executeDateTimeMethod().

◆ timestamptz_timetz()

Datum timestamptz_timetz ( PG_FUNCTION_ARGS  )

Definition at line 2919 of file date.c.

2920{
2922 TimeTzADT *result;
2923 struct pg_tm tt,
2924 *tm = &tt;
2925 int tz;
2926 fsec_t fsec;
2927
2930
2931 if (timestamp2tm(timestamp, &tz, tm, &fsec, NULL, NULL) != 0)
2932 ereport(ERROR,
2933 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2934 errmsg("timestamp out of range")));
2935
2936 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
2937
2938 tm2timetz(tm, fsec, tz, result);
2939
2940 PG_RETURN_TIMETZADT_P(result);
2941}

References ereport, errcode(), errmsg(), ERROR, palloc(), PG_GETARG_TIMESTAMP, PG_RETURN_NULL, PG_RETURN_TIMETZADT_P, timestamp2tm(), TIMESTAMP_NOT_FINITE, tm, and tm2timetz().

Referenced by executeDateTimeMethod().

◆ timetypmodin()

Datum timetypmodin ( PG_FUNCTION_ARGS  )

Definition at line 1623 of file date.c.

1624{
1626
1628}
#define PG_GETARG_ARRAYTYPE_P(n)
Definition: array.h:263
static int32 anytime_typmodin(bool istz, ArrayType *ta)
Definition: date.c:51

References anytime_typmodin(), PG_GETARG_ARRAYTYPE_P, and PG_RETURN_INT32.

◆ timetypmodout()

Datum timetypmodout ( PG_FUNCTION_ARGS  )

Definition at line 1631 of file date.c.

1632{
1633 int32 typmod = PG_GETARG_INT32(0);
1634
1635 PG_RETURN_CSTRING(anytime_typmodout(false, typmod));
1636}
static char * anytime_typmodout(bool istz, int32 typmod)
Definition: date.c:94

References anytime_typmodout(), PG_GETARG_INT32, and PG_RETURN_CSTRING.

◆ timetz2tm()

int timetz2tm ( TimeTzADT time,
struct pg_tm tm,
fsec_t fsec,
int *  tzp 
)

Definition at line 2468 of file date.c.

2469{
2470 TimeOffset trem = time->time;
2471
2472 tm->tm_hour = trem / USECS_PER_HOUR;
2473 trem -= tm->tm_hour * USECS_PER_HOUR;
2474 tm->tm_min = trem / USECS_PER_MINUTE;
2475 trem -= tm->tm_min * USECS_PER_MINUTE;
2476 tm->tm_sec = trem / USECS_PER_SEC;
2477 *fsec = trem - tm->tm_sec * USECS_PER_SEC;
2478
2479 if (tzp != NULL)
2480 *tzp = time->zone;
2481
2482 return 0;
2483}
int64 TimeOffset
Definition: timestamp.h:40

References TimeTzADT::time, tm, pg_tm::tm_hour, pg_tm::tm_min, pg_tm::tm_sec, USECS_PER_HOUR, USECS_PER_MINUTE, USECS_PER_SEC, and TimeTzADT::zone.

Referenced by JsonEncodeDateTime(), timetz_out(), and timetz_part_common().

◆ timetz_at_local()

Datum timetz_at_local ( PG_FUNCTION_ARGS  )

Definition at line 3230 of file date.c.

3231{
3232 Datum time = PG_GETARG_DATUM(0);
3233 const char *tzn = pg_get_timezone_name(session_timezone);
3235
3236 return DirectFunctionCall2(timetz_zone, zone, time);
3237}
Datum timetz_zone(PG_FUNCTION_ARGS)
Definition: date.c:3125
const char * pg_get_timezone_name(pg_tz *tz)
Definition: localtime.c:1989
Definition: zic.c:94
text * cstring_to_text(const char *s)
Definition: varlena.c:192

References cstring_to_text(), DirectFunctionCall2, pg_get_timezone_name(), PG_GETARG_DATUM, PointerGetDatum(), session_timezone, and timetz_zone().

◆ timetz_cmp()

Datum timetz_cmp ( PG_FUNCTION_ARGS  )

Definition at line 2589 of file date.c.

2590{
2591 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2592 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2593
2594 PG_RETURN_INT32(timetz_cmp_internal(time1, time2));
2595}

References PG_GETARG_TIMETZADT_P, PG_RETURN_INT32, and timetz_cmp_internal().

Referenced by compareDatetime().

◆ timetz_cmp_internal()

static int timetz_cmp_internal ( TimeTzADT time1,
TimeTzADT time2 
)
static

Definition at line 2508 of file date.c.

2509{
2510 TimeOffset t1,
2511 t2;
2512
2513 /* Primary sort is by true (GMT-equivalent) time */
2514 t1 = time1->time + (time1->zone * USECS_PER_SEC);
2515 t2 = time2->time + (time2->zone * USECS_PER_SEC);
2516
2517 if (t1 > t2)
2518 return 1;
2519 if (t1 < t2)
2520 return -1;
2521
2522 /*
2523 * If same GMT time, sort by timezone; we only want to say that two
2524 * timetz's are equal if both the time and zone parts are equal.
2525 */
2526 if (time1->zone > time2->zone)
2527 return 1;
2528 if (time1->zone < time2->zone)
2529 return -1;
2530
2531 return 0;
2532}

References TimeTzADT::time, USECS_PER_SEC, and TimeTzADT::zone.

Referenced by in_range_timetz_interval(), timetz_cmp(), timetz_eq(), timetz_ge(), timetz_gt(), timetz_larger(), timetz_le(), timetz_lt(), timetz_ne(), and timetz_smaller().

◆ timetz_eq()

Datum timetz_eq ( PG_FUNCTION_ARGS  )

Definition at line 2535 of file date.c.

2536{
2537 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2538 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2539
2540 PG_RETURN_BOOL(timetz_cmp_internal(time1, time2) == 0);
2541}

References PG_GETARG_TIMETZADT_P, PG_RETURN_BOOL, and timetz_cmp_internal().

◆ timetz_ge()

Datum timetz_ge ( PG_FUNCTION_ARGS  )

Definition at line 2580 of file date.c.

2581{
2582 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2583 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2584
2585 PG_RETURN_BOOL(timetz_cmp_internal(time1, time2) >= 0);
2586}

References PG_GETARG_TIMETZADT_P, PG_RETURN_BOOL, and timetz_cmp_internal().

◆ timetz_gt()

Datum timetz_gt ( PG_FUNCTION_ARGS  )

Definition at line 2571 of file date.c.

2572{
2573 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2574 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2575
2576 PG_RETURN_BOOL(timetz_cmp_internal(time1, time2) > 0);
2577}

References PG_GETARG_TIMETZADT_P, PG_RETURN_BOOL, and timetz_cmp_internal().

◆ timetz_hash()

Datum timetz_hash ( PG_FUNCTION_ARGS  )

Definition at line 2598 of file date.c.

2599{
2601 uint32 thash;
2602
2603 /*
2604 * To avoid any problems with padding bytes in the struct, we figure the
2605 * field hashes separately and XOR them.
2606 */
2608 Int64GetDatumFast(key->time)));
2609 thash ^= DatumGetUInt32(hash_uint32(key->zone));
2610 PG_RETURN_UINT32(thash);
2611}
uint32_t uint32
Definition: c.h:502
#define PG_RETURN_UINT32(x)
Definition: fmgr.h:355
#define DirectFunctionCall1(func, arg1)
Definition: fmgr.h:682
static uint32 DatumGetUInt32(Datum X)
Definition: postgres.h:227
#define Int64GetDatumFast(X)
Definition: postgres.h:559

References DatumGetUInt32(), DirectFunctionCall1, hash_uint32(), hashint8(), Int64GetDatumFast, sort-test::key, PG_GETARG_TIMETZADT_P, and PG_RETURN_UINT32.

◆ timetz_hash_extended()

Datum timetz_hash_extended ( PG_FUNCTION_ARGS  )

Definition at line 2614 of file date.c.

2615{
2617 Datum seed = PG_GETARG_DATUM(1);
2618 uint64 thash;
2619
2620 /* Same approach as timetz_hash */
2622 Int64GetDatumFast(key->time),
2623 seed));
2625 DatumGetInt64(seed)));
2626 PG_RETURN_UINT64(thash);
2627}
uint64_t uint64
Definition: c.h:503
#define PG_RETURN_UINT64(x)
Definition: fmgr.h:369
static uint64 DatumGetUInt64(Datum X)
Definition: postgres.h:424
static int64 DatumGetInt64(Datum X)
Definition: postgres.h:390

References DatumGetInt64(), DatumGetUInt64(), DirectFunctionCall2, hash_uint32_extended(), hashint8extended(), Int64GetDatumFast, sort-test::key, PG_GETARG_DATUM, PG_GETARG_TIMETZADT_P, and PG_RETURN_UINT64.

◆ timetz_in()

Datum timetz_in ( PG_FUNCTION_ARGS  )

Definition at line 2338 of file date.c.

2339{
2340 char *str = PG_GETARG_CSTRING(0);
2341#ifdef NOT_USED
2342 Oid typelem = PG_GETARG_OID(1);
2343#endif
2344 int32 typmod = PG_GETARG_INT32(2);
2345 Node *escontext = fcinfo->context;
2346 TimeTzADT *result;
2347 fsec_t fsec;
2348 struct pg_tm tt,
2349 *tm = &tt;
2350 int tz;
2351 int nf;
2352 int dterr;
2353 char workbuf[MAXDATELEN + 1];
2354 char *field[MAXDATEFIELDS];
2355 int dtype;
2356 int ftype[MAXDATEFIELDS];
2357 DateTimeErrorExtra extra;
2358
2359 dterr = ParseDateTime(str, workbuf, sizeof(workbuf),
2360 field, ftype, MAXDATEFIELDS, &nf);
2361 if (dterr == 0)
2362 dterr = DecodeTimeOnly(field, ftype, nf,
2363 &dtype, tm, &fsec, &tz, &extra);
2364 if (dterr != 0)
2365 {
2366 DateTimeParseError(dterr, &extra, str, "time with time zone",
2367 escontext);
2369 }
2370
2371 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
2372 tm2timetz(tm, fsec, tz, result);
2373 AdjustTimeForTypmod(&(result->time), typmod);
2374
2375 PG_RETURN_TIMETZADT_P(result);
2376}

References AdjustTimeForTypmod(), DateTimeParseError(), DecodeTimeOnly(), MAXDATEFIELDS, MAXDATELEN, palloc(), ParseDateTime(), PG_GETARG_CSTRING, PG_GETARG_INT32, PG_GETARG_OID, PG_RETURN_NULL, PG_RETURN_TIMETZADT_P, str, TimeTzADT::time, tm, and tm2timetz().

◆ timetz_izone()

Datum timetz_izone ( PG_FUNCTION_ARGS  )

Definition at line 3187 of file date.c.

3188{
3191 TimeTzADT *result;
3192 int tz;
3193
3195 ereport(ERROR,
3196 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3197 errmsg("interval time zone \"%s\" must be finite",
3199 PointerGetDatum(zone))))));
3200
3201 if (zone->month != 0 || zone->day != 0)
3202 ereport(ERROR,
3203 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3204 errmsg("interval time zone \"%s\" must not include months or days",
3206 PointerGetDatum(zone))))));
3207
3208 tz = -(zone->time / USECS_PER_SEC);
3209
3210 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
3211
3212 result->time = time->time + (time->zone - tz) * USECS_PER_SEC;
3213 /* C99 modulo has the wrong sign convention for negative input */
3214 while (result->time < INT64CONST(0))
3215 result->time += USECS_PER_DAY;
3216 if (result->time >= USECS_PER_DAY)
3217 result->time %= USECS_PER_DAY;
3218
3219 result->zone = tz;
3220
3221 PG_RETURN_TIMETZADT_P(result);
3222}
Datum interval_out(PG_FUNCTION_ARGS)
Definition: timestamp.c:973
if(TABLE==NULL||TABLE_index==NULL)
Definition: isn.c:81
static char * DatumGetCString(Datum X)
Definition: postgres.h:340

References DatumGetCString(), DirectFunctionCall1, ereport, errcode(), errmsg(), ERROR, if(), INT64CONST, INTERVAL_NOT_FINITE, interval_out(), palloc(), PG_GETARG_INTERVAL_P, PG_GETARG_TIMETZADT_P, PG_RETURN_TIMETZADT_P, PointerGetDatum(), TimeTzADT::time, USECS_PER_DAY, USECS_PER_SEC, and TimeTzADT::zone.

◆ timetz_larger()

Datum timetz_larger ( PG_FUNCTION_ARGS  )

Definition at line 2630 of file date.c.

2631{
2632 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2633 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2634 TimeTzADT *result;
2635
2636 if (timetz_cmp_internal(time1, time2) > 0)
2637 result = time1;
2638 else
2639 result = time2;
2640 PG_RETURN_TIMETZADT_P(result);
2641}

References PG_GETARG_TIMETZADT_P, PG_RETURN_TIMETZADT_P, and timetz_cmp_internal().

◆ timetz_le()

Datum timetz_le ( PG_FUNCTION_ARGS  )

Definition at line 2562 of file date.c.

2563{
2564 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2565 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2566
2567 PG_RETURN_BOOL(timetz_cmp_internal(time1, time2) <= 0);
2568}

References PG_GETARG_TIMETZADT_P, PG_RETURN_BOOL, and timetz_cmp_internal().

◆ timetz_lt()

Datum timetz_lt ( PG_FUNCTION_ARGS  )

Definition at line 2553 of file date.c.

2554{
2555 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2556 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2557
2558 PG_RETURN_BOOL(timetz_cmp_internal(time1, time2) < 0);
2559}

References PG_GETARG_TIMETZADT_P, PG_RETURN_BOOL, and timetz_cmp_internal().

◆ timetz_mi_interval()

Datum timetz_mi_interval ( PG_FUNCTION_ARGS  )

Definition at line 2688 of file date.c.

2689{
2691 Interval *span = PG_GETARG_INTERVAL_P(1);
2692 TimeTzADT *result;
2693
2694 if (INTERVAL_NOT_FINITE(span))
2695 ereport(ERROR,
2696 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2697 errmsg("cannot subtract infinite interval from time")));
2698
2699 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
2700
2701 result->time = time->time - span->time;
2702 result->time -= result->time / USECS_PER_DAY * USECS_PER_DAY;
2703 if (result->time < INT64CONST(0))
2704 result->time += USECS_PER_DAY;
2705
2706 result->zone = time->zone;
2707
2708 PG_RETURN_TIMETZADT_P(result);
2709}

References ereport, errcode(), errmsg(), ERROR, INT64CONST, INTERVAL_NOT_FINITE, palloc(), PG_GETARG_INTERVAL_P, PG_GETARG_TIMETZADT_P, PG_RETURN_TIMETZADT_P, Interval::time, TimeTzADT::time, USECS_PER_DAY, and TimeTzADT::zone.

◆ timetz_ne()

Datum timetz_ne ( PG_FUNCTION_ARGS  )

Definition at line 2544 of file date.c.

2545{
2546 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2547 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2548
2549 PG_RETURN_BOOL(timetz_cmp_internal(time1, time2) != 0);
2550}

References PG_GETARG_TIMETZADT_P, PG_RETURN_BOOL, and timetz_cmp_internal().

◆ timetz_out()

Datum timetz_out ( PG_FUNCTION_ARGS  )

Definition at line 2379 of file date.c.

2380{
2382 char *result;
2383 struct pg_tm tt,
2384 *tm = &tt;
2385 fsec_t fsec;
2386 int tz;
2387 char buf[MAXDATELEN + 1];
2388
2389 timetz2tm(time, tm, &fsec, &tz);
2390 EncodeTimeOnly(tm, fsec, true, tz, DateStyle, buf);
2391
2392 result = pstrdup(buf);
2393 PG_RETURN_CSTRING(result);
2394}
int timetz2tm(TimeTzADT *time, struct pg_tm *tm, fsec_t *fsec, int *tzp)
Definition: date.c:2468

References buf, DateStyle, EncodeTimeOnly(), MAXDATELEN, PG_GETARG_TIMETZADT_P, PG_RETURN_CSTRING, pstrdup(), timetz2tm(), and tm.

Referenced by ExecGetJsonValueItemString().

◆ timetz_part()

Datum timetz_part ( PG_FUNCTION_ARGS  )

Definition at line 3109 of file date.c.

3110{
3111 return timetz_part_common(fcinfo, false);
3112}

References timetz_part_common().

◆ timetz_part_common()

static Datum timetz_part_common ( PG_FUNCTION_ARGS  ,
bool  retnumeric 
)
static

Definition at line 2992 of file date.c.

2993{
2994 text *units = PG_GETARG_TEXT_PP(0);
2996 int64 intresult;
2997 int type,
2998 val;
2999 char *lowunits;
3000
3001 lowunits = downcase_truncate_identifier(VARDATA_ANY(units),
3002 VARSIZE_ANY_EXHDR(units),
3003 false);
3004
3005 type = DecodeUnits(0, lowunits, &val);
3006 if (type == UNKNOWN_FIELD)
3007 type = DecodeSpecial(0, lowunits, &val);
3008
3009 if (type == UNITS)
3010 {
3011 int tz;
3012 fsec_t fsec;
3013 struct pg_tm tt,
3014 *tm = &tt;
3015
3016 timetz2tm(time, tm, &fsec, &tz);
3017
3018 switch (val)
3019 {
3020 case DTK_TZ:
3021 intresult = -tz;
3022 break;
3023
3024 case DTK_TZ_MINUTE:
3025 intresult = (-tz / SECS_PER_MINUTE) % MINS_PER_HOUR;
3026 break;
3027
3028 case DTK_TZ_HOUR:
3029 intresult = -tz / SECS_PER_HOUR;
3030 break;
3031
3032 case DTK_MICROSEC:
3033 intresult = tm->tm_sec * INT64CONST(1000000) + fsec;
3034 break;
3035
3036 case DTK_MILLISEC:
3037 if (retnumeric)
3038 /*---
3039 * tm->tm_sec * 1000 + fsec / 1000
3040 * = (tm->tm_sec * 1'000'000 + fsec) / 1000
3041 */
3043 else
3044 PG_RETURN_FLOAT8(tm->tm_sec * 1000.0 + fsec / 1000.0);
3045 break;
3046
3047 case DTK_SECOND:
3048 if (retnumeric)
3049 /*---
3050 * tm->tm_sec + fsec / 1'000'000
3051 * = (tm->tm_sec * 1'000'000 + fsec) / 1'000'000
3052 */
3054 else
3055 PG_RETURN_FLOAT8(tm->tm_sec + fsec / 1000000.0);
3056 break;
3057
3058 case DTK_MINUTE:
3059 intresult = tm->tm_min;
3060 break;
3061
3062 case DTK_HOUR:
3063 intresult = tm->tm_hour;
3064 break;
3065
3066 case DTK_DAY:
3067 case DTK_MONTH:
3068 case DTK_QUARTER:
3069 case DTK_YEAR:
3070 case DTK_DECADE:
3071 case DTK_CENTURY:
3072 case DTK_MILLENNIUM:
3073 default:
3074 ereport(ERROR,
3075 (errcode(ERRCODE_FEATURE_NOT_SUPPORTED),
3076 errmsg("unit \"%s\" not supported for type %s",
3077 lowunits, format_type_be(TIMETZOID))));
3078 intresult = 0;
3079 }
3080 }
3081 else if (type == RESERV && val == DTK_EPOCH)
3082 {
3083 if (retnumeric)
3084 /*---
3085 * time->time / 1'000'000 + time->zone
3086 * = (time->time + time->zone * 1'000'000) / 1'000'000
3087 */
3088 PG_RETURN_NUMERIC(int64_div_fast_to_numeric(time->time + time->zone * INT64CONST(1000000), 6));
3089 else
3090 PG_RETURN_FLOAT8(time->time / 1000000.0 + time->zone);
3091 }
3092 else
3093 {
3094 ereport(ERROR,
3095 (errcode(ERRCODE_INVALID_PARAMETER_VALUE),
3096 errmsg("unit \"%s\" not recognized for type %s",
3097 lowunits, format_type_be(TIMETZOID))));
3098 intresult = 0;
3099 }
3100
3101 if (retnumeric)
3103 else
3104 PG_RETURN_FLOAT8(intresult);
3105}
#define SECS_PER_HOUR
Definition: timestamp.h:127

References DecodeSpecial(), DecodeUnits(), downcase_truncate_identifier(), DTK_CENTURY, DTK_DAY, DTK_DECADE, DTK_EPOCH, DTK_HOUR, DTK_MICROSEC, DTK_MILLENNIUM, DTK_MILLISEC, DTK_MINUTE, DTK_MONTH, DTK_QUARTER, DTK_SECOND, DTK_TZ, DTK_TZ_HOUR, DTK_TZ_MINUTE, DTK_YEAR, ereport, errcode(), errmsg(), ERROR, format_type_be(), int64_div_fast_to_numeric(), int64_to_numeric(), INT64CONST, MINS_PER_HOUR, PG_GETARG_TEXT_PP, PG_GETARG_TIMETZADT_P, PG_RETURN_FLOAT8, PG_RETURN_NUMERIC, RESERV, SECS_PER_HOUR, SECS_PER_MINUTE, TimeTzADT::time, timetz2tm(), tm, pg_tm::tm_hour, pg_tm::tm_min, pg_tm::tm_sec, type, UNITS, UNKNOWN_FIELD, val, VARDATA_ANY, VARSIZE_ANY_EXHDR, and TimeTzADT::zone.

Referenced by extract_timetz(), and timetz_part().

◆ timetz_pl_interval()

Datum timetz_pl_interval ( PG_FUNCTION_ARGS  )

Definition at line 2661 of file date.c.

2662{
2664 Interval *span = PG_GETARG_INTERVAL_P(1);
2665 TimeTzADT *result;
2666
2667 if (INTERVAL_NOT_FINITE(span))
2668 ereport(ERROR,
2669 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2670 errmsg("cannot add infinite interval to time")));
2671
2672 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
2673
2674 result->time = time->time + span->time;
2675 result->time -= result->time / USECS_PER_DAY * USECS_PER_DAY;
2676 if (result->time < INT64CONST(0))
2677 result->time += USECS_PER_DAY;
2678
2679 result->zone = time->zone;
2680
2681 PG_RETURN_TIMETZADT_P(result);
2682}

References ereport, errcode(), errmsg(), ERROR, INT64CONST, INTERVAL_NOT_FINITE, palloc(), PG_GETARG_INTERVAL_P, PG_GETARG_TIMETZADT_P, PG_RETURN_TIMETZADT_P, Interval::time, TimeTzADT::time, USECS_PER_DAY, and TimeTzADT::zone.

◆ timetz_recv()

Datum timetz_recv ( PG_FUNCTION_ARGS  )

Definition at line 2400 of file date.c.

2401{
2403
2404#ifdef NOT_USED
2405 Oid typelem = PG_GETARG_OID(1);
2406#endif
2407 int32 typmod = PG_GETARG_INT32(2);
2408 TimeTzADT *result;
2409
2410 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
2411
2412 result->time = pq_getmsgint64(buf);
2413
2414 if (result->time < INT64CONST(0) || result->time > USECS_PER_DAY)
2415 ereport(ERROR,
2416 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
2417 errmsg("time out of range")));
2418
2419 result->zone = pq_getmsgint(buf, sizeof(result->zone));
2420
2421 /* Check for sane GMT displacement; see notes in datatype/timestamp.h */
2422 if (result->zone <= -TZDISP_LIMIT || result->zone >= TZDISP_LIMIT)
2423 ereport(ERROR,
2424 (errcode(ERRCODE_INVALID_TIME_ZONE_DISPLACEMENT_VALUE),
2425 errmsg("time zone displacement out of range")));
2426
2427 AdjustTimeForTypmod(&(result->time), typmod);
2428
2429 PG_RETURN_TIMETZADT_P(result);
2430}
#define TZDISP_LIMIT
Definition: timestamp.h:144

References AdjustTimeForTypmod(), buf, ereport, errcode(), errmsg(), ERROR, INT64CONST, palloc(), PG_GETARG_INT32, PG_GETARG_OID, PG_GETARG_POINTER, PG_RETURN_TIMETZADT_P, pq_getmsgint(), pq_getmsgint64(), TimeTzADT::time, TZDISP_LIMIT, USECS_PER_DAY, and TimeTzADT::zone.

◆ timetz_scale()

Datum timetz_scale ( PG_FUNCTION_ARGS  )

Definition at line 2490 of file date.c.

2491{
2493 int32 typmod = PG_GETARG_INT32(1);
2494 TimeTzADT *result;
2495
2496 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
2497
2498 result->time = time->time;
2499 result->zone = time->zone;
2500
2501 AdjustTimeForTypmod(&(result->time), typmod);
2502
2503 PG_RETURN_TIMETZADT_P(result);
2504}

References AdjustTimeForTypmod(), palloc(), PG_GETARG_INT32, PG_GETARG_TIMETZADT_P, PG_RETURN_TIMETZADT_P, TimeTzADT::time, and TimeTzADT::zone.

◆ timetz_send()

◆ timetz_smaller()

Datum timetz_smaller ( PG_FUNCTION_ARGS  )

Definition at line 2644 of file date.c.

2645{
2646 TimeTzADT *time1 = PG_GETARG_TIMETZADT_P(0);
2647 TimeTzADT *time2 = PG_GETARG_TIMETZADT_P(1);
2648 TimeTzADT *result;
2649
2650 if (timetz_cmp_internal(time1, time2) < 0)
2651 result = time1;
2652 else
2653 result = time2;
2654 PG_RETURN_TIMETZADT_P(result);
2655}

References PG_GETARG_TIMETZADT_P, PG_RETURN_TIMETZADT_P, and timetz_cmp_internal().

◆ timetz_time()

Datum timetz_time ( PG_FUNCTION_ARGS  )

Definition at line 2880 of file date.c.

2881{
2882 TimeTzADT *timetz = PG_GETARG_TIMETZADT_P(0);
2883 TimeADT result;
2884
2885 /* swallow the time zone and just return the time */
2886 result = timetz->time;
2887
2888 PG_RETURN_TIMEADT(result);
2889}

References PG_GETARG_TIMETZADT_P, PG_RETURN_TIMEADT, and TimeTzADT::time.

Referenced by executeDateTimeMethod().

◆ timetz_zone()

Datum timetz_zone ( PG_FUNCTION_ARGS  )

Definition at line 3125 of file date.c.

3126{
3129 TimeTzADT *result;
3130 int tz;
3131 char tzname[TZ_STRLEN_MAX + 1];
3132 int type,
3133 val;
3134 pg_tz *tzp;
3135
3136 /*
3137 * Look up the requested timezone.
3138 */
3139 text_to_cstring_buffer(zone, tzname, sizeof(tzname));
3140
3141 type = DecodeTimezoneName(tzname, &val, &tzp);
3142
3144 {
3145 /* fixed-offset abbreviation */
3146 tz = -val;
3147 }
3148 else if (type == TZNAME_DYNTZ)
3149 {
3150 /* dynamic-offset abbreviation, resolve using transaction start time */
3152 int isdst;
3153
3154 tz = DetermineTimeZoneAbbrevOffsetTS(now, tzname, tzp, &isdst);
3155 }
3156 else
3157 {
3158 /* Get the offset-from-GMT that is valid now for the zone name */
3160 struct pg_tm tm;
3161 fsec_t fsec;
3162
3163 if (timestamp2tm(now, &tz, &tm, &fsec, NULL, tzp) != 0)
3164 ereport(ERROR,
3165 (errcode(ERRCODE_DATETIME_VALUE_OUT_OF_RANGE),
3166 errmsg("timestamp out of range")));
3167 }
3168
3169 result = (TimeTzADT *) palloc(sizeof(TimeTzADT));
3170
3171 result->time = t->time + (t->zone - tz) * USECS_PER_SEC;
3172 /* C99 modulo has the wrong sign convention for negative input */
3173 while (result->time < INT64CONST(0))
3174 result->time += USECS_PER_DAY;
3175 if (result->time >= USECS_PER_DAY)
3176 result->time %= USECS_PER_DAY;
3177
3178 result->zone = tz;
3179
3180 PG_RETURN_TIMETZADT_P(result);
3181}
int DetermineTimeZoneAbbrevOffsetTS(TimestampTz ts, const char *abbr, pg_tz *tzp, int *isdst)
Definition: datetime.c:1794
int DecodeTimezoneName(const char *tzname, int *offset, pg_tz **tz)
Definition: datetime.c:3282
Datum now(PG_FUNCTION_ARGS)
Definition: timestamp.c:1609
#define TZNAME_FIXED_OFFSET
Definition: datetime.h:299
#define TZNAME_DYNTZ
Definition: datetime.h:300
#define TZ_STRLEN_MAX
Definition: pgtime.h:54
Definition: pgtz.h:66
void text_to_cstring_buffer(const text *src, char *dst, size_t dst_len)
Definition: varlena.c:256
TimestampTz GetCurrentTransactionStartTimestamp(void)
Definition: xact.c:870

References DecodeTimezoneName(), DetermineTimeZoneAbbrevOffsetTS(), ereport, errcode(), errmsg(), ERROR, GetCurrentTransactionStartTimestamp(), if(), INT64CONST, now(), palloc(), PG_GETARG_TEXT_PP, PG_GETARG_TIMETZADT_P, PG_RETURN_TIMETZADT_P, text_to_cstring_buffer(), TimeTzADT::time, timestamp2tm(), tm, type, TZ_STRLEN_MAX, TZNAME_DYNTZ, TZNAME_FIXED_OFFSET, USECS_PER_DAY, USECS_PER_SEC, val, and TimeTzADT::zone.

Referenced by timetz_at_local().

◆ timetztypmodin()

Datum timetztypmodin ( PG_FUNCTION_ARGS  )

Definition at line 2448 of file date.c.

2449{
2451
2453}

References anytime_typmodin(), PG_GETARG_ARRAYTYPE_P, and PG_RETURN_INT32.

◆ timetztypmodout()

Datum timetztypmodout ( PG_FUNCTION_ARGS  )

Definition at line 2456 of file date.c.

2457{
2458 int32 typmod = PG_GETARG_INT32(0);
2459
2460 PG_RETURN_CSTRING(anytime_typmodout(true, typmod));
2461}

References anytime_typmodout(), PG_GETARG_INT32, and PG_RETURN_CSTRING.

◆ tm2time()

int tm2time ( struct pg_tm tm,
fsec_t  fsec,
TimeADT result 
)

Definition at line 1481 of file date.c.

1482{
1483 *result = ((((tm->tm_hour * MINS_PER_HOUR + tm->tm_min) * SECS_PER_MINUTE) + tm->tm_sec)
1484 * USECS_PER_SEC) + fsec;
1485 return 0;
1486}

References MINS_PER_HOUR, SECS_PER_MINUTE, tm, pg_tm::tm_hour, pg_tm::tm_min, pg_tm::tm_sec, and USECS_PER_SEC.

Referenced by GetSQLLocalTime(), parse_datetime(), and time_in().

◆ tm2timetz()

int tm2timetz ( struct pg_tm tm,
fsec_t  fsec,
int  tz,
TimeTzADT result 
)

Definition at line 2328 of file date.c.

2329{
2330 result->time = ((((tm->tm_hour * MINS_PER_HOUR + tm->tm_min) * SECS_PER_MINUTE) + tm->tm_sec) *
2331 USECS_PER_SEC) + fsec;
2332 result->zone = tz;
2333
2334 return 0;
2335}

References MINS_PER_HOUR, SECS_PER_MINUTE, TimeTzADT::time, tm, pg_tm::tm_hour, pg_tm::tm_min, pg_tm::tm_sec, USECS_PER_SEC, and TimeTzADT::zone.

Referenced by GetSQLCurrentTime(), parse_datetime(), timestamptz_timetz(), and timetz_in().