diff options
| author | Dmitry Vyukov <dvyukov@google.com> | 2026-01-21 09:59:13 +0100 |
|---|---|---|
| committer | Dmitry Vyukov <dvyukov@google.com> | 2026-01-21 13:38:45 +0000 |
| commit | 8fc377978dcf81013752b91c15eb8d573fca560f (patch) | |
| tree | c1cf2241556888c759e0d2ab8641caee53a35e0d /pkg/codesearch/database.go | |
| parent | 6b862b615943965909f5b1b611786b5ba2d2819e (diff) | |
pkg/codesearch: do indexing of struct/union/enum
Update #6469
Diffstat (limited to 'pkg/codesearch/database.go')
| -rw-r--r-- | pkg/codesearch/database.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/codesearch/database.go b/pkg/codesearch/database.go index 800c5759b..edeb761cc 100644 --- a/pkg/codesearch/database.go +++ b/pkg/codesearch/database.go @@ -44,7 +44,7 @@ type LineRange struct { var DatabaseFormatHash = func() string { // Semantic version should be bumped when the schema does not change, // but stored values changes. - const semanticVersion = "1" + const semanticVersion = "2" schema, err := jsonschema.For[Database](nil) if err != nil { panic(err) |
