Skip to content

Commit

Permalink
Removed default value
Browse files Browse the repository at this point in the history
  • Loading branch information
GrigoriyPA committed Nov 10, 2024
1 parent de88830 commit 3b9167e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ydb/library/yql/providers/common/pushdown/predicate_node.h
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ struct TPredicateNode {
~TPredicateNode();

bool IsValid() const;
void SetPredicates(const std::vector<TPredicateNode>& predicates, TExprContext& ctx, TPositionHandle pos, EBoolOp op = EBoolOp::And);
void SetPredicates(const std::vector<TPredicateNode>& predicates, TExprContext& ctx, TPositionHandle pos, EBoolOp op);

NNodes::TMaybeNode<NNodes::TExprBase> ExprNode;
std::vector<TPredicateNode> Children;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class TS3LogicalOptProposalTransformer : public TOptimizeTransformerBase {
}
}
NPushdown::TPredicateNode predicateToPush;
predicateToPush.SetPredicates(pushable, ctx, pos);
predicateToPush.SetPredicates(pushable, ctx, pos, predicateTree.Op);
return predicateToPush;
}

Expand Down

0 comments on commit 3b9167e

Please sign in to comment.