File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
- CREATE TABLE test1 (a int , b text);
2
- INSERT INTO test1 VALUES (1 , 'one ');
1
+ CREATE TABLE test1 (a int8 , b text);
2
+ INSERT INTO test1 VALUES (72057594037927937 , 'text ');
3
3
CREATE INDEX test1_a_idx ON test1 USING btree (a);
4
4
\x
5
5
SELECT * FROM bt_metap('test1_a_idx');
@@ -38,7 +38,7 @@ ctid | (0,1)
38
38
itemlen | 16
39
39
nulls | f
40
40
vars | f
41
- data | 01 00 00 00 00 00 00 00
41
+ data | 01 00 00 00 00 00 00 01
42
42
43
43
SELECT * FROM bt_page_items('test1_a_idx', 2);
44
44
ERROR: block number out of range
Original file line number Diff line number Diff line change 1
- CREATE TABLE test1 (a int , b text );
2
- INSERT INTO test1 VALUES (1 , ' one ' );
1
+ CREATE TABLE test1 (a int8 , b text );
2
+ INSERT INTO test1 VALUES (72057594037927937 , ' text ' );
3
3
CREATE INDEX test1_a_idx ON test1 USING btree (a);
4
4
5
5
\x
You can’t perform that action at this time.
0 commit comments