diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2012-01-29 19:23:56 -0500 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2012-01-29 19:23:56 -0500 |
commit | ad10853b30b84d89905e023afa599de3a1fea4c6 (patch) | |
tree | 3ba5f3eaebdb3c01fd6acf715b5794b1b0f123b4 /src/backend/access/gist/gistutil.c | |
parent | dd243b3e40c24cd7c6b0db80bb39061f8f85af7b (diff) | |
download | postgresql-ad10853b30b84d89905e023afa599de3a1fea4c6.tar.gz postgresql-ad10853b30b84d89905e023afa599de3a1fea4c6.zip |
Assorted comment fixes, mostly just typos, but some obsolete statements.
YAMAMOTO Takashi
Diffstat (limited to 'src/backend/access/gist/gistutil.c')
-rw-r--r-- | src/backend/access/gist/gistutil.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/access/gist/gistutil.c b/src/backend/access/gist/gistutil.c index ad27b638ea5..8039b5d569c 100644 --- a/src/backend/access/gist/gistutil.c +++ b/src/backend/access/gist/gistutil.c @@ -22,7 +22,7 @@ #include "utils/builtins.h" /* - * static *S used for temrorary storage (saves stack and palloc() call) + * static *S used for temporary storage (saves stack and palloc() call) */ static Datum attrS[INDEX_MAX_KEYS]; @@ -148,8 +148,8 @@ gistfillitupvec(IndexTuple *vec, int veclen, int *memlen) } /* - * Make unions of keys in IndexTuple vector, return FALSE if itvec contains - * invalid tuple. Resulting Datums aren't compressed. + * Make unions of keys in IndexTuple vector. + * Resulting Datums aren't compressed. */ void |