@@ -3031,6 +3031,7 @@ wkt:keyword |pt:cartesian_point
3031
3031
3032
3032
stSimplifyMultiRow
3033
3033
required_capability: st_simplify
3034
+ required_capability: spatial_points_from_source
3034
3035
3035
3036
FROM airports
3036
3037
| SORT name
@@ -3049,6 +3050,7 @@ Abuja Int'l | POLYGON ((-10.0 -60.0, -10.0 60.0, 120.0 60.0, 120.0
3049
3050
3050
3051
stSimplifyMultiRowWithPoints
3051
3052
required_capability: st_simplify
3053
+ required_capability: spatial_points_from_source
3052
3054
3053
3055
FROM airports
3054
3056
| SORT name
@@ -3067,6 +3069,7 @@ POINT (7.27025993974356 9.00437659781094) | POINT (7.27025993974356 9.004376597
3067
3069
3068
3070
stSimplifyNoSimplification
3069
3071
required_capability: st_simplify
3072
+ required_capability: spatial_points_from_source
3070
3073
3071
3074
ROW geo_shape = TO_GEOSHAPE("POLYGON((0 0, 1 0.1, 2 0, 2 2, 1 1.9, 0 2, 0 0))")
3072
3075
| EVAL result = st_simplify(geo_shape, 0.01)
@@ -3079,6 +3082,7 @@ POLYGON ((0.0 0.0, 0.0 2.0, 1.0 1.9, 2.0 2.0, 2.0 0.0, 1.0 0.1, 0.0 0.0))
3079
3082
3080
3083
stSimplifyWithSimplification
3081
3084
required_capability: st_simplify
3085
+ required_capability: spatial_points_from_source
3082
3086
3083
3087
ROW geo_shape = TO_GEOSHAPE("POLYGON((0 0, 1 0.1, 2 0, 2 2, 1 1.9, 0 2, 0 0))")
3084
3088
| EVAL result = st_simplify(geo_shape, 0.2)
@@ -3091,6 +3095,7 @@ POLYGON ((0.0 0.0, 0.0 2.0, 2.0 2.0, 2.0 0.0, 0.0 0.0))
3091
3095
3092
3096
stSimplifyEmptySimplification
3093
3097
required_capability: st_simplify
3098
+ required_capability: spatial_points_from_source
3094
3099
3095
3100
ROW geo_shape = TO_GEOSHAPE("POLYGON((0 0, 1 0.1, 2 0, 2 2, 1 1.9, 0 2, 0 0))")
3096
3101
| EVAL result = st_simplify(geo_shape, 2.0)
@@ -3103,6 +3108,7 @@ POLYGON EMPTY
3103
3108
3104
3109
stSimplifyNull
3105
3110
required_capability: st_simplify
3111
+ required_capability: spatial_points_from_source
3106
3112
3107
3113
ROW geo_shape = NULL
3108
3114
| EVAL result = st_simplify(geo_shape, 2.0)
@@ -3115,6 +3121,7 @@ NULL
3115
3121
3116
3122
stSimplifyCartesianPoint
3117
3123
required_capability: st_simplify
3124
+ required_capability: spatial_points_from_source
3118
3125
3119
3126
# TODO Why cannot we use a latitud outside of -90, 90 when there are tests
3120
3127
# that use the TO_CARTESIANPOINT that are doing it already?
@@ -3132,6 +3139,7 @@ POINT (80.93 72.77)
3132
3139
3133
3140
stSimplifyCartesianShape
3134
3141
required_capability: st_simplify
3142
+ required_capability: spatial_points_from_source
3135
3143
3136
3144
ROW wkt = ["POINT(97.11 75.53)", "POLYGON((0 0, 1 0.1, 2 0, 2 2, 1 1.9, 0 2, 0 0))"]
3137
3145
| MV_EXPAND wkt
0 commit comments