summaryrefslogtreecommitdiffstats
path: root/yql/essentials/docs/en/builtins
diff options
context:
space:
mode:
authorrobot-piglet <[email protected]>2025-07-29 21:37:12 +0300
committerrobot-piglet <[email protected]>2025-07-29 21:47:37 +0300
commit431a5bd17a0a5eb99915f6222631a1c91e96568a (patch)
tree93e35de95826d1c15fbd27d25e022eb4794d80b7 /yql/essentials/docs/en/builtins
parent47683a005b904066243ad7ce8b16102a89bbf408 (diff)
Intermediate changes
commit_hash:2abde8e0f92128da6d1129e60c1be311b1abdb43
Diffstat (limited to 'yql/essentials/docs/en/builtins')
-rw-r--r--yql/essentials/docs/en/builtins/struct.md2
-rw-r--r--yql/essentials/docs/en/builtins/types.md4
-rw-r--r--yql/essentials/docs/en/builtins/window.md4
3 files changed, 5 insertions, 5 deletions
diff --git a/yql/essentials/docs/en/builtins/struct.md b/yql/essentials/docs/en/builtins/struct.md
index 5376e96a6ae..31766cf9e95 100644
--- a/yql/essentials/docs/en/builtins/struct.md
+++ b/yql/essentials/docs/en/builtins/struct.md
@@ -316,7 +316,7 @@ SELECT
ForceSpreadMembers([('a',1),('a',2),('c',100)],['a','b']); -- (a: 2, b: null)
```
-## StructUnion, StructIntersection, StructDifference, StructSymmetricDifference
+## StructUnion, StructIntersection, StructDifference, StructSymmetricDifference {#struct-combining}
Combine two structures using one of the four methods (using the provided lambda to merge fields with the same name):
diff --git a/yql/essentials/docs/en/builtins/types.md b/yql/essentials/docs/en/builtins/types.md
index b1e75055d86..566ee1de1f2 100644
--- a/yql/essentials/docs/en/builtins/types.md
+++ b/yql/essentials/docs/en/builtins/types.md
@@ -380,7 +380,7 @@ SELECT FormatType(ListTypeHandle(
)); -- List<Bool>
```
-### EmptyListTypeHandle and EmptyDictTypeHandle
+### EmptyListTypeHandle and EmptyDictTypeHandle {#empty-list-dict-type-handle}
Constructs a handle for an empty list or dictionary.
@@ -546,7 +546,7 @@ SELECT FormatType(VariantTypeHandle(
)); -- Variant<Int32, String>
```
-### VoidTypeHandle and NullTypeHandle
+### VoidTypeHandle and NullTypeHandle {#void-null-type-handle}
Constructing a handle for Void and Null types, respectively.
diff --git a/yql/essentials/docs/en/builtins/window.md b/yql/essentials/docs/en/builtins/window.md
index c764a305049..8bc4b44ba6e 100644
--- a/yql/essentials/docs/en/builtins/window.md
+++ b/yql/essentials/docs/en/builtins/window.md
@@ -91,7 +91,7 @@ item odd lag1
```
-## FIRST_VALUE / LAST_VALUE
+## FIRST_VALUE / LAST_VALUE {#first-last-value}
Access values from the first and last rows (using the `ORDER BY` clause for the window) of the [window frame](../syntax/window.md#frame). The only argument is the expression that you need to access.
@@ -240,7 +240,7 @@ WINDOW w AS (ORDER BY key);
```
-## SessionState() {#session-state}
+## SessionState {#session-state}
A non-standard window function `SessionState()` (without arguments) lets you get the session calculation status from [SessionWindow](../syntax/group_by.md#session-window) for the current row.
It's allowed only if `SessionWindow()` is present in the `PARTITION BY` section in the window definition.