Skip to content

Commit

Permalink
fix reserved keywords bug and disable dbt
Browse files Browse the repository at this point in the history
  • Loading branch information
burmecia committed Nov 13, 2021
1 parent 856233b commit 282febe
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2533,7 +2533,9 @@
"REGR_SYY",
}

CLICKHOUSE = {}
# In ClickHouse, keywords are not reserved.
# Ref: https://clickhouse.com/docs/en/sql-reference/syntax/#syntax-keywords
CLICKHOUSE = set()

RESERVED_KEYWORDS = {
DestinationType.BIGQUERY.value: BIGQUERY,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ protected boolean supportsNormalization() {

@Override
protected boolean supportsDBT() {
return true;
return false;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"documentationUrl": "https://docs.airbyte.io/integrations/destinations/clickhouse",
"supportsIncremental": true,
"supportsNormalization": true,
"supportsDBT": true,
"supportsDBT": false,
"supported_destination_sync_modes": ["overwrite", "append", "append_dedup"],
"connectionSpecification": {
"$schema": "http://json-schema.org/draft-07/schema#",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ protected boolean supportsNormalization() {

@Override
protected boolean supportsDBT() {
return true;
return false;
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ protected boolean supportsNormalization() {

@Override
protected boolean supportsDBT() {
return true;
return false;
}

@Override
Expand Down

0 comments on commit 282febe

Please sign in to comment.