Fix positionCaseInsensitive example

This commit is contained in:
Sasha Sheikin 2024-07-29 10:31:35 +02:00
parent 37210d29ee
commit ae6d4bdd8a
No known key found for this signature in database
GPG Key ID: 5252399241DCE989

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