Commit 8133934c authored by Vladimir Bashkirtsev's avatar Vladimir Bashkirtsev

Enabled use of big doubles in DB

parent 8928c81a
...@@ -12,6 +12,9 @@ $DB['PASSWORD'] = trim(`/sbin/uci -q get mysql.credentials.password`); ...@@ -12,6 +12,9 @@ $DB['PASSWORD'] = trim(`/sbin/uci -q get mysql.credentials.password`);
// Schema name. Used for IBM DB2 and PostgreSQL. // Schema name. Used for IBM DB2 and PostgreSQL.
$DB['SCHEMA'] = ''; $DB['SCHEMA'] = '';
// Enable use of big double
$DB['DOUBLE_IEEE754'] = 'true';
$ZBX_SERVER = trim(`/sbin/uci -q get zabbix.server.hostname`); $ZBX_SERVER = trim(`/sbin/uci -q get zabbix.server.hostname`);
$ZBX_SERVER_PORT = "10051"; $ZBX_SERVER_PORT = "10051";
$ZBX_SERVER_NAME = trim(`/sbin/uci -q get zabbix.server.name`); $ZBX_SERVER_NAME = trim(`/sbin/uci -q get zabbix.server.name`);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment