Skip to content

Commit 884eb70

Browse files
authored
Fix for broken links (#1404)
1 parent 5a9a0b6 commit 884eb70

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ RETURN datetime('11/18/1986', "MM/dd/yyyy") AS dt
134134
----
135135

136136
| The following constructors of temporal types have been extended with the optional argument `pattern`:
137-
xref:functions/temporal/index.adoc#functions-date[date()], xref:functions/temporal/index.adoc#functions-datetime[datetime()], xref:functions/temporal/index.adoc#functions-localdatetime[localdatetime()], xref:functions/temporal/index.adoc#functions-localtime[localtime()], xref:functions/temporal/index.adoc#functions-time[time()] and xref:functions/temporal/duration.adoc#query-functions-temporal-duration[duration()].
137+
xref:functions/temporal/index.adoc#functions-date[date()], xref:functions/temporal/index.adoc#functions-datetime[datetime()], xref:functions/temporal/index.adoc#functions-localdatetime[localdatetime()], xref:functions/temporal/index.adoc#functions-localtime[localtime()], xref:functions/temporal/index.adoc#functions-time[time()] and xref:functions/temporal/duration.adoc#functions-durations[duration()].
138138
These patterns are the same as those used to create temporal strings with the xref:functions/temporal/format.adoc[`format()`] function introduced in 2025.09 and thus allow for the parsing of temporal strings into temporal values.
139139
|===
140140

modules/ROOT/pages/values-and-types/casting-data.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ The following functions are available for casting data values:
1313
|===
1414
| Function | Description
1515

16-
| xref:functions/list.adoc#functions-toboolean[`toBoolean()`] | Converts a `STRING`, `INTEGER`, or `BOOLEAN` value to a `BOOLEAN` value.
16+
| `toBoolean()` | Converts a `STRING`, `INTEGER`, or `BOOLEAN` value to a `BOOLEAN` value.
1717

1818
| toBooleanList() | Converts a `LIST<ANY>` and returns a `LIST<BOOLEAN>` values.
1919
If any values are not convertible to `BOOLEAN` they will be `null` in the `LIST<BOOLEAN>` returned.

modules/ROOT/pages/values-and-types/ordering-equality-comparison.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ For example, `1 > b` and `1 < b` are both `false` when `b` is NaN.
3636
* Boolean values are compared for ordering such that `false < true`.
3737
* When comparing values for ordering, if one of the arguments is `null`, the result is always `null`.
3838
* xref:values-and-types/spatial.adoc[Spatial values] and xref:values-and-types/vector.adoc[`VECTOR`] values cannot be compared using the operators `\<=`, `<`,`>=`, `>`.
39-
To compare spatial values within a specific range, use either the xref:functions/spatial.adoc#functions-withinBBox[`point.withinBBox()`] or the xref:functions/spatial.adoc#functions-point-wgs84-2d[`point()`] function.
39+
To compare spatial values within a specific range, use either the xref:functions/spatial.adoc#functions-withinBBox[`point.withinBBox()`] or the xref:functions/spatial.adoc#functions-point[`point()`] function.
4040

4141

4242
For the ordering of `VECTOR` types, see xref:ordering-vector-types[Ordering `VECTOR` types].

0 commit comments

Comments
 (0)