diff --git a/src/test/regress/expected/explain.out b/src/test/regress/expected/explain.out index eb187516b33..97eb4b76526 100644 --- a/src/test/regress/expected/explain.out +++ b/src/test/regress/expected/explain.out @@ -493,6 +493,9 @@ select jsonb_pretty( -- Also remove its sort-type fields, as those aren't 100% stable #- '{0,Plan,Plans,0,Sort Method}' #- '{0,Plan,Plans,0,Sort Space Type}' + -- Actual Rows can be 0 or 0.0 depending on whether loops>1 + #- '{0,Plan,Plans,0,Actual Rows}' + #- '{0,Plan,Plans,0,Plans,0,Actual Rows}' ); jsonb_pretty ------------------------------------------------------------- @@ -528,7 +531,6 @@ select jsonb_pretty( "Plan Rows": 0, + "Plan Width": 0, + "Total Cost": 0.0, + - "Actual Rows": 0.0, + "Actual Loops": 0, + "Startup Cost": 0.0, + "Async Capable": false, + @@ -575,7 +577,6 @@ select jsonb_pretty( "Plan Rows": 0, + "Plan Width": 0, + "Total Cost": 0.0, + - "Actual Rows": 0.0, + "Actual Loops": 0, + "Startup Cost": 0.0, + "Async Capable": false, + diff --git a/src/test/regress/sql/explain.sql b/src/test/regress/sql/explain.sql index 0bafa870496..c719cca6583 100644 --- a/src/test/regress/sql/explain.sql +++ b/src/test/regress/sql/explain.sql @@ -147,6 +147,9 @@ select jsonb_pretty( -- Also remove its sort-type fields, as those aren't 100% stable #- '{0,Plan,Plans,0,Sort Method}' #- '{0,Plan,Plans,0,Sort Space Type}' + -- Actual Rows can be 0 or 0.0 depending on whether loops>1 + #- '{0,Plan,Plans,0,Actual Rows}' + #- '{0,Plan,Plans,0,Plans,0,Actual Rows}' ); rollback;