I wrote this simple program in scala to query cassandra
val session = cass.session
lazy val stmt = cass.session.prepare(
"""
|select token(id), id, date, rId, tt
| from foo
| where token(id) > ?
| and token(id) <= ?;
""".stripMargin
)
lazy val statement = stmt.bind().setLong(0, start).setLong(1, end)
def fromRow(row: Row): Foo = {
val token = row.getLong(0)
val id = row.getLong(1)
val date = row.getLong(2)
val rId = row.getLong(3)
val tt = row.getInt(4)
Foo(id, date, rId, tt)
}
However this code fails with error
[error] (run-main-4) com.datastax.driver.core.exceptions.CodecNotFoundException: Codec not found for requested operation: [timestamp <-> java.lang.Long]
com.datastax.driver.core.exceptions.CodecNotFoundException: Codec not found for requested operation: [timestamp <-> java.lang.Long]
at com.datastax.driver.core.CodecRegistry.notFound(CodecRegistry.java:679)
at com.datastax.driver.core.CodecRegistry.createCodec(CodecRegistry.java:526)
at com.datastax.driver.core.CodecRegistry.findCodec(CodecRegistry.java:506)
at com.datastax.driver.core.CodecRegistry.access$200(CodecRegistry.java:140)
at com.datastax.driver.core.CodecRegistry$TypeCodecCacheLoader.load(CodecRegistry.java:211)
at com.datastax.driver.core.CodecRegistry$TypeCodecCacheLoader.load(CodecRegistry.java:208)
at com.google.common.cache.LocalCache$LoadingValueReference.loadFuture(LocalCache.java:3542)
With driver v4.0, timestamp
is mapped to java.time.Instant
, so:
stmt.bind(Instant.ofEpochSecond(start), Instant.ofEpochSecond(end))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With