summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTom Lane2001-10-03 18:39:12 +0000
committerTom Lane2001-10-03 18:39:12 +0000
commit5a2531cb030c66a68d444c25e35619c68d06dae8 (patch)
tree6c7f3e2a9147a18b7114fe6b5835dfb548598978
parent45902c5347de00c9291cae576f872a40654af156 (diff)
Update incorrect expected file. Use 'timestamp without time zone'
datatype in test, to try to avoid any dependency on local time zone.
-rw-r--r--contrib/btree_gist/expected/btree_gist.out10
-rw-r--r--contrib/btree_gist/sql/btree_gist.sql6
2 files changed, 8 insertions, 8 deletions
diff --git a/contrib/btree_gist/expected/btree_gist.out b/contrib/btree_gist/expected/btree_gist.out
index fdcbfd598a..2c7cbd620e 100644
--- a/contrib/btree_gist/expected/btree_gist.out
+++ b/contrib/btree_gist/expected/btree_gist.out
@@ -5,7 +5,7 @@
\set ECHO none
create table inttmp (b int4);
\copy inttmp from 'data/test_btree.data'
-create table tstmp ( t datetime );
+create table tstmp ( t timestamp without time zone );
\copy tstmp from 'data/test_btree_ts.data'
-- without idx
select count(*) from inttmp where b <=10;
@@ -14,10 +14,10 @@ select count(*) from inttmp where b <=10;
11
(1 row)
-select count(*) from tstmp where t < '2001-05-29 08:33:09+04';
+select count(*) from tstmp where t < '2001-05-29 08:33:09';
count
-------
- 7
+ 66
(1 row)
-- create idx
@@ -31,9 +31,9 @@ select count(*) from inttmp where b <=10;
11
(1 row)
-select count(*) from tstmp where t < '2001-05-29 08:33:09+04';
+select count(*) from tstmp where t < '2001-05-29 08:33:09';
count
-------
- 7
+ 66
(1 row)
diff --git a/contrib/btree_gist/sql/btree_gist.sql b/contrib/btree_gist/sql/btree_gist.sql
index d408105cc7..31c778b747 100644
--- a/contrib/btree_gist/sql/btree_gist.sql
+++ b/contrib/btree_gist/sql/btree_gist.sql
@@ -10,7 +10,7 @@ create table inttmp (b int4);
\copy inttmp from 'data/test_btree.data'
-create table tstmp ( t datetime );
+create table tstmp ( t timestamp without time zone );
\copy tstmp from 'data/test_btree_ts.data'
@@ -18,7 +18,7 @@ create table tstmp ( t datetime );
select count(*) from inttmp where b <=10;
-select count(*) from tstmp where t < '2001-05-29 08:33:09+04';
+select count(*) from tstmp where t < '2001-05-29 08:33:09';
-- create idx
@@ -32,5 +32,5 @@ set enable_seqscan=off;
select count(*) from inttmp where b <=10;
-select count(*) from tstmp where t < '2001-05-29 08:33:09+04';
+select count(*) from tstmp where t < '2001-05-29 08:33:09';