We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the bug evaluation is failed
To Reproduce Steps to reproduce the behavior:
import org.apache.spark.sql.arctern.functions._ import org.apache.spark.sql.functions._ class IndexedWithinTest extends AdapterTest { test("naive") { val ss = spark import ss.implicits._ val points_text = Seq( "Point(1 1)", "Point(1 2)", "Point(2 1)", "Point(2 2)", "Point(4 5)", "Point(8 8)", "Point(10 10)", ).toDF("points_text").withColumn("attr", monotonically_increasing_id()) val polygons_text = Seq( "Polygon((0 0, 3 0, 3 3, 0 3, 0 0))", "Polygon((6 6, 3 6, 3 3, 6 3, 6 6))", "Polygon((6 6, 9 6, 9 9, 6 9, 6 6))", ).toDF("polygons_text").withColumn("id", monotonically_increasing_id()) val points = points_text.select(st_geomfromtext('points_text).as("points")) val polygons = polygons_text.select(st_astext(st_geomfromtext('polygons_text)).as("polygons_text_again")) // both are unusable points.show() polygons.show() } }
Expected behavior runnable
Any logs, error output, snapshot, etc?
call implement method java.lang.RuntimeException: call implement method at org.apache.spark.sql.arctern.expressions.ST_UnaryOp.eval(Functions.scala:287)
The text was updated successfully, but these errors were encountered:
neza2017
No branches or pull requests
Describe the bug
evaluation is failed
To Reproduce
Steps to reproduce the behavior:
Expected behavior
runnable
Any logs, error output, snapshot, etc?
The text was updated successfully, but these errors were encountered: