diff options
author | David Rowley <drowley@postgresql.org> | 2022-05-19 17:14:56 +1200 |
---|---|---|
committer | David Rowley <drowley@postgresql.org> | 2022-05-19 17:14:56 +1200 |
commit | 3f712ea6dc40a0c9d5cf96907655343039601473 (patch) | |
tree | 9fad97a58f3633c946006aa5e4d8f8b337197a33 /src | |
parent | e8b93c6e2810306887dc8477aab88ae08cf335f9 (diff) | |
download | postgresql-3f712ea6dc40a0c9d5cf96907655343039601473.tar.gz postgresql-3f712ea6dc40a0c9d5cf96907655343039601473.zip |
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
Diffstat (limited to 'src')
-rw-r--r-- | src/include/nodes/plannodes.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/nodes/plannodes.h b/src/include/nodes/plannodes.h index 9ac4d9af125..2308c80ddee 100644 --- a/src/include/nodes/plannodes.h +++ b/src/include/nodes/plannodes.h @@ -806,8 +806,9 @@ typedef struct Memoize int numKeys; /* size of the two arrays below */ Oid *hashOperators; /* hash operators for each key */ - Oid *collations; /* cache keys */ - List *param_exprs; /* exprs containing parameters */ + Oid *collations; /* collations for each key */ + List *param_exprs; /* cache keys in the form of exprs containing + * parameters */ bool singlerow; /* true if the cache entry should be marked as * complete after we store the first tuple in * it. */ |