my-ship-it commented on code in PR #61: URL: https://github.com/apache/cloudberry-pxf/pull/61#discussion_r2876242781
########## automation/sqlrepo/features/parallel/explain/expected/query01.ans: ########## @@ -0,0 +1,32 @@ +-- @description query01 for PXF parallel scan EXPLAIN - Gather node present when parallel enabled +-- start_matchsubs +-- +-- m/Workers Planned: \d+/ +-- s/Workers Planned: \d+/Workers Planned: N/ +-- +-- m/cost=\d+\.\d+\.\.\d+\.\d+/ +-- s/cost=\d+\.\d+\.\.\d+\.\d+/cost=XXX/ +-- +-- m/rows=\d+/ +-- s/rows=\d+/rows=NNN/ +-- +-- m/width=\d+/ +-- s/width=\d+/width=NN/ +-- +-- end_matchsubs +SET optimizer = off; +SET +SET enable_parallel = true; +SET +SET max_parallel_workers_per_gather = 4; +SET +EXPLAIN SELECT count(*) FROM pxf_parallel_enabled; + QUERY PLAN +---------------------------------------------------------------------------------------------- + Gather Motion 1:1 (slice1; segments: 1) (cost=XXX rows=NNN width=NN) Review Comment: The plan seems not correct? -- 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]
