-
Notifications
You must be signed in to change notification settings - Fork 17
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
dd4d8da
commit c2e7104
Showing
7 changed files
with
43 additions
and
3 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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
from dbt.tests.adapter.column_types.test_column_types import BaseColumnTypes | ||
from dbt.tests.adapter.column_types.test_column_types import BasePostgresColumnTypes | ||
|
||
|
||
class TestPostgresColumnTypes(BaseColumnTypes): | ||
class TestPostgresColumnTypes(BasePostgresColumnTypes): | ||
pass |
16 changes: 16 additions & 0 deletions
16
tests/functional/shared_tests/test_hooks/data/seed_model.sql
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 | ||
); |
16 changes: 16 additions & 0 deletions
16
tests/functional/shared_tests/test_hooks/data/seed_run.sql
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 | ||
); |
4 changes: 4 additions & 0 deletions
4
tests/functional/shared_tests/test_hooks.py → ...nal/shared_tests/test_hooks/test_hooks.py
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
File renamed without changes.
4 changes: 4 additions & 0 deletions
4
...nctional/shared_tests/test_simple_seed.py → ...ests/test_simple_seed/test_simple_seed.py
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