We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d173a6f commit 16f3612Copy full SHA for 16f3612
src/Ifsnop/Mysqldump/Mysqldump.php
@@ -1312,6 +1312,8 @@ public function getColumnStmt($tableName)
1312
continue;
1313
} elseif ($colType['type'] == 'bit' && $this->dumpSettings['hex-blob']) {
1314
$colStmt[] = "LPAD(HEX(`{$colName}`),2,'0') AS `{$colName}`";
1315
+ } elseif ($colType['type'] == 'double' && PHP_VERSION_ID > 80100) {
1316
+ $colStmt[] = sprintf("CONCAT(`%s`) AS `%s`", $colName, $colName);
1317
} elseif ($colType['is_blob'] && $this->dumpSettings['hex-blob']) {
1318
$colStmt[] = "HEX(`{$colName}`) AS `{$colName}`";
1319
} else {
0 commit comments