Thread: AW: Berkeley DB...

AW: Berkeley DB...

From
Zeugswetter Andreas SB
Date:
> 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