diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2017-08-14 17:29:33 -0400 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2017-08-14 17:29:33 -0400 |
commit | 21d304dfedb4f26d0d6587d9ac39b1b5c499bb55 (patch) | |
tree | bd5328464e037f15bf069fb91d54db06509b459c /src/include/commands/trigger.h | |
parent | 5b6289c1e07dc45f09c3169a189e60d2fcaec2b3 (diff) |
Final pgindent + perltidy run for v10.
Diffstat (limited to 'src/include/commands/trigger.h')
-rw-r--r-- | src/include/commands/trigger.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/src/include/commands/trigger.h b/src/include/commands/trigger.h index 36c1134b649..aeb363f13e8 100644 --- a/src/include/commands/trigger.h +++ b/src/include/commands/trigger.h @@ -75,13 +75,14 @@ typedef struct TransitionCaptureState /* * The tuplestores backing the transition tables. We use separate - * tuplestores for INSERT and UPDATE, because INSERT ... ON CONFLICT - * ... DO UPDATE causes INSERT and UPDATE triggers to fire and needs a way - * to keep track of the new tuple images resulting from the two cases + * tuplestores for INSERT and UPDATE, because INSERT ... ON CONFLICT ... + * DO UPDATE causes INSERT and UPDATE triggers to fire and needs a way to + * keep track of the new tuple images resulting from the two cases * separately. We only need a single old image tuplestore, because there * is no statement that can both update and delete at the same time. */ - Tuplestorestate *tcs_old_tuplestore; /* for DELETE and UPDATE old images */ + Tuplestorestate *tcs_old_tuplestore; /* for DELETE and UPDATE old + * images */ Tuplestorestate *tcs_insert_tuplestore; /* for INSERT new images */ Tuplestorestate *tcs_update_tuplestore; /* for UPDATE new images */ } TransitionCaptureState; |