mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 11:22:12 +00:00
11 lines
201 B
C++
11 lines
201 B
C++
|
#include <string>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
static constexpr std::string_view CONDITION_PLACEHOLDER_TO_REPLACE_VALUE = "{condition}";
|
||
|
|
||
|
std::string removeWhereConditionPlaceholder(const std::string & query);
|
||
|
|
||
|
}
|