87
86
for key, (type, type_data) in self.dict.iteritems():
93
91
class SqliteGitShaMap(GitShaMap):
96
94
self.transport = transport
99
100
self.db.executescript("""
100
101
create table if not exists commits(sha1 text, revid text, tree_sha text);
101
102
create index if not exists commit_sha1 on commits(sha1);