-
Notifications
You must be signed in to change notification settings - Fork 178
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into cmcarthur/add-query-id-to-sqlquerystatus
- Loading branch information
Showing
22 changed files
with
265 additions
and
76 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
kind: Breaking Changes | ||
body: Drop support for Python 3.8 | ||
time: 2024-10-16T18:31:43.4167-04:00 | ||
custom: | ||
Author: mikealfare | ||
Issue: "1211" |
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,6 @@ | ||
kind: Under the Hood | ||
body: Add telemetry function | ||
time: 2024-10-16T03:55:44.144174-07:00 | ||
custom: | ||
Author: versusfacit | ||
Issue: "301" |
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
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
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
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
Empty file.
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,90 @@ | ||
SCHEMA__CONTROL = """ | ||
version: 2 | ||
models: | ||
- name: colors | ||
columns: | ||
- name: color | ||
data_tests: | ||
- not_null | ||
""" | ||
|
||
|
||
SCHEMA__EXPLICIT_WAREHOUSE = """ | ||
version: 2 | ||
models: | ||
- name: colors | ||
columns: | ||
- name: color | ||
data_tests: | ||
- not_null: | ||
config: | ||
snowflake_warehouse: DBT_TESTING_ALT | ||
""" | ||
|
||
|
||
SCHEMA__NOT_NULL = """ | ||
version: 2 | ||
models: | ||
- name: facts | ||
columns: | ||
- name: value | ||
data_tests: | ||
- not_null: | ||
config: | ||
snowflake_warehouse: DBT_TESTING_ALT | ||
""" | ||
|
||
|
||
SCHEMA__RELATIONSHIPS = """ | ||
version: 2 | ||
models: | ||
- name: facts | ||
columns: | ||
- name: color | ||
data_tests: | ||
- relationships: | ||
to: ref('my_colors') | ||
field: color | ||
config: | ||
snowflake_warehouse: DBT_TESTING_ALT | ||
""" | ||
|
||
|
||
SCHEMA__ACCEPTED_VALUES = """ | ||
version: 2 | ||
models: | ||
- name: colors | ||
columns: | ||
- name: color | ||
data_tests: | ||
- accepted_values: | ||
values: ['blue', 'red', 'green'] | ||
config: | ||
snowflake_warehouse: DBT_TESTING_ALT | ||
""" | ||
|
||
|
||
SEED__COLORS = """ | ||
color | ||
blue | ||
green | ||
red | ||
yellow | ||
""".strip() | ||
|
||
|
||
# record 10 is missing a value | ||
# record 7 has a color that's not on COLORS | ||
SEED__FACTS = """ | ||
id,color,value | ||
1,blue,10 | ||
2,red,20 | ||
3,green,30 | ||
4,yellow,40 | ||
5,blue,50 | ||
6,red,60 | ||
7,orange,70 | ||
8,green,80 | ||
9,yellow,90 | ||
10,blue, | ||
""".strip() |
Empty file.
Empty file.
Oops, something went wrong.