Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DENG-3288 add Focus iOS and Focus Android and switch to use new views… #5641

Merged
merged 1 commit into from
May 23, 2024
Merged
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 @@ -16,7 +16,7 @@ WITH mobile_clients_last_seen AS (
is_wau,
is_mau
FROM
`moz-fx-data-shared-prod.fenix.baseline_clients_last_seen_extended_activity` --eventually use: `moz-fx-data-shared-prod.fenix.baseline_clients_last_seen`
`moz-fx-data-shared-prod.fenix.active_users`
WHERE
submission_date = @submission_date
UNION ALL
Expand All @@ -37,10 +37,9 @@ WITH mobile_clients_last_seen AS (
is_wau,
is_mau
FROM
`moz-fx-data-shared-prod.firefox_ios.baseline_clients_last_seen_extended_activity` --eventually use: `moz-fx-data-shared-prod.firefox_ios.baseline_clients_last_seen`
`moz-fx-data-shared-prod.firefox_ios.active_users`
WHERE
submission_date = @submission_date
/*
UNION ALL
--Focus Android
SELECT
Expand All @@ -53,13 +52,13 @@ WITH mobile_clients_last_seen AS (
locale,
country,
isp,
app_name, --will work once the column is added by Kik via PR#5434
app_name,
app_display_version AS app_version,
is_dau, --will work once the column is added by Kik
is_wau, --will work once the column is added by Kik
is_mau --will work once the column is added by Kik
is_dau,
is_wau,
is_mau
FROM
`moz-fx-data-shared-prod.focus_android.baseline_clients_last_seen`
`moz-fx-data-shared-prod.focus_android.active_users`
WHERE
submission_date = @submission_date
UNION ALL
Expand All @@ -74,16 +73,15 @@ WITH mobile_clients_last_seen AS (
locale,
country,
isp,
app_name, --will work once the column is added by Kik via PR#5434
app_name,
app_display_version AS app_version,
is_dau, --will work once the column is added by Kik
is_wau, --will work once the column is added by Kik
is_mau --will work once the column is added by Kik
is_dau,
is_wau,
is_mau
FROM
`moz-fx-data-shared-prod.focus_ios.baseline_clients_last_seen`
`moz-fx-data-shared-prod.focus_ios.active_users`
WHERE
submission_date = @submission_date
*/
),
mobile_attribution AS (
--Fenix
Expand Down