1
0
mirror of https://github.com/dg/dibi.git synced 2025-08-06 06:07:39 +02:00

Result: does not drop the value if detection fails

This commit is contained in:
David Grudl
2020-03-26 03:06:22 +01:00
parent 22b15d9859
commit 21039ff379

View File

@@ -529,6 +529,9 @@ class Result implements IDataSource
} elseif ($type === Type::BINARY) {
$row[$key] = $this->getResultDriver()->unescapeBinary($value);
} else {
$row[$key] = $value;
}
}
}