Skip to content

Commit

Permalink
disable syntax-failing tests on dbx
Browse files Browse the repository at this point in the history
  • Loading branch information
joellabes committed May 27, 2024
1 parent 0d1a1de commit 559f8d5
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery', 'postgres']) else 'runnable']) }}
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery', 'postgres', 'databricks']) else 'runnable']) }}

select 1 as id, 'John Doe' as col1, object_construct('street', '123 Main St', 'city', 'Anytown', 'state', 'CA') as col2
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery', 'postgres']) else 'runnable']) }}
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery', 'postgres', 'databricks']) else 'runnable']) }}

select 1 as id, 'John Doe' as col1, object_construct('street', '123 Main St', 'city', 'Anytown', 'state', 'CA') as col2
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery', 'postgres']) else 'runnable']) }}
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery', 'postgres', 'databricks']) else 'runnable']) }}

{{
audit_helper.quick_are_queries_identical(
Expand Down

0 comments on commit 559f8d5

Please sign in to comment.