aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/codesearch/database.go
diff options
context:
space:
mode:
authorDmitry Vyukov <dvyukov@google.com>2026-01-21 09:59:13 +0100
committerDmitry Vyukov <dvyukov@google.com>2026-01-21 13:38:45 +0000
commit8fc377978dcf81013752b91c15eb8d573fca560f (patch)
treec1cf2241556888c759e0d2ab8641caee53a35e0d /pkg/codesearch/database.go
parent6b862b615943965909f5b1b611786b5ba2d2819e (diff)
pkg/codesearch: do indexing of struct/union/enum
Update #6469
Diffstat (limited to 'pkg/codesearch/database.go')
-rw-r--r--pkg/codesearch/database.go2
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)