Skip to content

Commit

Permalink
disable unsupported tests BQ
Browse files Browse the repository at this point in the history
  • Loading branch information
joellabes committed May 22, 2024
1 parent fe91fd1 commit 77f6a50
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']) else 'runnable']) }}
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery']) 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']) else 'runnable']) }}
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery']) 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']) else 'runnable']) }}
{{ config(tags=['skip' if (target.type in ['redshift', 'bigquery']) else 'runnable']) }}

{{
audit_helper.quick_are_queries_identical(
Expand Down

0 comments on commit 77f6a50

Please sign in to comment.