Skip to content

Commit

Permalink
Fix QueryBuilderTest::testBatchInsert()
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Dec 6, 2023
1 parent 345cc94 commit 099d260
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions tests/Provider/QueryBuilderProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,13 @@ public static function batchInsert(): array
DbHelper::changeSqlForOracleBatchInsert($batchInsert['bool-false, time-now()']['expected']);
DbHelper::changeSqlForOracleBatchInsert($batchInsert['column table names are not checked']['expected']);

$batchInsert['bool-false, bool2-null']['expectedParams'][':qp0'] = '0';
$batchInsert['bool-false, time-now()']['expectedParams'][':qp0'] = '0';
$batchInsert['column table names are not checked']['expectedParams'] = [
':qp0' => '1',
':qp1' => '0',
];

return $batchInsert;
}

Expand Down

0 comments on commit 099d260

Please sign in to comment.