Is there a way to join 2 tables adding a condition on columns between the 2 tables ?
Example :
case class TableA(pkA: Int, valueA: Int)
case class TableB(pkB: Int, valueB: Int)
val rddA = sc.cassandraTable[TableA]("ks", "tableA")
rddA.joinWithCassandraTable[TableB]("ks", "tableB").where("tableB.valueB > tableA.valueA")
Is there a way to send the where("tableB.valueB > tableA.valueA")
instruction ? ("tableB.value" being a clustering column)