Add experiments field from clients_daily to urlbar_clients_daily (#2814)
* Add experiments field * Updated urlbar_clients_daily schema * Updated tests Co-authored-by: Jeff Klukas <jklukas@mozilla.com> Co-authored-by: Alexander Nicholson <anicholson@mozilla.com>
This commit is contained in:
Родитель
1a3a062639
Коммит
78885a77dd
|
@ -36,6 +36,7 @@ WITH combined_urlbar_picked AS (
|
|||
submission_date,
|
||||
client_id,
|
||||
default_search_engine,
|
||||
experiments,
|
||||
app_version,
|
||||
normalized_channel,
|
||||
locale,
|
||||
|
@ -153,6 +154,7 @@ SELECT
|
|||
submission_date,
|
||||
client_id,
|
||||
default_search_engine,
|
||||
experiments,
|
||||
app_version,
|
||||
normalized_channel,
|
||||
locale,
|
||||
|
|
|
@ -87,3 +87,13 @@ fields:
|
|||
- mode: NULLABLE
|
||||
name: quicksuggest_data_collection_enabled
|
||||
type: STRING
|
||||
- fields:
|
||||
- mode: NULLABLE
|
||||
name: key
|
||||
type: STRING
|
||||
- mode: NULLABLE
|
||||
name: value
|
||||
type: STRING
|
||||
mode: REPEATED
|
||||
name: experiments
|
||||
type: RECORD
|
||||
|
|
|
@ -67,6 +67,9 @@
|
|||
position: []
|
||||
- type: "visiturl"
|
||||
position: []
|
||||
experiments:
|
||||
- key: "experiment_key"
|
||||
value: "experiment_value"
|
||||
- <<: *base
|
||||
client_id: "client_2"
|
||||
count_picked_total: 21
|
||||
|
|
|
@ -350,5 +350,22 @@
|
|||
"mode": "REPEATED",
|
||||
"name": "scalar_parent_urlbar_picked_visiturl_sum",
|
||||
"type": "RECORD"
|
||||
},
|
||||
{
|
||||
"fields": [
|
||||
{
|
||||
"mode": "NULLABLE",
|
||||
"name": "key",
|
||||
"type": "STRING"
|
||||
},
|
||||
{
|
||||
"mode": "NULLABLE",
|
||||
"name": "value",
|
||||
"type": "STRING"
|
||||
}
|
||||
],
|
||||
"mode": "REPEATED",
|
||||
"name": "experiments",
|
||||
"type": "RECORD"
|
||||
}
|
||||
]
|
||||
|
|
|
@ -35,6 +35,9 @@
|
|||
scalar_parent_urlbar_picked_topsite_sum: []
|
||||
scalar_parent_urlbar_picked_unknown_sum: []
|
||||
scalar_parent_urlbar_picked_visiturl_sum: []
|
||||
experiments:
|
||||
- key: "experiment_key"
|
||||
value: "experiment_value"
|
||||
- <<: *base
|
||||
client_id: "client_2"
|
||||
scalar_parent_urlbar_picked_autofill_sum:
|
||||
|
|
Загрузка…
Ссылка в новой задаче