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


##########
flink/src/test/java/org/apache/sedona/flink/FunctionTest.java:
##########
@@ -73,10 +73,23 @@ public void testPointOnSurface() {
         assertEquals("POINT (32 -118)", result.toString());
     }
 
+    @Test
     public void testReverse() {
         Table polygonTable = createPolygonTable(1);
         Table ReversedTable = 
polygonTable.select(call(Functions.ST_Reverse.class.getSimpleName(), 
$(polygonColNames[0])));
         Geometry result = (Geometry) first(ReversedTable).getField(0);
         assertEquals("POLYGON ((-0.5 -0.5, 0.5 -0.5, 0.5 0.5, -0.5 0.5, -0.5 
-0.5))", result.toString());
     }
+
+    /* ST_SetSrid Has not been implemented in flink yet
+    @Test
+    public void testAsEWKT() {

Review Comment:
   Please enable the test case. Why do you call it ReverseTable?



-- 
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