From 137eb2202005208d6a0d773e10367d883b900b3f Mon Sep 17 00:00:00 2001 From: Richard Sill Date: Wed, 15 Oct 2025 15:25:36 +0200 Subject: [PATCH] fix for broken links --- .../pages/deprecations-additions-removals-compatibility.adoc | 2 +- modules/ROOT/pages/values-and-types/casting-data.adoc | 2 +- .../pages/values-and-types/ordering-equality-comparison.adoc | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc index 7b227128c..7e2276a36 100644 --- a/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc +++ b/modules/ROOT/pages/deprecations-additions-removals-compatibility.adoc @@ -134,7 +134,7 @@ RETURN datetime('11/18/1986', "MM/dd/yyyy") AS dt ---- | The following constructors of temporal types have been extended with the optional argument `pattern`: -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()]. +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()]. 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. |=== diff --git a/modules/ROOT/pages/values-and-types/casting-data.adoc b/modules/ROOT/pages/values-and-types/casting-data.adoc index 2e72b3cc2..a54aa9546 100644 --- a/modules/ROOT/pages/values-and-types/casting-data.adoc +++ b/modules/ROOT/pages/values-and-types/casting-data.adoc @@ -13,7 +13,7 @@ The following functions are available for casting data values: |=== | Function | Description -| xref:functions/list.adoc#functions-toboolean[`toBoolean()`] | Converts a `STRING`, `INTEGER`, or `BOOLEAN` value to a `BOOLEAN` value. +| `toBoolean()` | Converts a `STRING`, `INTEGER`, or `BOOLEAN` value to a `BOOLEAN` value. | toBooleanList() | Converts a `LIST` and returns a `LIST` values. If any values are not convertible to `BOOLEAN` they will be `null` in the `LIST` returned. diff --git a/modules/ROOT/pages/values-and-types/ordering-equality-comparison.adoc b/modules/ROOT/pages/values-and-types/ordering-equality-comparison.adoc index 733b8ff51..a4b8e8fbc 100644 --- a/modules/ROOT/pages/values-and-types/ordering-equality-comparison.adoc +++ b/modules/ROOT/pages/values-and-types/ordering-equality-comparison.adoc @@ -36,7 +36,7 @@ For example, `1 > b` and `1 < b` are both `false` when `b` is NaN. * Boolean values are compared for ordering such that `false < true`. * When comparing values for ordering, if one of the arguments is `null`, the result is always `null`. * xref:values-and-types/spatial.adoc[Spatial values] and xref:values-and-types/vector.adoc[`VECTOR`] values cannot be compared using the operators `\<=`, `<`,`>=`, `>`. -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. +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. For the ordering of `VECTOR` types, see xref:ordering-vector-types[Ordering `VECTOR` types].