From c13dc6402b6e99af9a8b7794e44d62deecafc745 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Thu, 19 May 2011 01:14:45 +0300 Subject: Spell checking and markup refinement --- src/backend/access/gist/gist.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/access/gist/gist.c') diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 4881a7dd48b..0e779e09d71 100644 --- a/src/backend/access/gist/gist.c +++ b/src/backend/access/gist/gist.c @@ -227,7 +227,7 @@ gistbuildempty(PG_FUNCTION_ARGS) { ereport(ERROR, (errcode(ERRCODE_FEATURE_NOT_SUPPORTED), - errmsg("unlogged GIST indexes are not supported"))); + errmsg("unlogged GiST indexes are not supported"))); PG_RETURN_VOID(); } @@ -1405,7 +1405,7 @@ initGISTstate(GISTSTATE *giststate, Relation index) * functions don't care about collation, so we just do it * unconditionally. (We could alternatively call get_typcollation, * but that seems like expensive overkill --- there aren't going to be - * any cases where a GIST storage type has a nondefault collation.) + * any cases where a GiST storage type has a nondefault collation.) */ if (OidIsValid(index->rd_indcollation[i])) giststate->supportCollation[i] = index->rd_indcollation[i]; -- cgit v1.2.3