diff options
author | a-romanov <Anton.Romanov@ydb.tech> | 2023-07-11 17:52:13 +0300 |
---|---|---|
committer | a-romanov <Anton.Romanov@ydb.tech> | 2023-07-11 17:52:13 +0300 |
commit | 41effae1b14cbd91927d4d7746c935f773ee87ef (patch) | |
tree | d9bf5c7c671d41d2f28e06b8b976dcb083e9af76 | |
parent | 18962b0e85f2652a798fb2f95fad7171abc21e38 (diff) | |
download | ydb-41effae1b14cbd91927d4d7746c935f773ee87ef.tar.gz |
Fix TOP_BY/BOTTOM_BY signature.
-rw-r--r-- | ydb/docs/ru/core/yql/reference/yql-core/builtins/_includes/aggregation/top_bottom.md | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/ydb/docs/ru/core/yql/reference/yql-core/builtins/_includes/aggregation/top_bottom.md b/ydb/docs/ru/core/yql/reference/yql-core/builtins/_includes/aggregation/top_bottom.md index 543f52bac3..4a7a17df00 100644 --- a/ydb/docs/ru/core/yql/reference/yql-core/builtins/_includes/aggregation/top_bottom.md +++ b/ydb/docs/ru/core/yql/reference/yql-core/builtins/_includes/aggregation/top_bottom.md @@ -32,9 +32,7 @@ FROM my_table; **Сигнатура** ``` -TOP_BY(T1?, T2, limit:Uint32)->List<T1> TOP_BY(T1, T2, limit:Uint32)->List<T1> -BOTTOM_BY(T1?, T2, limit:Uint32)->List<T1> BOTTOM_BY(T1, T2, limit:Uint32)->List<T1> ``` |