mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5b1eaba276
* Every function in its own file, part 6 [#CLICKHOUSE-2] * Every function in its own file, part 6 [#CLICKHOUSE-2] * Every function in its own file, part 6 [#CLICKHOUSE-2]
34 lines
682 B
C++
34 lines
682 B
C++
#pragma once
|
|
|
|
#include <Functions/FunctionsURL.h>
|
|
#include <common/find_symbols.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
template <bool without_leading_char>
|
|
struct ExtractQueryString
|
|
{
|
|
static size_t getReserveLengthForElement() { return 10; }
|
|
|
|
static void execute(Pos data, size_t size, Pos & res_data, size_t & res_size)
|
|
{
|
|
res_data = data;
|
|
res_size = 0;
|
|
|
|
Pos pos = data;
|
|
Pos end = pos + size;
|
|
|
|
if (end != (pos = find_first_symbols<'?'>(pos, end)))
|
|
{
|
|
Pos fragment = find_first_symbols<'#'>(pos, end);
|
|
|
|
res_data = pos + (without_leading_char ? 1 : 0);
|
|
res_size = fragment - res_data;
|
|
}
|
|
}
|
|
};
|
|
|
|
}
|