EmmyMiao87 commented on issue #8191: URL: https://github.com/apache/incubator-doris/issues/8191#issuecomment-1050662479
At present, it is found that if the cte of the last layer of query is directly taken out, the problem of this null pointer can be solved. For example, ``` with cte as (xxx) select * from cte; ``` The declaration of this CTE is completely unnecessary and can be changed directly to ``` select * from xxx; ``` You can avoid this problem. -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org