summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJackLivio <jack@livio.io>2019-04-09 10:55:56 -0400
committerJackLivio <jack@livio.io>2019-04-09 10:55:56 -0400
commite06c810fda3514fd345075455ea91a2341811e6a (patch)
tree31e875ffbc345118d8c678186411ad6f1dba7d28
parentd73107ab5e6aff946532f18998f8f258861d2d08 (diff)
downloadsdl_core-e06c810fda3514fd345075455ea91a2341811e6a.tar.gz
Add missing comma in pt query strings
-rw-r--r--src/components/policy/policy_external/src/sql_pt_ext_queries.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/policy/policy_external/src/sql_pt_ext_queries.cc b/src/components/policy/policy_external/src/sql_pt_ext_queries.cc
index 2ab9642d12..2c24bbc522 100644
--- a/src/components/policy/policy_external/src/sql_pt_ext_queries.cc
+++ b/src/components/policy/policy_external/src/sql_pt_ext_queries.cc
@@ -237,7 +237,7 @@ const std::string kSelectPreconsentedGroupsId =
const std::string kSelectAppPolicies =
"SELECT `id`, `priority_value`, `default_hmi`, `keep_context`, "
" `steal_focus`, `memory_kb`, `heart_beat_timeout_ms`, `certificate`, "
- " `hybrid_app_preference_value`, `endpoint`, `enabled`, `auth_token` "
+ " `hybrid_app_preference_value`, `endpoint`, `enabled`, `auth_token`, "
" `cloud_transport_type`, `icon_url`, `allow_unknown_rpc_passthrough` "
"FROM `application`";