[CodeFormat] Clang-format cpp sources (#4965)

Clang-format all c++ source files.
This commit is contained in:
sduzh
2020-11-28 18:36:49 +08:00
committed by GitHub
parent f944bf4d44
commit 6fedf5881b
1331 changed files with 62548 additions and 68514 deletions

View File

@ -23,14 +23,13 @@
namespace doris {
TupleIsNullPredicate::TupleIsNullPredicate(const TExprNode& node) :
Predicate(node),
_tuple_ids(node.tuple_is_null_pred.tuple_ids.begin(),
node.tuple_is_null_pred.tuple_ids.end()) {
}
TupleIsNullPredicate::TupleIsNullPredicate(const TExprNode& node)
: Predicate(node),
_tuple_ids(node.tuple_is_null_pred.tuple_ids.begin(),
node.tuple_is_null_pred.tuple_ids.end()) {}
Status TupleIsNullPredicate::prepare(
RuntimeState* state, const RowDescriptor& row_desc, ExprContext* ctx) {
Status TupleIsNullPredicate::prepare(RuntimeState* state, const RowDescriptor& row_desc,
ExprContext* ctx) {
RETURN_IF_ERROR(Expr::prepare(state, row_desc, ctx));
DCHECK_EQ(0, _children.size());
@ -65,4 +64,4 @@ std::string TupleIsNullPredicate::debug_string() const {
return out.str();
}
}
} // namespace doris