File tree 4 files changed +0
-8
lines changed
4 files changed +0
-8
lines changed Original file line number Diff line number Diff line change 1
1
--
2
2
-- INT2
3
- -- NOTE: int2 operators never check for over/underflow!
4
- -- Some of these answers are consequently numerically incorrect.
5
3
--
6
4
CREATE TABLE INT2_TBL(f1 int2);
7
5
INSERT INTO INT2_TBL(f1) VALUES ('0 ');
Original file line number Diff line number Diff line change 1
1
--
2
2
-- INT4
3
- -- WARNING: int4 operators never check for over/underflow!
4
- -- Some of these answers are consequently numerically incorrect.
5
3
--
6
4
CREATE TABLE INT4_TBL(f1 int4);
7
5
INSERT INTO INT4_TBL(f1) VALUES (' 0 ');
Original file line number Diff line number Diff line change 1
1
--
2
2
-- INT2
3
- -- NOTE: int2 operators never check for over/underflow!
4
- -- Some of these answers are consequently numerically incorrect.
5
3
--
6
4
7
5
CREATE TABLE INT2_TBL (f1 int2);
Original file line number Diff line number Diff line change 1
1
--
2
2
-- INT4
3
- -- WARNING: int4 operators never check for over/underflow!
4
- -- Some of these answers are consequently numerically incorrect.
5
3
--
6
4
7
5
CREATE TABLE INT4_TBL (f1 int4);
You can’t perform that action at this time.
0 commit comments