ClickHouse/src/Databases/removeWhereConditionPlaceholder.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

12 lines
214 B
C++
Raw Normal View History

#pragma once
2023-05-07 22:57:13 +00:00
#include <string>
namespace DB
{
static constexpr std::string_view CONDITION_PLACEHOLDER_TO_REPLACE_VALUE = "{condition}";
std::string removeWhereConditionPlaceholder(const std::string & query);
}