summaryrefslogtreecommitdiff
path: root/src/test/regress/expected/int8.out
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/regress/expected/int8.out')
-rw-r--r--src/test/regress/expected/int8.out10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/test/regress/expected/int8.out b/src/test/regress/expected/int8.out
index 30424a3f27..269cd2c0b5 100644
--- a/src/test/regress/expected/int8.out
+++ b/src/test/regress/expected/int8.out
@@ -87,16 +87,6 @@ SELECT '' AS five, q2, float8(q2) FROM INT8_TBL;
| -4567890123456789 | -4.56789012345679e+15
(5 rows)
-SELECT '' AS five, q1, int8(float8(q1)) AS "two coercions" FROM INT8_TBL;
- five | q1 | two coercions
-------+------------------+------------------
- | 123 | 123
- | 123 | 123
- | 4567890123456789 | 4567890123456789
- | 4567890123456789 | 4567890123456789
- | 4567890123456789 | 4567890123456789
-(5 rows)
-
SELECT '' AS five, 2 * q1 AS "twice int4" FROM INT8_TBL;
five | twice int4
------+------------------