mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
pageinspect: Make btree test more portable
Choose test data that makes the output independent of endianness and alignment.
This commit is contained in:
@ -1,5 +1,5 @@
|
||||
CREATE TABLE test1 (a int, b text);
|
||||
INSERT INTO test1 VALUES (1, 'one');
|
||||
CREATE TABLE test1 (a int8, b text);
|
||||
INSERT INTO test1 VALUES (72057594037927937, 'text');
|
||||
CREATE INDEX test1_a_idx ON test1 USING btree (a);
|
||||
|
||||
\x
|
||||
|
Reference in New Issue
Block a user