Commit 00067f0c authored by Bertrand Gauthier's avatar Bertrand Gauthier
Browse files

[FIX] Génération du SQL de diff : Gros bug en cas de type booléen non supporté par le SGBD.

parent d6847815
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -217,7 +217,7 @@ EOT;

        $deletedOnColumn = $this->config->getHistoColumnAliasForDeletedOn();

        $requiredValueForImportable = $this->platformSupportsBooleanType() ? 'true' : 0;
        $requiredValueForImportable = $this->platformSupportsBooleanType() ? 'true' : 1;

        return <<<EOT
with diff as (