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 372eed6 commit 674d2d8Copy full SHA for 674d2d8
lib/private/DB/AdapterOCI8.php
@@ -28,8 +28,8 @@ public function fixupStatement($statement) {
28
$statement = str_ireplace('UNIX_TIMESTAMP()', self::UNIX_TIMESTAMP_REPLACEMENT, $statement);
29
30
$statement = preg_replace(
31
- '/^INSERT INTO (".*")( ?\(.*) ?VALUES( ?\(.*)$/',
32
- 'INSERT INTO ${1} VALUES ${2} RETURNING ROWID INTO vRowid',
+ '/^INSERT (INTO .+ VALUES \(.+\))$/',
+ 'INSERT ${1} RETURNING ROWID INTO vRowid',
33
$statement
34
);
35
0 commit comments