Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
xzhangxian1008 committed Oct 18, 2022
1 parent 663f681 commit 9c44602
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions dbms/src/Functions/FunctionsLogical.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,14 +97,10 @@ struct NotImpl
{
using ResultType = UInt8;

<<<<<<< HEAD
static inline UInt8 apply(A a) { return !a; }
=======
static inline bool apply(A a)
{
return !a;
}
>>>>>>> 1e0e3c8973 (fix inconsistent result before deleting some rows (#6133))
};


Expand Down Expand Up @@ -183,14 +179,10 @@ struct AssociativeOperationImpl<Op, 1>

AssociativeOperationImpl(UInt8ColumnPtrs & in) : vec(in[in.size() - 1]->getData()) {}

<<<<<<< HEAD
inline UInt8 apply(size_t i) const { return vec[i]; }
=======
inline bool apply(size_t i) const
{
return vec[i];
}
>>>>>>> 1e0e3c8973 (fix inconsistent result before deleting some rows (#6133))
};


Expand Down

0 comments on commit 9c44602

Please sign in to comment.