Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pre_operations {
${ref("ga4_sessions")}
WHERE
session_date >= DATE_SUB( CURRENT_DATE(), INTERVAL 3 day )
AND (landing_page.landing_page_location IS NULL
AND ((landing_page.landing_page_location IS NULL AND app_info.id IS NULL)
OR user_pseudo_id IS NULL
OR session_id IS NULL
OR session_date IS NULL
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ pre_operations {
FROM
${ref("events_*")}
WHERE
CONTAINS_SUBSTR(_TABLE_SUFFIX, 'intraday') IS FALSE) );
CONTAINS_SUBSTR(_TABLE_SUFFIX, 'intraday') IS FALSE AND CONTAINS_SUBSTR(_TABLE_SUFFIX, 'fresh') IS FALSE ) );
IF
check > expectations THEN
SET
Expand Down