View Revisions: Issue #2980

Summary 0002980: Support transactional sync triggers on platforms where ddl can be transactional
Revision 2019-05-14 17:09 by elong
Description Postgres supports DDL transactions.

This will allow triggers to be synchronized on a busy system without the chance for missing an during the drop and re-create of a trigger. The transaction would start with the "drop trigger" and keep the table locked until the "create trigger" completes and commits.
Revision 2017-02-03 14:11 by chenson
Description Postgres supports DDL transactions.

This will allow triggers to be synchronized on a busy system without the chance for missing an update between the drop and create of a trigger.
Revision 2017-02-03 14:10 by chenson
Description Postgres supports DDL transactions