Skip to content

Commit

Permalink
Fix for Oracle tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Jan 4, 2024
1 parent 2f6b253 commit f6e60bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Support/DbHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ final class DbHelper
{
public static function changeSqlForOracleBatchInsert(string &$str): void
{
$str = str_replace('INSERT INTO', 'INSERT ALL INTO', $str) . ' SELECT 1 FROM SYS.DUAL';
$str = str_replace('INSERT INTO', 'INSERT ALL INTO', $str) . ' SELECT 1 FROM SYS.DUAL';
}

public static function getPsrCache(): CacheInterface
Expand Down

0 comments on commit f6e60bf

Please sign in to comment.