diff options
author | Tom Lane | 2004-03-15 03:29:22 +0000 |
---|---|---|
committer | Tom Lane | 2004-03-15 03:29:22 +0000 |
commit | 1bc2d544b979164a276f9e6052f0b6d23af59b60 (patch) | |
tree | 5373cea0da5a2587783dd5b805c90427143c7555 /contrib/seg/seg.c | |
parent | 89ab5c4abf48de8156b9284dda869f9ea2b2ad44 (diff) |
Localize our dependencies on the way to create NAN or INFINITY.
Per recent proposal to pghackers.
Diffstat (limited to 'contrib/seg/seg.c')
-rw-r--r-- | contrib/seg/seg.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/seg/seg.c b/contrib/seg/seg.c index c26f9d27cd7..b04441b1ed2 100644 --- a/contrib/seg/seg.c +++ b/contrib/seg/seg.c @@ -755,7 +755,7 @@ seg_cmp(SEG * a, SEG * b) * a->lower == b->lower, so consider type of boundary. * * A '-' lower bound is < any other kind (this could only be relevant if - * -HUGE is used as a regular data value). A '<' lower bound is < any + * -HUGE_VAL is used as a regular data value). A '<' lower bound is < any * other kind except '-'. A '>' lower bound is > any other kind. */ if (a->l_ext != b->l_ext) @@ -813,7 +813,7 @@ seg_cmp(SEG * a, SEG * b) * a->upper == b->upper, so consider type of boundary. * * A '-' upper bound is > any other kind (this could only be relevant if - * HUGE is used as a regular data value). A '<' upper bound is < any + * HUGE_VAL is used as a regular data value). A '<' upper bound is < any * other kind. A '>' upper bound is > any other kind except '-'. */ if (a->u_ext != b->u_ext) |