bs <[EMAIL PROTECTED]> writes:
> I have upgraded to version 7.4.0 (compiling the software and migrating
> the database using dump/restore)
> Now the following plan is produced
> Hash Join (cost=17.08..42.15 rows=7 width=74)
>Hash Cond: ("outer".id = "inner".entry)
>-> Seq Scan on cddb
I have the following tables and indexes
CREATE TABLE cddb
(
id integer PRIMARY KEY,
/* artist name */
name text,
/* disk title */
title text,
/* the type of the artist group, person, orchestra*/
type smallint,
/* the creation date */
created integer
);
CREATE INDEX cddb1