bugfix mustal use correct syntax for BTREE and HASH key types

This commit is contained in:
OpenXE
2023-08-03 14:43:52 +02:00
parent 6242024451
commit 623b041a5f
2 changed files with 24 additions and 15 deletions
+3
View File
@@ -365,6 +365,9 @@ function upgrade_main(string $directory,bool $verbose, bool $check_git, bool $do
foreach ($compare_differences as $compare_difference) {
$comma = "";
foreach ($compare_difference as $key => $value) {
if (is_array($value)) {
$value = implode(',',$value);
}
echo_out($comma."$key => [$value]");
$comma = ", ";
}