diff options
author | robot-piglet <robot-piglet@yandex-team.com> | 2025-05-20 09:16:17 +0300 |
---|---|---|
committer | robot-piglet <robot-piglet@yandex-team.com> | 2025-05-20 09:28:49 +0300 |
commit | 33c2fd062d8a4d502fe87b69e7085028f633d4dc (patch) | |
tree | edf595303855c3b5ec84c5c068b6636af60b0441 | |
parent | 9e84784e35e577b7a63832b44dae1e50799759f6 (diff) | |
download | ydb-33c2fd062d8a4d502fe87b69e7085028f633d4dc.tar.gz |
Intermediate changes
commit_hash:bd56a0bd0fbcf787bb946c427aeab26dec03e32a
-rw-r--r-- | yql/essentials/docs/en/changelog/2025.02.md | 10 | ||||
-rw-r--r-- | yql/essentials/docs/ru/changelog/2025.02.md | 10 | ||||
-rw-r--r-- | yql/essentials/docs/ru/udf/list/string.md | 2 |
3 files changed, 11 insertions, 11 deletions
diff --git a/yql/essentials/docs/en/changelog/2025.02.md b/yql/essentials/docs/en/changelog/2025.02.md index cb6040a988b..841efc2fb62 100644 --- a/yql/essentials/docs/en/changelog/2025.02.md +++ b/yql/essentials/docs/en/changelog/2025.02.md @@ -28,8 +28,8 @@ SELECT foo_new, ... WHERE foo = 1 GROUP BY expr AS foo_new ## Changes in the String module {#string-module} -Removed String::Reverse function, use Unicode::Reverse. -Removed String::HasPrefixIgnoreCase and String::StartsWithIgnoreCase functions, use String::AsciiStartsWithIgnoreCase. -Removed String::HasSuffixIgnoreCase and String::EndsWithIgnoreCase functions, use String::AsciiEndsWithIgnoreCase. -Added String::AsciiContainsIgnoreCase and String::AsciiEqualsIgnoreCase functions. -Added String::ReverseBytes and String::ReverseBits functions. +* Removed String::Reverse function, use Unicode::Reverse. +* Removed String::HasPrefixIgnoreCase and String::StartsWithIgnoreCase functions, use String::AsciiStartsWithIgnoreCase. +* Removed String::HasSuffixIgnoreCase and String::EndsWithIgnoreCase functions, use String::AsciiEndsWithIgnoreCase. +* Added String::AsciiContainsIgnoreCase and String::AsciiEqualsIgnoreCase functions. +* Added String::ReverseBytes and String::ReverseBits functions. diff --git a/yql/essentials/docs/ru/changelog/2025.02.md b/yql/essentials/docs/ru/changelog/2025.02.md index 6fc85009362..e24b5646f5c 100644 --- a/yql/essentials/docs/ru/changelog/2025.02.md +++ b/yql/essentials/docs/ru/changelog/2025.02.md @@ -28,8 +28,8 @@ SELECT foo_new, ... WHERE foo = 1 GROUP BY expr AS foo_new ## Изменения в модуле String {#string-module} -Удалена функция String::Reverse, используйте Unicode::Reverse. -Удалены функции String::HasPrefixIgnoreCase и String::StartsWithIgnoreCase, используйте String::AsciiStartsWithIgnoreCase. -Удалены функции String::HasSuffixIgnoreCase и String::EndsWithIgnoreCase, используйте String::AsciiEndsWithIgnoreCase. -Добавлены функции String::AsciiContainsIgnoreCase и String::AsciiEqualsIgnoreCase. -Добавлены функции String::ReverseBytes и String::ReverseBits. +* Удалена функция String::Reverse, используйте Unicode::Reverse. +* Удалены функции String::HasPrefixIgnoreCase и String::StartsWithIgnoreCase, используйте String::AsciiStartsWithIgnoreCase. +* Удалены функции String::HasSuffixIgnoreCase и String::EndsWithIgnoreCase, используйте String::AsciiEndsWithIgnoreCase. +* Добавлены функции String::AsciiContainsIgnoreCase и String::AsciiEqualsIgnoreCase. +* Добавлены функции String::ReverseBytes и String::ReverseBits. diff --git a/yql/essentials/docs/ru/udf/list/string.md b/yql/essentials/docs/ru/udf/list/string.md index 38152a483e1..c2bf6ec544c 100644 --- a/yql/essentials/docs/ru/udf/list/string.md +++ b/yql/essentials/docs/ru/udf/list/string.md @@ -49,7 +49,7 @@ SELECT String::Strip("YQL "); -- "YQL" * `String::AsciiContainsIgnoreCase(string:String?, substring:String) -> Bool` * `String::AsciiEqualsIgnoreCase(left:String?, right:String) -> Bool` - Проверяют наличие подстроки или полное равенство строк без учета регистра символов. + Проверяют наличие подстроки или полное равенство строк без учета регистра символов - добавлены в версии [2025.02](../../changelog/2025.02.md#string-module) * `String::Find(string:String{Flags:AutoMap}, String, [Uint64?]) -> Int64` - Устаревшая: используйте встроенную функцию [Find](../../builtins/basic.md#find) * `String::ReverseFind(string:String{Flags:AutoMap}, String, [Uint64?]) -> Int64` - Устаревшая: используйте встроенную функцию [RFind](../../builtins/basic.md#rfind) |