2020-07-10 19:47:05 +03:00
|
|
|
type: bulk
|
|
|
|
args:
|
2021-01-06 19:06:24 +03:00
|
|
|
|
2020-07-10 19:47:05 +03:00
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
|
|
|
create table hge_tests.test_t1(
|
|
|
|
c1 int,
|
|
|
|
c2 text
|
|
|
|
);
|
2021-01-06 19:06:24 +03:00
|
|
|
|
2020-07-10 19:47:05 +03:00
|
|
|
- type: track_table
|
|
|
|
args:
|
|
|
|
schema: hge_tests
|
|
|
|
name: test_t1
|
|
|
|
- type: create_event_trigger
|
|
|
|
args:
|
|
|
|
name: t1_timeout_long
|
|
|
|
table:
|
|
|
|
schema: hge_tests
|
|
|
|
name: test_t1
|
|
|
|
insert:
|
2021-01-06 19:06:24 +03:00
|
|
|
columns: '*'
|
2020-07-10 19:47:05 +03:00
|
|
|
update:
|
2021-01-06 19:06:24 +03:00
|
|
|
columns: '*'
|
2020-07-10 19:47:05 +03:00
|
|
|
delete:
|
2021-01-06 19:06:24 +03:00
|
|
|
columns: '*'
|
2020-07-10 19:47:05 +03:00
|
|
|
webhook: http://127.0.0.1:5592/timeout_long
|