Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 3c8f873

Browse files
committed
Update alternative output regression files for new float8 test of power().
1 parent 1526a70 commit 3c8f873

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

src/test/regress/expected/float8-exp-three-digits-win32.out

+6
Original file line numberDiff line numberDiff line change
@@ -349,6 +349,12 @@ SELECT '' AS bad, f.f1 * '1e200' from FLOAT8_TBL f;
349349
ERROR: value out of range: overflow
350350
SELECT '' AS bad, f.f1 ^ '1e200' from FLOAT8_TBL f;
351351
ERROR: value out of range: overflow
352+
SELECT 0 ^ 0 + 0 ^ 1 + 0 ^ 0.0 + 0 ^ 0.5;
353+
?column?
354+
----------
355+
2
356+
(1 row)
357+
352358
SELECT '' AS bad, ln(f.f1) from FLOAT8_TBL f where f.f1 = '0.0' ;
353359
ERROR: cannot take logarithm of zero
354360
SELECT '' AS bad, ln(f.f1) from FLOAT8_TBL f where f.f1 < '0.0' ;

src/test/regress/expected/float8-small-is-zero.out

+6
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,12 @@ SELECT '' AS bad, f.f1 * '1e200' from FLOAT8_TBL f;
357357
ERROR: value out of range: overflow
358358
SELECT '' AS bad, f.f1 ^ '1e200' from FLOAT8_TBL f;
359359
ERROR: value out of range: overflow
360+
SELECT 0 ^ 0 + 0 ^ 1 + 0 ^ 0.0 + 0 ^ 0.5;
361+
?column?
362+
----------
363+
2
364+
(1 row)
365+
360366
SELECT '' AS bad, ln(f.f1) from FLOAT8_TBL f where f.f1 = '0.0' ;
361367
ERROR: cannot take logarithm of zero
362368
SELECT '' AS bad, ln(f.f1) from FLOAT8_TBL f where f.f1 < '0.0' ;

src/test/regress/expected/float8-small-is-zero_1.out

+6
Original file line numberDiff line numberDiff line change
@@ -357,6 +357,12 @@ SELECT '' AS bad, f.f1 * '1e200' from FLOAT8_TBL f;
357357
ERROR: value out of range: overflow
358358
SELECT '' AS bad, f.f1 ^ '1e200' from FLOAT8_TBL f;
359359
ERROR: value out of range: overflow
360+
SELECT 0 ^ 0 + 0 ^ 1 + 0 ^ 0.0 + 0 ^ 0.5;
361+
?column?
362+
----------
363+
2
364+
(1 row)
365+
360366
SELECT '' AS bad, ln(f.f1) from FLOAT8_TBL f where f.f1 = '0.0' ;
361367
ERROR: cannot take logarithm of zero
362368
SELECT '' AS bad, ln(f.f1) from FLOAT8_TBL f where f.f1 < '0.0' ;

0 commit comments

Comments
 (0)