summaryrefslogtreecommitdiff
path: root/contrib/pageinspect/sql
diff options
context:
space:
mode:
authorPeter Eisentraut2016-11-01 16:00:00 +0000
committerPeter Eisentraut2016-11-02 12:45:17 +0000
commit00a86856c1195f3f653672d3b06aa9e4a4aeab82 (patch)
treee8fe66bf97b13f4384a2e8c2515cc063ba1f207e /contrib/pageinspect/sql
parent14ee35799f1640f44b3e154adcd7607f9a48307f (diff)
pageinspect: Make page test more portable
Choose test data that makes the output independent of endianness.
Diffstat (limited to 'contrib/pageinspect/sql')
-rw-r--r--contrib/pageinspect/sql/page.sql4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pageinspect/sql/page.sql b/contrib/pageinspect/sql/page.sql
index a304151f07a..97eef9829a7 100644
--- a/contrib/pageinspect/sql/page.sql
+++ b/contrib/pageinspect/sql/page.sql
@@ -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