提交 1931a206 编写于 作者: S Serge Rider

#978 PG trigger properties fix

上级 7c5c7c6b
...@@ -89,7 +89,7 @@ public class PostgreTrigger implements DBSTrigger, DBPQualifiedObject, PostgreOb ...@@ -89,7 +89,7 @@ public class PostgreTrigger implements DBSTrigger, DBPQualifiedObject, PostgreOb
} else { } else {
actionTiming = DBSActionTiming.AFTER; actionTiming = DBSActionTiming.AFTER;
} }
List<DBSManipulationType> mt = new ArrayList<>(); List<DBSManipulationType> mt = new ArrayList<>(1);
if (CommonUtils.isBitSet(tgType, TRIGGER_TYPE_INSERT)) { if (CommonUtils.isBitSet(tgType, TRIGGER_TYPE_INSERT)) {
mt.add(DBSManipulationType.INSERT); mt.add(DBSManipulationType.INSERT);
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册