This is an automated email from the ASF dual-hosted git repository.
morningman pushed a commit to branch branch-1.2-lts
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-1.2-lts by this push:
new dbdd78500a [RegressTest](Exec) Add DCHECK null_aware_left_anti_join in
mark join (#19149)
dbdd78500a is described below
commit dbdd78500a3f524b5d0440cae996bf281616fb64
Author: HappenLee <[email protected]>
AuthorDate: Thu Apr 27 17:52:03 2023 +0800
[RegressTest](Exec) Add DCHECK null_aware_left_anti_join in mark join
(#19149)
---
be/src/vec/exec/join/vjoin_node_base.cpp | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/be/src/vec/exec/join/vjoin_node_base.cpp
b/be/src/vec/exec/join/vjoin_node_base.cpp
index f477b32c74..0aaf0f1129 100644
--- a/be/src/vec/exec/join/vjoin_node_base.cpp
+++ b/be/src/vec/exec/join/vjoin_node_base.cpp
@@ -58,8 +58,9 @@ VJoinNodeBase::VJoinNodeBase(ObjectPool* pool, const
TPlanNode& tnode, const Des
_init_join_op();
if (_is_mark_join) {
DCHECK(_join_op == TJoinOp::LEFT_ANTI_JOIN || _join_op ==
TJoinOp::LEFT_SEMI_JOIN ||
- _join_op == TJoinOp::CROSS_JOIN)
- << "Mark join is only supported for left semi/anti join and
cross join but this is "
+ _join_op == TJoinOp::CROSS_JOIN || _join_op ==
TJoinOp::NULL_AWARE_LEFT_ANTI_JOIN)
+ << "Mark join is only supported for null aware left semi/anti
join and cross join "
+ "but this is "
<< _join_op;
}
if (tnode.__isset.hash_join_node) {
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]