diff options
author | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-03-18 18:58:05 -0300 |
---|---|---|
committer | Alvaro Herrera <alvherre@alvh.no-ip.org> | 2020-03-18 18:58:05 -0300 |
commit | 487e9861d0cf83e9100ad0d0369147db3ef4ea73 (patch) | |
tree | f3cc3f4e8c89154a4d12800c1d4df86ca0161cc3 /src/include | |
parent | b029395f5e616e0f2b1131b2c7ecb6640f30c055 (diff) | |
download | postgresql-487e9861d0cf83e9100ad0d0369147db3ef4ea73.tar.gz postgresql-487e9861d0cf83e9100ad0d0369147db3ef4ea73.zip |
Enable BEFORE row-level triggers for partitioned tables
... with the limitation that the tuple must remain in the same
partition.
Reviewed-by: Ashutosh Bapat
Discussion: https://postgr.es/m/20200227165158.GA2071@alvherre.pgsql
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/utils/reltrigger.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include/utils/reltrigger.h b/src/include/utils/reltrigger.h index 28df43d8335..b22acb034e9 100644 --- a/src/include/utils/reltrigger.h +++ b/src/include/utils/reltrigger.h @@ -29,6 +29,7 @@ typedef struct Trigger int16 tgtype; char tgenabled; bool tgisinternal; + bool tgisclone; Oid tgconstrrelid; Oid tgconstrindid; Oid tgconstraint; |