Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
goelrohan6 authored Dec 7, 2022
1 parent 8e71559 commit dd5d45d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/models/marts/fct_orders.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down

0 comments on commit dd5d45d

Please sign in to comment.