aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2010-12-04 03:21:49 -0500
committerTom Lane <tgl@sss.pgh.pa.us>2010-12-04 03:21:49 -0500
commite194a942f98caf0b278e3ba30a85545ac790ea1d (patch)
treef7bd8ab1e420c6db2fec95adedb615dd7bb3a23d /src
parentb525bf771e31a2254f28bf25c6ed7987d64c8afb (diff)
downloadpostgresql-e194a942f98caf0b278e3ba30a85545ac790ea1d.tar.gz
postgresql-e194a942f98caf0b278e3ba30a85545ac790ea1d.zip
Update comment to match later code changes.
Diffstat (limited to 'src')
-rw-r--r--src/include/access/gist_private.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/access/gist_private.h b/src/include/access/gist_private.h
index 1a0e1ea72ed..058435cfe56 100644
--- a/src/include/access/gist_private.h
+++ b/src/include/access/gist_private.h
@@ -118,7 +118,7 @@ typedef struct GISTScanOpaqueData
/* pre-allocated workspace arrays */
GISTSearchTreeItem *tmpTreeItem; /* workspace to pass to rb_insert */
- double *distances; /* workspace for computeKeyTupleDistance */
+ double *distances; /* output area for gistindex_keytest */
/* In a non-ordered search, returnable heap items are stored here: */
GISTSearchHeapItem pageData[BLCKSZ / sizeof(IndexTupleData)];