jiayuasu commented on code in PR #626:
URL: https://github.com/apache/incubator-sedona/pull/626#discussion_r867432769


##########
docs/api/flink/Predicate.md:
##########
@@ -41,4 +41,25 @@ Spark SQL example:
 SELECT *
 FROM pointdf 
 WHERE ST_Disjoinnt(ST_PolygonFromEnvelope(1.0,100.0,1000.0,1100.0), 
pointdf.arealandmark)
-```
\ No newline at end of file
+```
+
+## ST_OrderingEquals
+Introduction: Returns true if the geometries are equal and the coordinates are 
in the same order
+
+Format: `ST_OrderingEquals(A: geometry, B: geometry)`
+
+Since: `v1.2.1`
+
+Spark SQL example 1:

Review Comment:
   Please remove `spark` here because this is for Flink.



##########
python/tests/sql/test_predicate.py:
##########
@@ -206,3 +206,13 @@ def test_st_overlaps(self):
         not_overlaps = self.spark.sql("select ST_Overlaps(c,d) from testtable")
         assert overlaps.take(1)[0][0]
         assert not not_overlaps.take(1)[0][0]
+
+    def test_st_ordering_equals_ok(self):

Review Comment:
   Can you add a similar test for Spark SQL in Scala?



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to