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