1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Update incorrect expected file. Use 'timestamp without time zone'

datatype in test, to try to avoid any dependency on local time zone.
This commit is contained in:
Tom Lane
2001-10-03 18:39:12 +00:00
parent 1226816e4e
commit 2d6b1f29fb
2 changed files with 8 additions and 8 deletions

View File

@ -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';