Update test case for custom queries

We now use an explicit index when expanding arrays
This commit is contained in:
Simon Binder 2019-08-16 15:08:07 +02:00
parent 4ce9e12c0e
commit cdb231e1ae
No known key found for this signature in database
GPG Key ID: 7891917E4147B8C0
1 changed files with 1 additions and 1 deletions

View File

@ -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],
),
);