Remove TrackingIds table from SQL database

This table is not necessary with the secondary index enabled.

Change-Id: I87820c638cf69e688f9aa95edf190a8c56138a0b
This commit is contained in:
Shawn Pearce
2013-11-29 11:57:53 -08:00
parent d4ae3a16d5
commit 9f4de526dd
21 changed files with 71 additions and 432 deletions

View File

@@ -222,8 +222,8 @@ public class ChangeField {
public Iterable<String> get(ChangeData input, FillArgs args)
throws OrmException {
try {
return args.trackingFooters.extract(
input.commitFooters(args.repoManager, args.db));
return Sets.newHashSet(args.trackingFooters.extract(
input.commitFooters(args.repoManager, args.db)).values());
} catch (IOException e) {
throw new OrmException(e);
}