ccoffline commented on issue #4856:
URL:
https://github.com/apache/incubator-doris/issues/4856#issuecomment-725984236
@morningman Could you please be more specific?
I have 1 FE and 5 BE, having sql below
```sql
CREATE DATABASE IF NOT EXISTS `test`; USE `test`;
DROP TABLE IF EXISTS `test_t`;
CREATE TABLE `test_t` (
`name` VARCHAR(1000) NULL COMMENT "string"
) ENGINE=OLAP
DUPLICATE KEY(`name`)
DISTRIBUTED BY HASH(`name`) BUCKETS 1
PROPERTIES (
"replication_num" = "3",
"in_memory" = "false",
"storage_format" = "DEFAULT"
);
INSERT INTO test_t (`name`)
VALUES ('aaaaa'), ('ccccc')
;
select * from test_t a join test_t b union all select * from test_t c join
test_t d;
```
I tried a lot of time but this sql never trigger the error.
----------------------------------------------------------------
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]