blob: a8d08d85ca3f45da6d01197494cb99dffd49bd15 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
CREATE TABLE int8_tbl(q1 int8, q2 int8);
INSERT INTO int8_tbl VALUES(' 123 ',' 456');
INSERT INTO int8_tbl VALUES('123 ','4567890123456789');
INSERT INTO int8_tbl VALUES('4567890123456789','123');
INSERT INTO int8_tbl VALUES(+4567890123456789,'4567890123456789');
INSERT INTO int8_tbl VALUES('+4567890123456789','-4567890123456789');
|