zio / zio-quill

Compile-time Language Integrated Queries for Scala

Home Page:https://zio.dev/zio-quill

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Quill cassandra monix: fetchSize parameter gets ignored

ntaouros opened this issue · comments

Version: 4.4.0
Module: quill-cassandra-monix
Database: casssandra

   val queryToRun = quote {
      query[MY_TABLE]
    }

    val observable = ctx.stream(queryToRun, 10000) 

The above code still fetches max 5000 records. I would expect it to fetch the designated amount of fetchSize (10000)

@getquill/maintainers