From dd5d45da9905e2d1850cb5e9b49b7b042314054c Mon Sep 17 00:00:00 2001 From: Rohan Goel Date: Wed, 7 Dec 2022 10:54:22 +0530 Subject: [PATCH] fix --- test/models/marts/fct_orders.sql | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/models/marts/fct_orders.sql b/test/models/marts/fct_orders.sql index 5289202..a338c38 100644 --- a/test/models/marts/fct_orders.sql +++ b/test/models/marts/fct_orders.sql @@ -75,8 +75,8 @@ 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