1
0
Fork 0
mirror of synced 2025-04-01 12:26:11 +03:00

DDC-1337 - Adjust MultiTableUpdateExecutor and MultiTableDeleteExecutor to use AbstractPlatform

This commit is contained in:
Benjamin Eberlei 2011-09-25 19:01:37 +02:00
parent 919f5e5ebc
commit d2cd6560c5
3 changed files with 3 additions and 3 deletions

View file

@ -98,7 +98,7 @@ class MultiTableDeleteExecutor extends AbstractSqlExecutor
}
$this->_createTempTableSql = $platform->getCreateTemporaryTableSnippetSQL() . ' ' . $tempTable . ' ('
. $platform->getColumnDeclarationListSQL($columnDefinitions) . ')';
$this->_dropTempTableSql = 'DROP TABLE ' . $tempTable;
$this->_dropTempTableSql = $platform->getDropTemporaryTableSQL($tempTable);
}
/**

View file

@ -137,7 +137,7 @@ class MultiTableUpdateExecutor extends AbstractSqlExecutor
$this->_createTempTableSql = $platform->getCreateTemporaryTableSnippetSQL() . ' ' . $tempTable . ' ('
. $platform->getColumnDeclarationListSQL($columnDefinitions) . ')';
$this->_dropTempTableSql = 'DROP TABLE ' . $tempTable;
$this->_dropTempTableSql = $platform->getDropTemporaryTableSQL($tempTable);
}
/**

@ -1 +1 @@
Subproject commit 82cc921447fde697bf3d9f5285d0f0b8587303d8
Subproject commit f91395b6f469b5076f52fefd64574c443b076485