We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9313e6 commit bb594cbCopy full SHA for bb594cb
spark-3.4/clickhouse-spark/src/main/scala/xenon/clickhouse/func/clickhouse/Mod.scala
@@ -26,6 +26,8 @@ object Mod extends UnboundFunction with ScalarFunction[Long] with ClickhouseEqui
26
27
override def toString: String = name
28
29
+ // remainder is not a Clickhouse function, but modulo will be parsed to remainder in the connector.
30
+ // Added remainder as a synonym.
31
override val ckFuncNames: Array[String] = Array("modulo", "remainder")
32
33
override def description: String = s"$name: (a: long, b: long) => mod: long"
0 commit comments