mirror of https://github.com/AMT-Cheif/drift.git
Update test case for custom queries
We now use an explicit index when expanding arrays
This commit is contained in:
parent
4ce9e12c0e
commit
cdb231e1ae
|
@ -19,7 +19,7 @@ void main() {
|
|||
|
||||
verify(
|
||||
executor.runSelect(
|
||||
'SELECT * FROM todos WHERE title = ?2 OR id IN (?,?,?) OR title = ?1',
|
||||
'SELECT * FROM todos WHERE title = ?2 OR id IN (?3, ?4, ?5) OR title = ?1',
|
||||
['one', 'two', 1, 2, 3],
|
||||
),
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue