projects
/
working
/
Evergreen.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Patch from Galen Charlton: This resolves a performance issue found by EG Indiana...
[working/Evergreen.git]
/
Open-ILS
/
src
/
sql
/
Pg
/
upgrade
/
0258.schema.scecm_owning_copy_idx.sql
1
BEGIN;
2
3
INSERT INTO config.upgrade_log (version) VALUES ('0258'); -- Galen Charlton
4
5
-- resolves performance issue noted by EG Indiana
6
7
CREATE INDEX scecm_owning_copy_idx ON asset.stat_cat_entry_copy_map(owning_copy);
8
9
COMMIT;