diff options
author | Daniel Gustafsson <dgustafsson@postgresql.org> | 2022-09-12 12:59:06 +0200 |
---|---|---|
committer | Daniel Gustafsson <dgustafsson@postgresql.org> | 2022-09-12 12:59:06 +0200 |
commit | 56d238846fe6e1772c8652cd4945da6c0a42534a (patch) | |
tree | 5fdd947d65772f56cda30da74ec9fdc09558a709 /contrib/postgres_fdw/postgres_fdw.c | |
parent | c8a1bc01c6b05d394d5b6d0e0f594ccf9b46bbcb (diff) | |
download | postgresql-56d238846fe6e1772c8652cd4945da6c0a42534a.tar.gz postgresql-56d238846fe6e1772c8652cd4945da6c0a42534a.zip |
Fix NaN comparison in circle_same test
Commit c4c340088 changed geometric operators to use float4 and float8
functions, and handle NaN's in a better way. The circle sameness test
had a typo in the code which resulted in all comparisons with the left
circle having a NaN radius considered same.
postgres=# select '<(0,0),NaN>'::circle ~= '<(0,0),1>'::circle;
?column?
----------
t
(1 row)
This fixes the sameness test to consider the radius of both the left
and right circle.
Backpatch to v12 where this was introduced.
Author: Ranier Vilela <ranier.vf@gmail.com>
Discussion: https://postgr.es/m/CAEudQAo8dK=yctg2ZzjJuzV4zgOPBxRU5+Kb+yatFiddtQk6Rw@mail.gmail.com
Backpatch-through: v12
Diffstat (limited to 'contrib/postgres_fdw/postgres_fdw.c')
0 files changed, 0 insertions, 0 deletions