pgsql: Use factorial rather than numeric_fac in create_operator.sql. - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Use factorial rather than numeric_fac in create_operator.sql.
Date
Msg-id E1kJOUA-0000MI-2q@gemulon.postgresql.org
Whole thread Raw
List 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
------
REL9_6_STABLE

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

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(-)


pgsql-committers by date:

Previous
From: Tom Lane
Date:
Subject: pgsql: Allow most keywords to be used as column labels without requirin
Next
From: Thomas Munro
Date:
Subject: pgsql: Remove large fill factor support from dynahash.c.