Reverting the unique index on bre.id; it's a primary key and already has one by defin...
authordbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 7 Apr 2009 14:07:07 +0000 (14:07 +0000)
committerdbs <dbs@dcc99617-32d9-48b4-a31d-7c20da2025e4>
Tue, 7 Apr 2009 14:07:07 +0000 (14:07 +0000)
Creating the index probably improved the speed of ingest as a side effect;
a reindex would probably have the same effect without additional index overhead.
More investigation required.

git-svn-id: svn://svn.open-ils.org/ILS/trunk@12812 dcc99617-32d9-48b4-a31d-7c20da2025e4

Open-ILS/src/sql/Pg/010.schema.biblio.sql

index 3a9fdb5..b171801 100644 (file)
@@ -41,7 +41,6 @@ CREATE TABLE biblio.record_entry (
        marc            TEXT            NOT NULL,
        last_xact_id    TEXT            NOT NULL
 );
-CREATE UNIQUE INDEX biblio_record_entry_unique ON biblio.record_entry ( id );
 CREATE INDEX biblio_record_entry_creator_idx ON biblio.record_entry ( creator );
 CREATE INDEX biblio_record_entry_create_date_idx ON biblio.record_entry ( create_date );
 CREATE INDEX biblio_record_entry_editor_idx ON biblio.record_entry ( editor );