![]() |
MobilityDB 1.3
|
Go to the source code of this file.
Data Structures | |
struct | Interval |
struct | varlena |
Macros | |
#define | DatumGetPointer(X) ((Pointer) (X)) |
Typedefs | |
typedef struct varlena | bytea |
typedef int32 | DateADT |
typedef uintptr_t | Datum |
typedef int32 | fsec_t |
typedef signed short | int16 |
typedef signed int | int32 |
typedef long int | int64 |
typedef signed char | int8 |
typedef char * | Pointer |
typedef varlena | text |
typedef int64 | TimeADT |
typedef int64 | TimeOffset |
typedef int64 | Timestamp |
typedef int64 | TimestampTz |
typedef unsigned short | uint16 |
typedef unsigned int | uint32 |
typedef unsigned long int | uint64 |
typedef unsigned char | uint8 |
typedef struct varlena | varlena |
Functions | |
DateADT | date_in (const char *str) |
Return a date from its string representation. More... | |
char * | date_out (DateADT d) |
Return the string representation of a date. More... | |
int | interval_cmp (const Interval *interv1, const Interval *interv2) |
Return the comparison of two intervals. More... | |
Interval * | interval_in (const char *str, int32 typmod) |
Return an interval from its string representation. More... | |
char * | interval_out (const Interval *interv) |
Return the string representation of an interval. More... | |
TimeADT | time_in (const char *str, int32 typmod) |
Return a time from its string representation. More... | |
char * | time_out (TimeADT t) |
Return the string representation of a time. More... | |
Timestamp | timestamp_in (const char *str, int32 typmod) |
Return a timestamp without time zone from its string representation. More... | |
char * | timestamp_out (Timestamp t) |
Return the string representation of a timestamp without timezone. More... | |
TimestampTz | timestamptz_in (const char *str, int32 typmod) |
Return the string representation of a timestamp with time zone. More... | |
char * | timestamptz_out (TimestampTz t) |
Return the string representation of a timestamp with timezone. More... | |