diff --git a/tests/data/ngdata/config.yaml b/tests/data/ngdata/config.yaml index 0bfc6ab32c1..306d13f974e 100644 --- a/tests/data/ngdata/config.yaml +++ b/tests/data/ngdata/config.yaml @@ -35,7 +35,6 @@ schema: |- CREATE TAG INDEX Label_11_index ON Label_11 (Label_11_5_Double); CREATE EDGE INDEX Rel_5_index ON Rel_5 (Rel_5_1_Bool, Rel_5_6_Int, Rel_5_2_String(64)); CREATE EDGE INDEX Rel_0_index ON Rel_0 (Rel_0_3_Double); - CREATE EDGE INDEX Rel_3_index ON Rel_3 (Rel_3_1_geography_point); files: - path: Label_0.csv withHeader: true diff --git a/tests/tck/features/lookup/LookupNGDataTest.feature b/tests/tck/features/lookup/LookupNGDataTest.feature index ea527f850d3..09838bcf2c4 100644 --- a/tests/tck/features/lookup/LookupNGDataTest.feature +++ b/tests/tck/features/lookup/LookupNGDataTest.feature @@ -42,17 +42,3 @@ Feature: Test lookup on ngdata data """ Then the result should be, in any order: | eid | - - Scenario: lookup on the edge property of geography type - When executing query: - """ - LOOKUP ON Rel_3 WHERE Rel_3.Rel_3_1_geography_point>0 YIELD id(edge) AS eid - """ - Then the result should be, in any order: - | eid | - When executing query: - """ - LOOKUP ON Rel_3 WHERE Rel_3.Rel_3_1_geography_point>10 YIELD id(edge) AS eid - """ - Then the result should be, in any order: - | eid |