|
Lines 144-150
if (not $biblios and not $authorities) {
Link Here
|
| 144 |
die $msg; |
144 |
die $msg; |
| 145 |
} |
145 |
} |
| 146 |
|
146 |
|
| 147 |
our @tables_allowed_for_select = ( 'biblioitems', 'items', 'biblio' ); |
147 |
our @tables_allowed_for_select = ( 'biblioitems', 'items', 'biblio', 'biblio_metadata' ); |
| 148 |
unless ( grep { /^$table$/ } @tables_allowed_for_select ) { |
148 |
unless ( grep { /^$table$/ } @tables_allowed_for_select ) { |
| 149 |
die "Cannot specify -t|--table with value '$table'. Only " |
149 |
die "Cannot specify -t|--table with value '$table'. Only " |
| 150 |
. ( join ', ', @tables_allowed_for_select ) |
150 |
. ( join ', ', @tables_allowed_for_select ) |
|
Lines 917-923
Parameters:
Link Here
|
| 917 |
to wait for the lock to free and then continue |
917 |
to wait for the lock to free and then continue |
| 918 |
processing the rebuild request, |
918 |
processing the rebuild request, |
| 919 |
|
919 |
|
| 920 |
--table specify a table (can be items, biblioitems or biblio) to retrieve biblionumber to index. |
920 |
--table specify a table (can be items, biblioitems, biblio, biblio_metadata) to retrieve biblionumber to index. |
| 921 |
biblioitems is the default value. |
921 |
biblioitems is the default value. |
| 922 |
|
922 |
|
| 923 |
--help or -h show this message. |
923 |
--help or -h show this message. |
| 924 |
- |
|
|