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

Normalization fix Snowflake Prefix Tables starting with number #9301

Merged
merged 24 commits into from
Jan 7, 2022
Merged
Show file tree
Hide file tree
Changes from 17 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
c6ae621
add normalization-clickhouse docker build step
jzcruiser Dec 22, 2021
b88225e
Merge branch 'patch-4' of github.com:jzcruiser/airbyte into marcos/te…
marcosmarxm Dec 23, 2021
cc499c2
bump normalization version
marcosmarxm Dec 23, 2021
a2517a3
small changes gradle
marcosmarxm Dec 23, 2021
4a51799
Merge branch 'master' into marcos/test-pr-9029
marcosmarxm Dec 23, 2021
a57495c
fix settings gradle
marcosmarxm Dec 27, 2021
c56ef54
fix eof file
marcosmarxm Dec 27, 2021
f8ccfd6
correct clickhouse normalization
marcosmarxm Dec 29, 2021
f24ea4b
Merge branch 'master' into marcos/test-pr-9029
edgao Jan 4, 2022
a6e4c31
Refactor jinja template for scd (#9278)
ChristopheDuong Jan 4, 2022
4f9f8ae
merge chris code and regenerate sql files
marcosmarxm Jan 4, 2022
62e7dab
correct scd post-hook generation for snowflake
marcosmarxm Jan 5, 2022
b069b03
Merge branch 'master' into marcos/normalization-snowflake-startwith-n…
marcosmarxm Jan 5, 2022
6a5f941
fix scd table for snowflake prefix table with number
marcosmarxm Jan 5, 2022
d8bb53f
scd fix for all destinations
marcosmarxm Jan 5, 2022
e6b0407
use quote
marcosmarxm Jan 5, 2022
745fbf7
use normalize column for post-hook
marcosmarxm Jan 5, 2022
96df256
change logic to apply quote
marcosmarxm Jan 6, 2022
8495633
add logic to handle prefix for mssql and oracle
marcosmarxm Jan 6, 2022
8f14292
run tests
marcosmarxm Jan 6, 2022
d06c537
merge master
marcosmarxm Jan 6, 2022
5fee2a6
correct unit test
marcosmarxm Jan 6, 2022
89cbcdb
Merge branch 'master' into marcos/normalization-snowflake-startwith-n…
marcosmarxm Jan 6, 2022
29e047d
bump normalization version
marcosmarxm Jan 6, 2022
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
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{ config(
unique_key = "_airbyte_unique_key_scd",
schema = "test_normalization",
post_hook = ['drop view _airbyte_test_normalization.nested_stream_with_co_1g_into_long_names_stg'],
post_hook = ["drop view _airbyte_test_normalization.nested_stream_with_co_1g_into_long_names_stg"],
tags = [ "top-level" ]
) }}
-- depends_on: ref('nested_stream_with_co_1g_into_long_names_stg')
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{{ config(
unique_key = "_airbyte_unique_key_scd",
schema = "test_normalization",
post_hook = ['drop view _airbyte_test_normalization.dedup_exchange_rate_stg'],
post_hook = ["drop view _airbyte_test_normalization.dedup_exchange_rate_stg"],
tags = [ "top-level" ]
) }}
-- depends_on: ref('dedup_exchange_rate_stg')
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ sources:
schema: false
identifier: false
tables:
- name: _airbyte_raw_1_prefix_startwith_number
- name: _airbyte_raw_dedup_cdc_excluded
- name: _airbyte_raw_dedup_exchange_rate
- name: _airbyte_raw_exchange_rate
Expand Down

This file was deleted.

This file was deleted.

This file was deleted.

This file was deleted.

Loading