projects
/
users
/
rhaas
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1cdc6d8
)
Add comment missing in a4a232b1e702
author
Alvaro Herrera
<alvherre@alvh.no-ip.org>
Tue, 22 Aug 2023 10:22:03 +0000
(12:22 +0200)
committer
Alvaro Herrera
<alvherre@alvh.no-ip.org>
Tue, 22 Aug 2023 10:22:21 +0000
(12:22 +0200)
Noticed while studying nearby code
src/backend/catalog/heap.c
patch
|
blob
|
blame
|
history
diff --git
a/src/backend/catalog/heap.c
b/src/backend/catalog/heap.c
index 4c30c7d461f8af570c5432dacb457e6eed8c5540..96d5885d863420b61f444be4991fa4d015fadc42 100644
(file)
--- a/
src/backend/catalog/heap.c
+++ b/
src/backend/catalog/heap.c
@@
-2215,6
+2215,8
@@
StoreConstraints(Relation rel, List *cooked_constraints, bool is_internal)
* allow_merge: true if check constraints may be merged with existing ones
* is_local: true if definition is local, false if it's inherited
* is_internal: true if result of some internal process, not a user request
+ * queryString: used during expression transformation of default values and
+ * cooked CHECK constraints
*
* All entries in newColDefaults will be processed. Entries in newConstraints
* will be processed only if they are CONSTR_CHECK type.