diff options
Diffstat (limited to 'contrib/pg_trgm/trgm_gist.c')
-rw-r--r-- | contrib/pg_trgm/trgm_gist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pg_trgm/trgm_gist.c b/contrib/pg_trgm/trgm_gist.c index e7c21a435b3..4c33a45a229 100644 --- a/contrib/pg_trgm/trgm_gist.c +++ b/contrib/pg_trgm/trgm_gist.c @@ -60,14 +60,14 @@ static const uint8 number_of_ones[256] = { Datum gtrgm_in(PG_FUNCTION_ARGS) { - elog(ERROR, "Not implemented"); + elog(ERROR, "not implemented"); PG_RETURN_DATUM(0); } Datum gtrgm_out(PG_FUNCTION_ARGS) { - elog(ERROR, "Not implemented"); + elog(ERROR, "not implemented"); PG_RETURN_DATUM(0); } |