pgsql: Move provariadic sanity check to a more appropriate place

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Move provariadic sanity check to a more appropriate place
Date: 2022-12-15 06:56:17
Message-ID: E1p5iAD-003fUU-1S@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Move provariadic sanity check to a more appropriate place

35f059e9bdfb3b14ac9d22a9e159d36ec0ccf804 put the provariadic sanity
check into type_sanity.sql, even though it's not about types, and
moreover in the middle of some connected test group, which makes it
all very confusing. Move it to opr_sanity.sql, where it is in better
company.

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/2613dec4ed67c4a963d987cbd29284e0634b65c9

Modified Files
--------------
src/test/regress/expected/opr_sanity.out | 31 +++++++++++++++++++++++++++++++
src/test/regress/expected/type_sanity.out | 31 -------------------------------
src/test/regress/sql/opr_sanity.sql | 26 ++++++++++++++++++++++++++
src/test/regress/sql/type_sanity.sql | 26 --------------------------
4 files changed, 57 insertions(+), 57 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Peter Eisentraut 2022-12-15 09:21:48 pgsql: Static assertions cleanup
Previous Message Tom Lane 2022-12-15 00:42:11 pgsql: Convert a few more datatype input functions to report errors sof