Merge branch '2.3' into 2

This commit is contained in:
Steve Boyd 2022-04-22 09:32:30 +12:00
commit 321d0d853b
1 changed files with 3 additions and 1 deletions

View File

@ -858,7 +858,9 @@ class PostgreSQLSchemaManager extends DBSchemaManager
$argList = array();
$nextArg = "";
foreach ($bytes as $byte) {
if ($byte == "00") {
if ($byte == '\x') {
continue;
} elseif ($byte == "00") {
$argList[] = $nextArg;
$nextArg = "";
} else {