Fede Fernández
Fede Fernández
``` [info] Repos >> ListStatus [info] - should return a non empty list when a valid ref is provided *** FAILED *** [info] Right(List()) false was not equal to true...
It would be great to have this library in the maven central repo, for example through sonatype. We're using this library in some other libraries and the resolver needs to...
As part of this ticket, we should add the instances too This ticket can be split into different issues
We're currently compiling mdoc with Scala 2. When trying to compile the documentation using Scala 3, the build fails with the following error ``` error: Exception occurred while executing macro...
- [x] Spike #46 - [x] FieldMapper (from case class to `List[(String, ByteBuffer)]`) - #38 - [ ] Insert statement from a case class - #124 - [ ] Populate...
For the object mapper, we need a method that creates an *insert prepared statement* from a `case class` type using the [`StatementGenerator`](https://github.com/frees-io/freestyle-cassandra/blob/fda39a7d76aceff2a97a0f5f472b2bab56c1ad13/core/src/main/scala/query/StatementGenerator.scala#L25) and the [`SessionAPI.prepare`](https://github.com/frees-io/freestyle-cassandra/blob/4bd76315aab0684417036a5911577cc3be0cd537/core/src/main/scala/api/SessionAPI.scala#L31) method. ```scala def insertStatement[F[_], T]:...
For the object mapper we need a method for populating a previously created *insert prepared statement* with a `case class` instance using the [`StatementAPI.setByteBufferListByName`](https://github.com/frees-io/freestyle-cassandra/blob/e01b49ed82929a004af94aeecc85970e2224c69e/core/src/main/scala/api/StatementAPI.scala#L58) method. ```scala def populateStatement[F[_], T](st: PreparedStatement,...
Method for executing* an *insert statement* from a `case class` (* we're returning a `FreeS`, not executing) using the [`StatementGenerator`](https://github.com/frees-io/freestyle-cassandra/blob/fda39a7d76aceff2a97a0f5f472b2bab56c1ad13/core/src/main/scala/query/StatementGenerator.scala#L25), and the [`SessionAPI.executeWithByteBuffer`](https://github.com/frees-io/freestyle-cassandra/blob/4bd76315aab0684417036a5911577cc3be0cd537/core/src/main/scala/api/SessionAPI.scala#L43) method. ```scala def insert[F[_], T](t: T): FreeS[F,...
We need a method for executing* a *select statement* from a `case class` (* we're returning a `FreeS`, not executing) using the [`StatementGenerator`](https://github.com/frees-io/freestyle-cassandra/blob/fda39a7d76aceff2a97a0f5f472b2bab56c1ad13/core/src/main/scala/query/StatementGenerator.scala#L25), and the [`SessionAPI.execute`](https://github.com/frees-io/freestyle-cassandra/blob/4bd76315aab0684417036a5911577cc3be0cd537/core/src/main/scala/api/SessionAPI.scala#L35) method. ```scala def selectStatement[F[_],...
Fetch a list, an option or directly an object from a `ResultSet` using the [`ResultSetAPI`](https://github.com/frees-io/freestyle-cassandra/blob/e486406a7a7498dbb0cb99198fb49a0e17344e35/core/src/main/scala/api/ResultSetAPI.scala#L25). ```scala def readA[F[_], T](rs: ResultSet): FreeS[F, T] def readOptionA[F[_], T](rs: ResultSet): FreeS[F, Option[T]] def readListA[F[_],...