Merge pull request #67347 from ssheikin/patch-1

Fix positionCaseInsensitive example
This commit is contained in:
Alexey Milovidov 2024-08-02 20:02:36 +00:00 committed by GitHub
commit 65e0168b64
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -150,15 +150,15 @@ A case insensitive invariant of [position](#position).
Query:
``` sql
SELECT position('Hello, world!', 'hello');
SELECT positionCaseInsensitive('Hello, world!', 'hello');
```
Result:
``` text
┌─position('Hello, world!', 'hello')─┐
0
└────────────────────────────────────┘
┌─positionCaseInsensitive('Hello, world!', 'hello')─┐
1
└───────────────────────────────────────────────────
```
## positionUTF8