Skip to content

Commit d33d4db

Browse files
committed
feat(DENG-9583): Add normalized_app_id and uri_count
1 parent 3acb791 commit d33d4db

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

sql_generators/glean_usage/templates/clients_last_seen_joined.query.sql

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,12 @@ WITH baseline AS (
33
{% if app_name == "firefox_desktop" %}
44
days_since_desktop_active,
55
{% endif %}
6+
{% if app_name != "firefox_desktop" %}
7+
normalized_app_id,
8+
{% endif %}
9+
{% if app_name == "firefox_ios" %}
10+
uri_count,
11+
{% endif %}
612
days_since_seen,
713
days_since_active,
814
days_since_created_profile,
@@ -86,6 +92,12 @@ SELECT
8692
{% if app_name == "firefox_desktop" %}
8793
baseline.days_since_desktop_active,
8894
{% endif %}
95+
{% if app_name != "firefox_desktop" %}
96+
baseline.normalized_app_id,
97+
{% endif %}
98+
{% if app_name == "firefox_ios" %}
99+
baseline.uri_count,
100+
{% endif %}
89101
baseline.days_since_seen,
90102
baseline.days_since_active,
91103
baseline.days_since_created_profile,

0 commit comments

Comments
 (0)