mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 07:31:57 +00:00
Rename Block to ColumnsWithTypeAndName.
This commit is contained in:
parent
966b1d6cf5
commit
f81af6c958
@ -1171,7 +1171,6 @@ class FunctionBinaryArithmeticWithConstants : public FunctionBinaryArithmetic<Op
|
||||
public:
|
||||
using Base = FunctionBinaryArithmetic<Op, Name, valid_on_default_arguments>;
|
||||
using Monotonicity = typename Base::Monotonicity;
|
||||
using Block = typename Base::ColumnsWithTypeAndName;
|
||||
|
||||
static FunctionPtr create(
|
||||
const ColumnWithTypeAndName & left_,
|
||||
@ -1191,7 +1190,7 @@ public:
|
||||
{
|
||||
}
|
||||
|
||||
void executeImpl(Block & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) const override
|
||||
void executeImpl(ColumnsWithTypeAndName & block, const ColumnNumbers & arguments, size_t result, size_t input_rows_count) const override
|
||||
{
|
||||
if (left.column && isColumnConst(*left.column) && arguments.size() == 1)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user