diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2011-05-19 01:14:45 +0300 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2011-05-19 01:14:45 +0300 |
commit | c13dc6402b6e99af9a8b7794e44d62deecafc745 (patch) | |
tree | 01a298d489f36f803fc118bb1cfdbfb3f8ef9252 /src/backend/access/gist/gist.c | |
parent | 0ee391b77a8aef3835a39ecc4856a9ab79936f56 (diff) | |
download | postgresql-c13dc6402b6e99af9a8b7794e44d62deecafc745.tar.gz |
Spell checking and markup refinement
Diffstat (limited to 'src/backend/access/gist/gist.c')
-rw-r--r-- | src/backend/access/gist/gist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/access/gist/gist.c b/src/backend/access/gist/gist.c index 4881a7dd48..0e779e09d7 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]; |