mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
Merge pull request #312 from hatarist/decodeurl_ref
Added decodeURLComponent to the reference
This commit is contained in:
commit
50623a3912
@ -5204,6 +5204,18 @@ URLPathHierarchy('https://example.com/browse/CONV-6788') =
|
||||
]
|
||||
%%
|
||||
|
||||
<h4>decodeURLComponent(URL)</h4>
|
||||
Returns a URL-decoded URL.
|
||||
|
||||
Example:
|
||||
%%
|
||||
:) SELECT decodeURLComponent('http://127.0.0.1:8123/?query=SELECT%201%3B') AS DecodedURL;
|
||||
|
||||
┌─DecodedURL─────────────────────────────┐
|
||||
│ http://127.0.0.1:8123/?query=SELECT 1; │
|
||||
└────────────────────────────────────────┘
|
||||
%%
|
||||
|
||||
===Functions that remove part of a URL.===
|
||||
|
||||
If the URL doesn't have anything similar, the URL remains unchanged.
|
||||
|
@ -5297,6 +5297,18 @@ URLPathHierarchy('https://example.com/browse/CONV-6788') =
|
||||
]
|
||||
%%
|
||||
|
||||
<h4>decodeURLComponent(URL)</h4>
|
||||
Возвращает декодированный URL.
|
||||
|
||||
Пример:
|
||||
%%
|
||||
:) SELECT decodeURLComponent('http://127.0.0.1:8123/?query=SELECT%201%3B') AS DecodedURL;
|
||||
|
||||
┌─DecodedURL─────────────────────────────┐
|
||||
│ http://127.0.0.1:8123/?query=SELECT 1; │
|
||||
└────────────────────────────────────────┘
|
||||
%%
|
||||
|
||||
===Функции, удаляющие часть из URL-а.===
|
||||
|
||||
Если в URL-е нет ничего похожего, то URL остаётся без изменений.
|
||||
|
Loading…
Reference in New Issue
Block a user