mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-29 13:23:58 +00:00
feat: add triggers to firebird tests
This commit is contained in:
@@ -695,6 +695,21 @@ const firebirdEngine = {
|
|||||||
user: 'SYSDBA',
|
user: 'SYSDBA',
|
||||||
password: 'masterkey',
|
password: 'masterkey',
|
||||||
},
|
},
|
||||||
|
objects: [],
|
||||||
|
triggers: [
|
||||||
|
{
|
||||||
|
testName: 'triggers after each row',
|
||||||
|
create: `CREATE OR ALTER TRIGGER ~obj1 AFTER INSERT ON ~t1 AS BEGIN END;`,
|
||||||
|
drop: 'DROP TRIGGER ~obj1;',
|
||||||
|
objectTypeField: 'triggers',
|
||||||
|
expected: {
|
||||||
|
pureName: 'obj1',
|
||||||
|
tableName: 't1',
|
||||||
|
eventType: 'INSERT',
|
||||||
|
triggerTiming: 'AFTER',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
skipOnCI: false,
|
skipOnCI: false,
|
||||||
// skipChangeColumn: true,
|
// skipChangeColumn: true,
|
||||||
// skipIndexes: true,
|
// skipIndexes: true,
|
||||||
|
|||||||
Reference in New Issue
Block a user