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

Commit e8bf683

Browse files
committed
Update int8-exp-three-digits.out to match new contents of int8.out.
1 parent 815810e commit e8bf683

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

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

+13
Original file line numberDiff line numberDiff line change
@@ -802,3 +802,16 @@ SELECT * FROM generate_series('+4567890123456789'::int8, '+4567890123456799'::in
802802
4567890123456799
803803
(6 rows)
804804

805+
-- corner case
806+
SELECT (-1::int8<<63)::text;
807+
text
808+
----------------------
809+
-9223372036854775808
810+
(1 row)
811+
812+
SELECT ((-1::int8<<63)+1)::text;
813+
text
814+
----------------------
815+
-9223372036854775807
816+
(1 row)
817+

0 commit comments

Comments
 (0)