diff options
| author | Tom Lane | 2015-05-23 19:22:25 +0000 |
|---|---|---|
| committer | Tom Lane | 2015-05-23 19:22:25 +0000 |
| commit | 821b821a2421beaa58225ff000833df69fb962c5 (patch) | |
| tree | a21b7bfa9eb85a1dad9a9cc2549e67508b3f3c15 /src/include/access | |
| parent | 284bef297733e553c73f1c858e0ce1532f754d18 (diff) | |
Still more fixes for lossy-GiST-distance-functions patch.
Fix confusion in documentation, substantial memory leakage if float8 or
float4 are pass-by-reference, and assorted comments that were obsoleted
by commit 98edd617f3b62a02cb2df9b418fcc4ece45c7ec0.
Diffstat (limited to 'src/include/access')
| -rw-r--r-- | src/include/access/relscan.h | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/src/include/access/relscan.h b/src/include/access/relscan.h index 1b9b2993957..29f5b35b326 100644 --- a/src/include/access/relscan.h +++ b/src/include/access/relscan.h @@ -95,12 +95,13 @@ typedef struct IndexScanDescData /* * When fetching with an ordering operator, the values of the ORDER BY * expressions of the last returned tuple, according to the index. If - * xs_recheck is true, these need to be rechecked just like the scan keys, - * and the values returned here are a lower-bound on the actual values. + * xs_recheckorderby is true, these need to be rechecked just like the + * scan keys, and the values returned here are a lower-bound on the actual + * values. */ Datum *xs_orderbyvals; bool *xs_orderbynulls; - bool xs_recheckorderby; /* T means ORDER BY exprs must be rechecked */ + bool xs_recheckorderby; /* state data for traversing HOT chains in index_getnext */ bool xs_continue_hot; /* T if must keep walking HOT chain */ |
