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

Commit af88c9b

Browse files
committed
Fix a missed case in int8-exp-three-digits.out, per buildfarm results.
1 parent 8acfc75 commit af88c9b

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/test/regress/expected/int8-exp-three-digits.out

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -726,13 +726,13 @@ SELECT CAST('42'::int2 AS int8), CAST('-37'::int2 AS int8);
726726
(1 row)
727727

728728
SELECT CAST(q1 AS float4), CAST(q2 AS float8) FROM INT8_TBL;
729-
q1 | q2
730-
-------------+-----------------------
731-
123 | 456
732-
123 | 4.56789012345679e+15
733-
4.56789e+15 | 123
734-
4.56789e+15 | 4.56789012345679e+15
735-
4.56789e+15 | -4.56789012345679e+15
729+
q1 | q2
730+
--------------+------------------------
731+
123 | 456
732+
123 | 4.56789012345679e+015
733+
4.56789e+015 | 123
734+
4.56789e+015 | 4.56789012345679e+015
735+
4.56789e+015 | -4.56789012345679e+015
736736
(5 rows)
737737

738738
SELECT CAST('36854775807.0'::float4 AS int8);

0 commit comments

Comments
 (0)