summaryrefslogtreecommitdiff
path: root/src/components/policy/policy_external/src/sql_pt_queries.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/policy/policy_external/src/sql_pt_queries.cc')
-rw-r--r--src/components/policy/policy_external/src/sql_pt_queries.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/components/policy/policy_external/src/sql_pt_queries.cc b/src/components/policy/policy_external/src/sql_pt_queries.cc
index 479628b597..f4cac214a5 100644
--- a/src/components/policy/policy_external/src/sql_pt_queries.cc
+++ b/src/components/policy/policy_external/src/sql_pt_queries.cc
@@ -157,7 +157,7 @@ const std::string kCreateSchema =
" `auth_token` VARCHAR(65535), "
" `cloud_transport_type` VARCHAR(255), "
" `icon_url` VARCHAR(65535), "
- " `allow_unknown_rpc_pass_through` BOOLEAN, "
+ " `allow_unknown_rpc_passthrough` BOOLEAN, "
" `remote_control_denied` BOOLEAN NOT NULL DEFAULT 0, "
" CONSTRAINT `fk_application_hmi_level1` "
" FOREIGN KEY(`default_hmi`) "
@@ -678,7 +678,7 @@ const std::string kInsertApplication =
"INSERT OR IGNORE INTO `application` (`id`, `priority_value`, "
"`is_revoked`, `memory_kb`, `heart_beat_timeout_ms`, `certificate`, "
"`hybrid_app_preference_value`, `endpoint`, `enabled`, `auth_token`, "
- "`cloud_transport_type`, `icon_url`, `allow_unknown_rpc_pass_through`) "
+ "`cloud_transport_type`, `icon_url`, `allow_unknown_rpc_passthrough`) "
"VALUES "
"(?,?,?,?,?,?,?,?,?,?,?,?,?)";
@@ -820,7 +820,7 @@ const std::string kSelectAppPolicies =
"SELECT `id`, `priority_value`, `memory_kb`, "
" `heart_beat_timeout_ms`, `certificate`, `hybrid_app_preference_value`, "
" `endpoint`, `enabled`, `auth_token`, `cloud_transport_type`, `icon_url`, "
- " `allow_unknown_rpc_pass_through` "
+ " `allow_unknown_rpc_passthrough` "
"FROM "
" `application`";
@@ -945,7 +945,7 @@ const std::string kInsertApplicationFull =
" `is_predata`, `memory_kb`, `heart_beat_timeout_ms`, "
" `certificate`, `hybrid_app_preference_value`, `endpoint`, `enabled`, "
" `auth_token`, `cloud_transport_type`, `icon_url`, "
- "`allow_unknown_rpc_pass_through`) "
+ "`allow_unknown_rpc_passthrough`) "
" VALUES (?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)";
const std::string kSelectApplicationFull =
@@ -954,7 +954,7 @@ const std::string kSelectApplicationFull =
" `heart_beat_timeout_ms`, `certificate`, `hybrid_app_preference_value`, "
" `endpoint`, `enabled`, `auth_token`, `cloud_transport_type`, "
"`icon_url`, "
- " `allow_unknown_rpc_pass_through` "
+ " `allow_unknown_rpc_passthrough` "
"FROM `application` "
"WHERE `id` = ?";