#include "postgres.h"
#include "btree_gist.h"
#include "btree_utils_var.h"
#include "utils/builtins.h"
Go to the source code of this file.
Functions | |
PG_FUNCTION_INFO_V1 (gbt_decompress) | |
PG_FUNCTION_INFO_V1 (gbtreekey_in) | |
PG_FUNCTION_INFO_V1 (gbtreekey_out) | |
Datum | gbt_decompress (PG_FUNCTION_ARGS) |
Datum | gbtreekey_in (PG_FUNCTION_ARGS) |
Datum | gbtreekey_out (PG_FUNCTION_ARGS) |
Variables | |
PG_MODULE_MAGIC |
Datum gbt_decompress | ( | PG_FUNCTION_ARGS | ) |
Definition at line 48 of file btree_gist.c.
References PG_GETARG_POINTER, and PG_RETURN_POINTER.
{ PG_RETURN_POINTER(PG_GETARG_POINTER(0)); }
Datum gbtreekey_in | ( | PG_FUNCTION_ARGS | ) |
Definition at line 22 of file btree_gist.c.
References ereport, errcode(), errmsg(), ERROR, NULL, and PG_RETURN_POINTER.
Datum gbtreekey_out | ( | PG_FUNCTION_ARGS | ) |
Definition at line 34 of file btree_gist.c.
References ereport, errcode(), errmsg(), ERROR, NULL, and PG_RETURN_POINTER.
PG_FUNCTION_INFO_V1 | ( | gbtreekey_in | ) |
PG_FUNCTION_INFO_V1 | ( | gbt_decompress | ) |
PG_FUNCTION_INFO_V1 | ( | gbtreekey_out | ) |
Definition at line 8 of file btree_gist.c.