Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

enablement due to dbt-utils' "dispatchifiction" #17

Merged
merged 30 commits into from
Jan 14, 2021
Merged
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
e68b95c
dbt-utils macros now support dispatch
dataders Jan 6, 2021
41547e2
fix this test as well
dataders Jan 6, 2021
4cfc406
TEMP move to theoretical branch
dataders Jan 7, 2021
cb788d7
shorten list of broken macros
dataders Jan 7, 2021
6f205e3
must be string for comparison
dataders Jan 7, 2021
96e29db
synapse does not yet support
dataders Jan 7, 2021
f47fb18
fixed by dbt-util dispatchification
dataders Jan 7, 2021
31151a0
synapse does not support
dataders Jan 7, 2021
1aeb356
clean up
dataders Jan 7, 2021
72f422f
downstream fix
dataders Jan 7, 2021
a37e6c8
update submodule
dataders Jan 7, 2021
47711de
WHY PYTHON WHY!!!
dataders Jan 7, 2021
9c43f6b
inform users why
dataders Jan 8, 2021
4230be2
disable until #18 is finished
dataders Jan 8, 2021
008ba9c
unsupported
dataders Jan 8, 2021
270e953
synapse does not support timestamp
dataders Jan 8, 2021
37449a9
replacement for 'limit 0'
dataders Jan 8, 2021
50811e8
hail mary
dataders Jan 8, 2021
88a4beb
add limit zero to dispatch namespace
dataders Jan 8, 2021
80ca9b7
disabled due to other issue
dataders Jan 8, 2021
fff18d3
correct macro directory
dataders Jan 10, 2021
74f9d84
wrong section
dataders Jan 11, 2021
6eb5af3
changes are in dbt-utils now!
dataders Jan 11, 2021
a274666
pull from master w/ new PRs merged
dataders Jan 11, 2021
04c9234
perhaps these work now
dataders Jan 11, 2021
f46b793
still unported
dataders Jan 11, 2021
f92d4b5
Merge branch 'master' of https://github.com/dbt-msft/tsql-utils into …
dataders Jan 12, 2021
0217691
dbt-utils default arg is now TSQL compatible
dataders Jan 12, 2021
49c41a3
more context
dataders Jan 14, 2021
9449055
pin to latest release
dataders Jan 14, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion integration_tests/dbt_utils/dbt_project.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,12 +30,19 @@ models:
+enabled: false
materializations:
test_insert_by_period: *disabled
sql: # BROKEN DUE TO MODEL DEFS
sql: # BROKEN BC MACROS ARE UNPORTED STILL
test_generate_series: *disabled
test_get_column_values: *disabled
test_get_relations_by_pattern: *disabled
test_get_relations_by_prefix_and_union: *disabled
test_groupby: *disabled # TSQL doesn't let you group by column numbers
# BROKEN DUE TO SYNAPSE SEED LOADING EMPTY CSV VALS AS EMPTY STRINGS
# see: https://github.com/dbt-msft/dbt-synapse/issues/36
test_dateadd: *not-synapse
test_datediff: *not-synapse
test_hash: *not-synapse
test_last_day: *not-synapse
test_union: *not-synapse
web: # BROKEN DUE TO TEST DEFS
test_url_host: *disabled
test_url_path: *disabled
Expand Down