Update int8-exp-three-digits.out to match new contents of int8.out.

This commit is contained in:
Robert Haas 2010-11-20 07:06:52 -05:00
parent 815810ed31
commit e8bf683fbe
1 changed files with 13 additions and 0 deletions

View File

@ -802,3 +802,16 @@ SELECT * FROM generate_series('+4567890123456789'::int8, '+4567890123456799'::in
4567890123456799
(6 rows)
-- corner case
SELECT (-1::int8<<63)::text;
text
----------------------
-9223372036854775808
(1 row)
SELECT ((-1::int8<<63)+1)::text;
text
----------------------
-9223372036854775807
(1 row)