MobilityDB
1.0
|
Functions for parsing temporal types. More...
Go to the source code of this file.
Functions | |
void | ensure_end_input (char **str, bool end) |
Ensure there is no more input excepted white spaces. More... | |
void | p_whitespace (char **str) |
Input a white space from the buffer. More... | |
bool | p_obrace (char **str) |
Input an opening brace from the buffer. More... | |
bool | p_cbrace (char **str) |
Input a closing brace from the buffer. More... | |
bool | p_obracket (char **str) |
Input an opening bracket from the buffer. More... | |
bool | p_cbracket (char **str) |
Input a closing bracket from the buffer. More... | |
bool | p_oparen (char **str) |
Input an opening parenthesis from the buffer. More... | |
bool | p_cparen (char **str) |
Input a closing parenthesis from the buffer. More... | |
bool | p_comma (char **str) |
Input a comma from the buffer. More... | |
TBOX * | tbox_parse (char **str) |
Parse a temporal box value from the buffer. More... | |
Datum | basetype_parse (char **str, Oid basetype) |
Parse a base value from the buffer. More... | |
double | double_parse (char **str) |
Input a double from the buffer. More... | |
TimestampTz | timestamp_parse (char **str) |
Parse a timestamp value from the buffer. More... | |
TimestampSet * | timestampset_parse (char **str) |
Parse a timestamp set value from the buffer. More... | |
Period * | period_parse (char **str, bool make) |
Parse a period value from the buffer. More... | |
PeriodSet * | periodset_parse (char **str) |
Parse a period set value from the buffer. More... | |
TInstant * | tinstant_parse (char **str, Oid basetype, bool end, bool make) |
Parse a temporal instant value from the buffer. More... | |
Temporal * | temporal_parse (char **str, Oid basetype) |
Parse a temporal value from the buffer (dispatch function) More... | |
Functions for parsing temporal types.