[performance] Add further indexes to mitigate laggy queries (#586)

* start adding more indexes as a migration

* update sqlite version
This commit is contained in:
tobi 2022-05-18 16:58:26 +02:00 committed by GitHub
commit f4b0d76cd4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
236 changed files with 395899 additions and 195070 deletions

View file

@ -326,7 +326,7 @@ func (p *project) containingStructField(part *cc.Initializer, off uintptr, t cc.
}
}
panic(todo("%v: internal error", pos(part)))
panic(todo("%v: internal error", p.pos(part)))
}
func (p *project) initializerUnion(tag string, off uintptr, f *function, s []*cc.Initializer, t cc.Type, sc cc.StorageClass, tld *tld, lm, tm map[*cc.Initializer][]cc.StringID) {
@ -376,7 +376,7 @@ func (p *project) initializerUnion(tag string, off uintptr, f *function, s []*cc
}
continue
default:
panic(todo("%v: %v <- %T", pos(part), et, x))
panic(todo("%v: %v <- %T", p.pos(part), et, x))
}
case p.isWCharType(et):
panic(todo(""))