AW: Berkeley DB... - Mailing list pgsql-hackers

From Zeugswetter Andreas SB
Subject AW: Berkeley DB...
Date
Msg-id 219F68D65015D011A8E000006F8590C604AF7DA4@sdexcsrv1.f000.d0188.sd.spardat.at
Whole thread Raw
List pgsql-hackers
> The select:
> 0.75  MySQL-MyISAM
> 0.77  MySQL-BDB
> 2.43  PostgreSQL
> 
> I'll do a "real" test once the BDB support in MySQL is stable 
> enough to run the MySQL benchmark suite.

It is the sequential scan timings that we would be very interested in.

create table foo (a int not null,b char(100));
create index foo_a on foo(a);
for(i=0; i<10000; i++) {   insert into foo(a,b) values( `((i*3467)%10000)` , 'fusli');
}

time this:
select count(*) from foo where b<>'not there';

Andreas


pgsql-hackers by date:

Previous
From: Ed Loehr
Date:
Subject: parser oddity (t.count)
Next
From: Ed Loehr
Date:
Subject: vacuum analyze feedback