pgsql: Use factorial rather than numeric_fac in create_operator.sql.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Use factorial rather than numeric_fac in create_operator.sql.
Date: 2020-09-18 22:04:06
Message-ID: E1kJOUA-0000MB-1W@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Use factorial rather than numeric_fac in create_operator.sql.

These two SQL functions are aliases for the same C function, so this
change has no semantic effect. However, because we dropped the
numeric_fac alias in HEAD (commit 76f412ab3), operator definitions
based on that one don't port forward, causing problems for cross-version
upgrade tests based on the regression database.

Patch all active back branches to dodge the problem.

Discussion: https://postgr.es/m/449144.1600439950@sss.pgh.pa.us

Branch
------
REL_12_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/1af91dc032cfc3f1e47d3bbb976ad6c880668bad

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

Browse pgsql-committers by date

  From Date Subject
Next Message Thomas Munro 2020-09-18 23:54:24 pgsql: Remove large fill factor support from dynahash.c.
Previous Message Tom Lane 2020-09-18 20:46:59 pgsql: Allow most keywords to be used as column labels without requirin