diff --git a/models/staging/tpch/stg_tpch_customers.sql b/models/staging/tpch/stg_tpch_customers.sql index 7195d93..289faeb 100644 --- a/models/staging/tpch/stg_tpch_customers.sql +++ b/models/staging/tpch/stg_tpch_customers.sql @@ -15,7 +15,7 @@ cleanup as ( c_phone as phone_number, c_acctbal as account_balance, c_mktsegment as market_segment, - c_comment as comment + c_comment as comment, from source diff --git a/tests/stg_tpch_orders_assert_positive_price.sql b/tests/stg_tpch_orders_assert_positive_price.sql index ff5bdf1..2835d04 100644 --- a/tests/stg_tpch_orders_assert_positive_price.sql +++ b/tests/stg_tpch_orders_assert_positive_price.sql @@ -10,4 +10,4 @@ with orders as ( select * from {{ ref('stg_tpch_orders') }} ) select * from orders -where total_price < 0 +where total_price > 0