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
Version: 4.6.0 Module: quill-jdbc-zio Database: mysql
I get empty list when try to use streaming with fetchSize=Int.MinValue to tell the driver to stream the results back one row at a time as described here in ResultSet
stream(query[Shipment], Int.MinValue)
Expected behavior
stream(query[Shipment], Int.MinValue) == stream(query[Shipment])
it should differ only by fetching way
Actual behavior
Getting empty list
Workaround
it seems the problem is that negative size is not handled at all
Version:
4.6.0
Module:
quill-jdbc-zio
Database:
mysql
I get empty list when try to use streaming with
fetchSize=Int.MinValue
to tell the driver to stream the results back one row at a time as described here in ResultSetExpected behavior
stream(query[Shipment], Int.MinValue) == stream(query[Shipment])
it should differ only by fetching way
Actual behavior
Getting empty list
Workaround
it seems the problem is that negative size is not handled at all
zio-quill/quill-jdbc-zio/src/main/scala/io/getquill/context/qzio/ZioJdbcUnderlyingContext.scala
Lines 164 to 171 in c33ac29
@getquill/maintainers
The text was updated successfully, but these errors were encountered: