pgsql: Add missing BUFFERS OFF in select_into regression tests

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Add missing BUFFERS OFF in select_into regression tests
Date: 2024-12-11 09:57:05
Message-ID: [email protected]
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Add missing BUFFERS OFF in select_into regression tests

c2a4078eb adjusted EXPLAIN ANALYZE to include BUFFERS by default, but
a few tests in select_into.sql neglected to add BUFFERS OFF. The
failing tests seem unlikely to ever access buffers during execution, but
they certainly could during planning.

Per buildfarm member kestrel, tayra and calliphoridae.

Discussion: https://postgr.es/m/CANNMO++W7MM8T0KyXN3ZheXXt-uLVM3aEtZd+WNfZ=obxffUiA@mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/9fa1aaa6525af044385dbcefe9d9abb5d57578cd

Modified Files
--------------
src/test/regress/expected/select_into.out | 4 ++--
src/test/regress/sql/select_into.sql | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message David Rowley 2024-12-11 10:17:07 pgsql: Add missing BUFFERS OFF in regression tests, take 2
Previous Message David Rowley 2024-12-11 09:35:50 pgsql: Enable BUFFERS with EXPLAIN ANALYZE by default