Skip to content

Commit 51b161f

Browse files
committed
Forgot to pass the chunk size along with the fetch_all call
1 parent 8615769 commit 51b161f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/exqlite/sqlite3.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ defmodule Exqlite.Sqlite3 do
140140
{:ok, accum ++ rows}
141141

142142
{:rows, rows} ->
143-
fetch_all(conn, statement, accum ++ rows)
143+
fetch_all(conn, statement, chunk_size, accum ++ rows)
144144

145145
{:error, reason} ->
146146
{:error, reason}

0 commit comments

Comments
 (0)