From: Elena Mamontova Date: Thu, 22 Sep 2016 12:52:46 +0000 (+0300) Subject: Ticket 37. The changePolicyTimeout field added in SELECT FROM X-Git-Tag: 2.409~81 X-Git-Url: https://git.stg.codes/stg.git/commitdiff_plain/69fb3442a8687b783e08972ed0c1f9b6d5e65d54 Ticket 37. The changePolicyTimeout field added in SELECT FROM tb_tariffs query in the if (version > 7) construction. Assign a value to change PolicyTimeout added in if (version > 7) construction. --- diff --git a/projects/stargazer/plugins/store/postgresql/postgresql_store_tariffs.cpp b/projects/stargazer/plugins/store/postgresql/postgresql_store_tariffs.cpp index 0dd74902..1623988d 100644 --- a/projects/stargazer/plugins/store/postgresql/postgresql_store_tariffs.cpp +++ b/projects/stargazer/plugins/store/postgresql/postgresql_store_tariffs.cpp @@ -460,7 +460,8 @@ if (version > 6) query << ", period"; if (version > 7) - query << ", change_policy"; + query << ", change_policy \ + , change_policy_timeout"; query << " FROM tb_tariffs WHERE name = '" << ename << "'"; @@ -513,7 +514,10 @@ if (version > 6) td->tariffConf.period = TARIFF::StringToPeriod(PQgetvalue(result, 0, 5)); if (version > 7) + { td->tariffConf.changePolicy = TARIFF::StringToChangePolicy(PQgetvalue(result, 0, 6)); + td->tariffConf.changePolicyTimeout = TS2Int(PQgetvalue(result, 0, 7)); + } PQclear(result);