Lines 29-35
INSERT INTO matchpoint_component_norms (matchpoint_component_id, sequence, norm_
Link Here
|
29 |
|
29 |
|
30 |
INSERT INTO marc_matchers (code, description, record_type, threshold) |
30 |
INSERT INTO marc_matchers (code, description, record_type, threshold) |
31 |
VALUES ('ISSN', '022$a', 'biblio', 1000); |
31 |
VALUES ('ISSN', '022$a', 'biblio', 1000); |
32 |
INSERT INTO matchpoints (matcher_id, search_index, score) SELECT MAX(matcher_id), 'isbn', 1000 FROM marc_matchers; |
32 |
INSERT INTO matchpoints (matcher_id, search_index, score) SELECT MAX(matcher_id), 'issn', 1000 FROM marc_matchers; |
33 |
INSERT INTO matcher_matchpoints SELECT MAX(matcher_id), MAX(matchpoint_id) FROM matchpoints; |
33 |
INSERT INTO matcher_matchpoints SELECT MAX(matcher_id), MAX(matchpoint_id) FROM matchpoints; |
34 |
INSERT INTO matchpoint_components (matchpoint_id, sequence, tag, subfields) |
34 |
INSERT INTO matchpoint_components (matchpoint_id, sequence, tag, subfields) |
35 |
SELECT MAX(matchpoint_id), 1, '022', 'a' FROM matchpoints; |
35 |
SELECT MAX(matchpoint_id), 1, '022', 'a' FROM matchpoints; |
36 |
- |
|
|