Skip to content

Commit

Permalink
review updates
Browse files Browse the repository at this point in the history
  • Loading branch information
fivetran-catfritz committed Oct 21, 2024
1 parent b8fab76 commit ddff232
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions integration_tests/tests/integrity/integrity_customers.sql
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ with source as (
transform as (
select
customer_id,
count(*) as transform_customer_tag_count
array_length(split(customer_tags, ',')) as transform_customer_tag_count -- Only BigQuery compatible for the time being
from {{ target.schema }}_shopify_dev.shopify__customers
where customer_tags is not null
group by 1
group by customer_id, customer_tags
),

compare as (
Expand Down

0 comments on commit ddff232

Please sign in to comment.