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 da1385e commit 15f951fCopy full SHA for 15f951f
src/Propel/Generator/Platform/Util/AlterTableStatementMerger.php
@@ -67,10 +67,9 @@ public function __construct(Table $table)
67
*/
68
public function mergeStatements(string $sql): string
69
{
70
- $statements = explode(';', $sql);
71
-// $sqlParser = new SqlParser();
72
-// $sqlParser->setSQL($sql);
73
-// $statements = $sqlParser->explodeIntoStatements();
+ $sqlParser = new SqlParser();
+ $sqlParser->setSQL($sql);
+ $statements = $sqlParser->explodeIntoStatements();
74
75
$blocks = [];
76
$currentBlock = [];
0 commit comments