Add country to urlbar_clients_daily (#3009)
* Add country to urlbar_clients_daily
This commit is contained in:
Родитель
1ec466aec5
Коммит
997708a74f
|
@ -39,6 +39,7 @@ WITH combined_urlbar_picked AS (
|
|||
experiments,
|
||||
app_version,
|
||||
normalized_channel,
|
||||
country,
|
||||
locale,
|
||||
user_pref_browser_search_region AS search_region,
|
||||
SAFE_CAST(user_pref_browser_search_suggest_enabled AS BOOL) AS suggest_enabled,
|
||||
|
@ -157,6 +158,7 @@ SELECT
|
|||
experiments,
|
||||
app_version,
|
||||
normalized_channel,
|
||||
country,
|
||||
locale,
|
||||
search_region,
|
||||
suggest_enabled,
|
||||
|
|
|
@ -14,6 +14,9 @@ fields:
|
|||
- mode: NULLABLE
|
||||
name: normalized_channel
|
||||
type: STRING
|
||||
- mode: NULLABLE
|
||||
name: country
|
||||
type: STRING
|
||||
- mode: NULLABLE
|
||||
name: locale
|
||||
type: STRING
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
normalized_channel: "nightly"
|
||||
locale: "en-US"
|
||||
search_region: "US"
|
||||
country: "US"
|
||||
suggest_enabled: true
|
||||
in_navbar: true
|
||||
suggest_searches: true
|
||||
|
|
|
@ -28,6 +28,11 @@
|
|||
"mode": "NULLABLE",
|
||||
"name": "locale",
|
||||
"type": "STRING"
|
||||
},
|
||||
{
|
||||
"mode": "NULLABLE",
|
||||
"name": "country",
|
||||
"type": "STRING"
|
||||
},
|
||||
{
|
||||
"mode": "NULLABLE",
|
||||
|
|
|
@ -6,6 +6,7 @@
|
|||
app_version: "one"
|
||||
normalized_channel: "nightly"
|
||||
locale: "en-US"
|
||||
country: "US"
|
||||
user_pref_browser_search_region: "US"
|
||||
user_pref_browser_search_suggest_enabled: true
|
||||
user_pref_browser_widget_in_navbar: true
|
||||
|
|
Загрузка…
Ссылка в новой задаче