Commit 3f712ea6 authored by David Rowley's avatar David Rowley

Fix incorrect comments for Memoize struct

Reported-by: Peter Eisentraut
Discussion: https://postgr.es/m/0635f5aa-4973-8dc2-4e4e-df9fd5778a65@enterprisedb.com
Backpatch-through: 14, where Memoize was added
parent e8b93c6e
...@@ -806,8 +806,9 @@ typedef struct Memoize ...@@ -806,8 +806,9 @@ typedef struct Memoize
int numKeys; /* size of the two arrays below */ int numKeys; /* size of the two arrays below */
Oid *hashOperators; /* hash operators for each key */ Oid *hashOperators; /* hash operators for each key */
Oid *collations; /* cache keys */ Oid *collations; /* collations for each key */
List *param_exprs; /* exprs containing parameters */ List *param_exprs; /* cache keys in the form of exprs containing
* parameters */
bool singlerow; /* true if the cache entry should be marked as bool singlerow; /* true if the cache entry should be marked as
* complete after we store the first tuple in * complete after we store the first tuple in
* it. */ * it. */
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment