mirror of
https://github.com/postgres/postgres.git
synced 2025-07-27 12:41:57 +03:00
pageinspect: Make page test more portable
Choose test data that makes the output independent of endianness.
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
CREATE EXTENSION pageinspect;
|
||||
|
||||
CREATE TABLE test1 (a int, b text);
|
||||
INSERT INTO test1 VALUES (1, 'one');
|
||||
CREATE TABLE test1 (a int, b int);
|
||||
INSERT INTO test1 VALUES (16777217, 131584);
|
||||
|
||||
VACUUM test1; -- set up FSM
|
||||
|
||||
|
Reference in New Issue
Block a user