summaryrefslogtreecommitdiff
path: root/src/backend/commands
diff options
context:
space:
mode:
authorAndres Freund2015-05-08 16:00:01 +0000
committerAndres Freund2015-05-08 17:24:14 +0000
commite8898e9169c851c2b8c98f981c1c4755a5758f8e (patch)
tree58f806e29a38e17e49838da4fa7d8c73dd8f996e /src/backend/commands
parent53bb309d2d5a9432d2602c93ed18e58bd2924e15 (diff)
Minor ON CONFLICT related comments and doc fixes.
Geoff Winkless, Stephen Frost, Peter Geoghegan and me.
Diffstat (limited to 'src/backend/commands')
-rw-r--r--src/backend/commands/trigger.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/backend/commands/trigger.c b/src/backend/commands/trigger.c
index b537ca5e661..d9b9587f1e6 100644
--- a/src/backend/commands/trigger.c
+++ b/src/backend/commands/trigger.c
@@ -66,10 +66,10 @@ int SessionReplicationRole = SESSION_REPLICATION_ROLE_ORIGIN;
static int MyTriggerDepth = 0;
/*
- * Note that similar macros also exists in executor/execMain.c. There does not
- * appear to be any good header to put it into, given the structures that it
- * uses, so we let them be duplicated. Be sure to update both if one needs to
- * be changed, however.
+ * Note that similar macros also exist in executor/execMain.c. There does not
+ * appear to be any good header to put them into, given the structures that
+ * they use, so we let them be duplicated. Be sure to update all if one needs
+ * to be changed, however.
*/
#define GetUpdatedColumns(relinfo, estate) \
(rt_fetch((relinfo)->ri_RangeTableIndex, (estate)->es_range_table)->updatedCols)