Skip to content

Commit 8d360e8

Browse files
committed
Convert more D4 instances
1 parent 05e5712 commit 8d360e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

content/develop/interact/search-and-query/advanced-concepts/geo.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ example, the query below returns one primitive that lies within the boundary
166166
of the green square (from the example above) but omits the square itself:
167167

168168
```bash
169-
> FT.SEARCH geomidx "(-@name:(Green Square) @geom:[WITHIN $qshape])" PARAMS 2 qshape "POLYGON ((1 1, 1 3, 3 3, 3 1, 1 1))" RETURN 1 name DIALECT 4
169+
> FT.SEARCH geomidx "(-@name:(Green Square) @geom:[WITHIN $qshape])" PARAMS 2 qshape "POLYGON ((1 1, 1 3, 3 3, 3 1, 1 1))" RETURN 1 name DIALECT 2
170170

171171
1) (integer) 1
172172
2) "shape:4"

content/develop/interact/search-and-query/basic-constructs/field-and-type-options.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ and `<shape>` is the shape of interest, specified in the
131131
format. For example, the query below finds shapes that contain the point (2, 2):
132132

133133
```
134-
FT.SEARCH idx "(@geom:[CONTAINS $qshape])" PARAMS 2 qshape "POINT (2 2)" RETURN 1 name DIALECT 4
134+
FT.SEARCH idx "(@geom:[CONTAINS $qshape])" PARAMS 2 qshape "POINT (2 2)" RETURN 1 name DIALECT 2
135135
```
136136

137137
See

content/develop/interact/search-and-query/indexing/geoindex.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ example, the query below returns any shapes within the boundary
9696
of the green square but omits the green square itself:
9797

9898
{{< clients-example geoindex gshape_query >}}
99-
> FT.SEARCH geomidx "(-@name:(Green Square) @geom:[WITHIN $qshape])" PARAMS 2 qshape "POLYGON ((1 1, 1 3, 3 3, 3 1, 1 1))" RETURN 1 name DIALECT 4
99+
> FT.SEARCH geomidx "(-@name:(Green Square) @geom:[WITHIN $qshape])" PARAMS 2 qshape "POLYGON ((1 1, 1 3, 3 3, 3 1, 1 1))" RETURN 1 name DIALECT 2
100100
101101
1) (integer) 1
102102
2) "shape:4"

0 commit comments

Comments
 (0)