-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b31d6b8
commit fef956f
Showing
6 changed files
with
38 additions
and
43 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
drop table if exists {schema}.on_model_hook; | ||
|
||
create table {schema}.on_model_hook ( | ||
test_state TEXT, -- start|end | ||
target_dbname TEXT, | ||
target_host TEXT, | ||
target_name TEXT, | ||
target_schema TEXT, | ||
target_type TEXT, | ||
target_user TEXT, | ||
target_pass TEXT, | ||
target_threads INTEGER, | ||
run_started_at TEXT, | ||
invocation_id TEXT, | ||
thread_id TEXT | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
drop table if exists {schema}.on_run_hook; | ||
|
||
create table {schema}.on_run_hook ( | ||
test_state TEXT, -- start|end | ||
target_dbname TEXT, | ||
target_host TEXT, | ||
target_name TEXT, | ||
target_schema TEXT, | ||
target_type TEXT, | ||
target_user TEXT, | ||
target_pass TEXT, | ||
target_threads INTEGER, | ||
run_started_at TEXT, | ||
invocation_id TEXT, | ||
thread_id TEXT | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters