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 f5ccd08 commit 8cf59fdCopy full SHA for 8cf59fd
1 file changed
lib/private/DB/OracleConnection.php
@@ -26,6 +26,13 @@ private function quoteKeys(array $data) {
26
return $return;
27
}
28
29
+ public function truncateTable(string $table, bool $cascade) {
30
+ if ($table[0] !== $this->getDatabasePlatform()->getIdentifierQuoteCharacter()) {
31
+ $table = $this->quoteIdentifier($table);
32
+ }
33
+ return parent::truncateTable($table, $cascade);
34
35
+
36
/**
37
* {@inheritDoc}
38
*/
0 commit comments