You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
While analyzing #1412, I found that spark IntegralDivide function is not yet supported. After #1412 is resolved, I want to try to implement it.
Describe the potential solution
No response
Additional context
unit test like:
test("test integral divide") {
withTable("t1") {
sql(s"create table t1(c1 long, c2 int) using parquet")
sql(s"insert into t1 values(${Long.MinValue}, -1), (10, 0), (52, 10)")
checkSparkAnswerAndOperator("select c1 div c2 from t1 order by c1")
}
}
The text was updated successfully, but these errors were encountered:
What is the problem the feature request solves?
While analyzing #1412, I found that spark
IntegralDivide
function is not yet supported. After #1412 is resolved, I want to try to implement it.Describe the potential solution
No response
Additional context
unit test like:
The text was updated successfully, but these errors were encountered: