mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-25 09:02:00 +00:00
Merge pull request #67347 from ssheikin/patch-1
Fix positionCaseInsensitive example
This commit is contained in:
commit
65e0168b64
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user