diff options
Diffstat (limited to 'contrib/pg_trgm/trgm_gist.c')
-rw-r--r-- | contrib/pg_trgm/trgm_gist.c | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/contrib/pg_trgm/trgm_gist.c b/contrib/pg_trgm/trgm_gist.c index c572d0f90f7..ede969f424c 100644 --- a/contrib/pg_trgm/trgm_gist.c +++ b/contrib/pg_trgm/trgm_gist.c @@ -28,34 +28,15 @@ typedef struct PG_FUNCTION_INFO_V1(gtrgm_in); -Datum gtrgm_in(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_out); -Datum gtrgm_out(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_compress); -Datum gtrgm_compress(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_decompress); -Datum gtrgm_decompress(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_consistent); -Datum gtrgm_consistent(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_distance); -Datum gtrgm_distance(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_union); -Datum gtrgm_union(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_same); -Datum gtrgm_same(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_penalty); -Datum gtrgm_penalty(PG_FUNCTION_ARGS); - PG_FUNCTION_INFO_V1(gtrgm_picksplit); -Datum gtrgm_picksplit(PG_FUNCTION_ARGS); /* Number of one-bits in an unsigned byte */ static const uint8 number_of_ones[256] = { |