mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
20 lines
238 B
C++
20 lines
238 B
C++
|
#pragma once
|
||
|
|
||
|
#include <DB/Core/Block.h>
|
||
|
#include <DB/Core/ColumnNumbers.h>
|
||
|
|
||
|
namespace DB
|
||
|
{
|
||
|
|
||
|
namespace Conditional
|
||
|
{
|
||
|
|
||
|
struct StringEvaluator final
|
||
|
{
|
||
|
static bool perform(Block & block, const ColumnNumbers & args, size_t result);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
}
|