You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: tests/Database/SqlPreprocessor.phpt
+6-1
Original file line number
Diff line number
Diff line change
@@ -80,6 +80,11 @@ test('IN', function () use ($preprocessor) {
80
80
81
81
Assert::same(reformat('SELECT id FROM author WHERE ([a] IN (NULL, ?, ?, ?)) AND (1=0) AND ([c] NOT IN (NULL, ?, ?, ?))'), $sql);
82
82
Assert::same([1, 2, 3, 1, 2, 3], $params);
83
+
84
+
85
+
[$sql, $params] = $preprocessor->process(['SELECT * FROM table WHERE ? AND id IN (?) AND ?', ['a' => 111], [3, 4], ['b' => 222]]);
86
+
Assert::same(reformat('SELECT * FROM table WHERE ([a] = ?) AND id IN (?, ?) AND ([b] = ?)'), $sql);
87
+
Assert::same([111, 3, 4, 222], $params);
83
88
});
84
89
85
90
@@ -349,7 +354,7 @@ test('?values', function () use ($preprocessor) {
349
354
350
355
test('automatic detection failed', function () use ($preprocessor) {
351
356
Assert::exception(function () use ($preprocessor) {
352
-
$preprocessor->process(['INSERT INTO author (name) SELECT name FROM user WHERE id IN (?)', [11, 12]]);
357
+
dump($preprocessor->process(['INSERT INTO author (name) SELECT name FROM user WHERE id ?', [11, 12]])); // invalid sql
353
358
}, Nette\InvalidArgumentException::class, 'Automaticaly detected multi-insert, but values aren\'t array. If you need try to change mode like "?[and|or|set|values|order|list]". Mode "values" was used.');
0 commit comments