diff options
author | 2022-05-18 16:58:26 +0200 | |
---|---|---|
committer | 2022-05-18 15:58:26 +0100 | |
commit | f4b0d76cd4ae936a1d327c8a06adf0f50a80b8ad (patch) | |
tree | ae39ceff207b2f67dfc4a6971816f29d95507806 /vendor/modernc.org/sqlite/sqlite.go | |
parent | [chore] Timeline test updates (#578) (diff) | |
download | gotosocial-f4b0d76cd4ae936a1d327c8a06adf0f50a80b8ad.tar.xz |
[performance] Add further indexes to mitigate laggy queries (#586)
* start adding more indexes as a migration
* update sqlite version
Diffstat (limited to 'vendor/modernc.org/sqlite/sqlite.go')
-rw-r--r-- | vendor/modernc.org/sqlite/sqlite.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vendor/modernc.org/sqlite/sqlite.go b/vendor/modernc.org/sqlite/sqlite.go index 7fce68eeb..4c1433d95 100644 --- a/vendor/modernc.org/sqlite/sqlite.go +++ b/vendor/modernc.org/sqlite/sqlite.go @@ -2,7 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. -//go:generate go run generator.go +//go:generate go run generator.go -full-path-comments package sqlite // import "modernc.org/sqlite" |