mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-29 01:59:39 +01:00
status value is in column 1 (2. column), also fixed not working fetchColumn
This commit is contained in:
parent
3470f4d51c
commit
b318f1e4f4
@ -3441,6 +3441,8 @@
|
|||||||
while ($column_number-- >= 0)
|
while ($column_number-- >= 0)
|
||||||
{
|
{
|
||||||
$ret = array_shift($row);
|
$ret = array_shift($row);
|
||||||
|
|
||||||
|
if ($this->fetchMode == ADODB_FETCH_BOTH) array_shift($row);
|
||||||
}
|
}
|
||||||
return $ret;
|
return $ret;
|
||||||
}
|
}
|
||||||
|
@ -352,7 +352,7 @@ class egw_db
|
|||||||
// check Galera wsrep_local_state for node is not in state Synced, eg. Donor
|
// check Galera wsrep_local_state for node is not in state Synced, eg. Donor
|
||||||
// check is only done for Type=mysql and will succed if no Galera
|
// check is only done for Type=mysql and will succed if no Galera
|
||||||
if ($new_connection && $this->Type == 'mysql' && strpos($this->Host, ';') !== false &&
|
if ($new_connection && $this->Type == 'mysql' && strpos($this->Host, ';') !== false &&
|
||||||
($state = $this->query("SHOW STATUS LIKE 'wsrep_local_state'")->fetchColumn() !== false) &&
|
($state = $this->query("SHOW STATUS LIKE 'wsrep_local_state'")->fetchColumn(1) !== false) &&
|
||||||
$state != 4) // 4 = Synced
|
$state != 4) // 4 = Synced
|
||||||
{
|
{
|
||||||
throw new egw_exception_db_connection('wsrep-local-state='.array2string($state).' != 4');
|
throw new egw_exception_db_connection('wsrep-local-state='.array2string($state).' != 4');
|
||||||
|
Loading…
Reference in New Issue
Block a user