2018-09-18 09:21:57 +03:00
|
|
|
type: bulk
|
|
|
|
args:
|
|
|
|
- type: run_sql
|
|
|
|
args:
|
|
|
|
sql: |
|
|
|
|
create table hge_tests.test_t1(
|
|
|
|
c1 int,
|
2019-09-13 02:22:01 +03:00
|
|
|
c2 text,
|
|
|
|
c3 json
|
2018-09-18 09:21:57 +03:00
|
|
|
);
|
|
|
|
- type: track_table
|
|
|
|
args:
|
|
|
|
schema: hge_tests
|
|
|
|
name: test_t1
|
|
|
|
- type: create_event_trigger
|
|
|
|
args:
|
2018-09-19 15:12:57 +03:00
|
|
|
name: t1_cols
|
2018-09-18 09:21:57 +03:00
|
|
|
table:
|
|
|
|
schema: hge_tests
|
|
|
|
name: test_t1
|
|
|
|
insert:
|
2018-10-25 10:22:51 +03:00
|
|
|
columns: "*"
|
2018-09-18 09:21:57 +03:00
|
|
|
update:
|
2019-09-13 02:22:01 +03:00
|
|
|
columns: ["c2", "c3"]
|
2018-09-18 09:21:57 +03:00
|
|
|
webhook: http://127.0.0.1:5592
|