diff --git a/test/models/marts/fct_orders.sql b/test/models/marts/fct_orders.sql index 799cb41..5289202 100644 --- a/test/models/marts/fct_orders.sql +++ b/test/models/marts/fct_orders.sql @@ -75,11 +75,11 @@ final as ( select *, customer_order_index = 1 as is_first_order, - count_food_items > 0 as is_food_order, - count_drink_items > 0 as is_drink_order + count_food_items >= 0 as is_food_order, + count_drink_items >= 0 as is_drink_order from joined ) -select * from final \ No newline at end of file +select * from final