[Koha-bugs] [Bug 12368] Rebuild Zebra improvement: allow to specify a DB table

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Thu Jun 5 12:47:03 CEST 2014


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12368

--- Comment #1 from Jonathan Druart <jonathan.druart at biblibre.com> ---
Created attachment 28672
  -->
http://bugs.koha-community.org/bugzilla3/attachment.cgi?id=28672&action=edit
Bug 12368: Rebuild Zebra improvement: allow to specify a DB table

Currently the --where parameter only allow to specify a condition on
fields in the biblioitems table.
For some needs it would be great to specify a condition on the field in
the items table.

The use case is the following: you want to reindex biblios with items
modified since a specific timestamp.

Test plan:
1/ Pick an item randomly in your catalogue
2/ Edit it and save
3/ Note that the items.timestamp has been set to today but not the
biblioitems.timestamp
4/ launch rebuild_zebra without the new parameter
  perl misc/migration_tools/rebuild_zebra.pl -b -v --where
  "timestamp >= XXX"
where XXX is the today date (e.g. "2014-06-05 00:00:00").
Note that the biblio has not been indexed.
5/ launch rebuild_zebra using the new parameter:
  perl misc/migration_tools/rebuild_zebra.pl -b -v -t items --where
  "timestamp >= XXX"
Note the biblio has been indexed.

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list