kangkaisen commented on issue #3381:
URL: https://github.com/apache/incubator-doris/pull/3381#issuecomment-618125477
The bug cause by
```
_hash_tbl.reset(new HashTable(_child_expr_lists[0],
_child_expr_lists[0], _build_tuple_size,
true, _find_nulls, id(), mem_tracker(),
1024));
```
should be
```
_hash_tbl.reset(new HashTable(_child_expr_lists[0],
_child_expr_lists[1], _build_tuple_size,
true, _find_nulls, id(), mem_tracker(),
1024));
```
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]