This is an automated email from the ASF dual-hosted git repository.
jmalkin pushed a commit to branch kll_functions
in repository https://gitbox.apache.org/repos/asf/datasketches-spark.git
The following commit(s) were added to refs/heads/kll_functions by this push:
new 7507572 typo in codegen
7507572 is described below
commit 7507572bc65f9e621109fef851a8eb31ca166e02
Author: Jon <[email protected]>
AuthorDate: Thu Mar 6 21:52:58 2025 -0800
typo in codegen
---
.../datasketches/kll/expressions/KllDoublesSketchIsEstimationMode.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/src/main/scala/org/apache/spark/sql/datasketches/kll/expressions/KllDoublesSketchIsEstimationMode.scala
b/src/main/scala/org/apache/spark/sql/datasketches/kll/expressions/KllDoublesSketchIsEstimationMode.scala
index c06e293..5e16284 100644
---
a/src/main/scala/org/apache/spark/sql/datasketches/kll/expressions/KllDoublesSketchIsEstimationMode.scala
+++
b/src/main/scala/org/apache/spark/sql/datasketches/kll/expressions/KllDoublesSketchIsEstimationMode.scala
@@ -70,7 +70,7 @@ case class KllDoublesSketchIsEstimationMode(sketchExpr:
Expression)
s"""
|${sketchEval.code}
|final org.apache.datasketches.kll.KllDoublesSketch $sketch =
org.apache.spark.sql.datasketches.kll.types.KllDoublesSketchType.wrap(${sketchEval.value});
- |final boolen ${ev.value} = $sketch.isEstimationMode();
+ |final boolean ${ev.value} = $sketch.isEstimationMode();
|final boolean ${ev.isNull} = ${sketchEval.isNull};
""".stripMargin
ev.copy(code = CodeBlock(Seq(code), Seq.empty))
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]