lide-reed commented on issue #18155:
URL: https://github.com/apache/doris/issues/18155#issuecomment-1487896398

   CREATE TABLE t (
   name varchar(128) 
   ) ENGINE=OLAP
   UNIQUE KEY(name)
   DISTRIBUTED BY HASH(name) BUCKETS 1;
   
   insert into t values('abc');
   
   SELECT cd
   FROM
   (SELECT cast(now() as string) cd FROM t) t1
   JOIN
   (select cast(now() as string) td from t GROUP BY now()) t2
   ON t1.cd = t2.td;
   
   ERROR 1105 (HY000): errCode = 2, detailMessage = Unexpected exception: null


-- 
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.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to