jiaqizho commented on code in PR #1272: URL: https://github.com/apache/cloudberry/pull/1272#discussion_r2244855812
########## src/test/regress/expected/aggregates_1.out: ########## @@ -0,0 +1,3403 @@ +-- Review Comment: In aggregates.sql the case ``` explain analyze select count(*) from pg_class, (select count(*) > 0 from (select count(*) from pg_class where relnatts > 8) x) y; ``` planner will use the `seq scan` or `index only scan` to scan the pg_class. And in this case, ORCA will fallback. So i added the `_1` to make sure that CI won't fail in this case... -- 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]
