Skip to content

Commit

Permalink
Fix extra parens in SDE queries
Browse files Browse the repository at this point in the history
  • Loading branch information
mshmoustafa authored Dec 23, 2024
1 parent 6925390 commit 7d93978
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion code_blocks/integrations/scheduled-data-exports_2.pgsql
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ FROM
WHERE date(effective_end_time) > [targeted_date]
AND date(start_time) <= [targeted_date]
AND is_trial_period = 'false'
AND DATE_DIFF('s', start_time, end_time)::float > 0)
AND DATE_DIFF('s', start_time, end_time)::float > 0
AND ownership_type != 'FAMILY_SHARED'
AND store != 'promotional'
AND is_sandbox != 'true'
Expand Down
2 changes: 1 addition & 1 deletion code_blocks/integrations/scheduled-data-exports_4.pgsql
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ FROM
WHERE date(effective_end_time) > [targeted_date]
AND date(start_time) <= [targeted_date]
AND is_trial_period = 'false'
AND DATE_DIFF('s', start_time, end_time)::float > 0)
AND DATE_DIFF('s', start_time, end_time)::float > 0
AND ownership_type != 'FAMILY_SHARED'
AND store != 'promotional'
AND is_sandbox != 'true'
Expand Down
2 changes: 1 addition & 1 deletion code_blocks/integrations/scheduled-data-exports_9.pgsql
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ FROM
WHERE date(effective_end_time) > [targeted_date]
AND date(start_time) <= [targeted_date]
AND is_trial_period = 'false'
AND DATE_DIFF('s', start_time, end_time)::float > 0)
AND DATE_DIFF('s', start_time, end_time)::float > 0
AND ownership_type != 'FAMILY_SHARED'
AND store != 'promotional'
AND is_sandbox != 'true'
Expand Down

0 comments on commit 7d93978

Please sign in to comment.