@@ -44,7 +44,38 @@ WITH _current AS (
44
44
CAST(browser_engagement_uri_count > 0 AS INT64) &
45
45
CAST(browser_engagement_active_ticks > 0 AS INT64) AS days_desktop_active_bits,
46
46
{% endif %}
47
- * EXCEPT(submission_date)
47
+ client_id,
48
+ sample_id,
49
+ first_run_date,
50
+ durations,
51
+ days_seen_session_start_bits,
52
+ days_seen_session_end_bits,
53
+ normalized_channel,
54
+ normalized_os,
55
+ normalized_os_version,
56
+ android_sdk_version,
57
+ locale,
58
+ city,
59
+ country,
60
+ isp,
61
+ app_build,
62
+ app_channel,
63
+ app_display_version,
64
+ architecture,
65
+ device_manufacturer,
66
+ device_model,
67
+ telemetry_sdk_build,
68
+ first_seen_date,
69
+ is_new_profile,
70
+ distribution_id,
71
+ geo_subdivision,
72
+ profile_group_id,
73
+ install_source,
74
+ windows_build_number,
75
+ browser_engagement_uri_count,
76
+ browser_engagement_active_ticks,
77
+ legacy_telemetry_client_id,
78
+ is_default_browser,
48
79
FROM
49
80
` {{ daily_table }}`
50
81
WHERE
@@ -54,21 +85,46 @@ WITH _current AS (
54
85
--
55
86
_previous AS (
56
87
SELECT
88
+ -- All columns except submission_date ( * (EXCEPT(submission_date)) )
89
+ -- listed out to ensure order is identical to output of _current
57
90
days_seen_bits,
58
91
days_active_bits,
59
92
{% if app_name == " firefox_desktop" %}
60
93
days_desktop_active_bits,
61
94
{% endif %}
62
95
days_created_profile_bits,
63
- * EXCEPT (
64
- submission_date,
65
- days_seen_bits,
66
- days_active_bits,
67
- {% if app_name == " firefox_desktop" %}
68
- days_desktop_active_bits,
69
- {% endif %}
70
- days_created_profile_bits
71
- ),
96
+ client_id,
97
+ sample_id,
98
+ first_run_date,
99
+ durations,
100
+ days_seen_session_start_bits,
101
+ days_seen_session_end_bits,
102
+ normalized_channel,
103
+ normalized_os,
104
+ normalized_os_version,
105
+ android_sdk_version,
106
+ locale,
107
+ city,
108
+ country,
109
+ isp,
110
+ app_build,
111
+ app_channel,
112
+ app_display_version,
113
+ architecture,
114
+ device_manufacturer,
115
+ device_model,
116
+ telemetry_sdk_build,
117
+ first_seen_date,
118
+ is_new_profile,
119
+ distribution_id,
120
+ geo_subdivision,
121
+ profile_group_id,
122
+ install_source,
123
+ windows_build_number,
124
+ browser_engagement_uri_count,
125
+ browser_engagement_active_ticks,
126
+ legacy_telemetry_client_id,
127
+ is_default_browser,
72
128
FROM
73
129
` {{ last_seen_table }}`
74
130
WHERE
0 commit comments