Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add initial implementation of Proximity Map #8408

Open
wants to merge 10 commits into
base: main
Choose a base branch
from
1 change: 1 addition & 0 deletions go/gen/fb/serial/fileidentifiers.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const StashListFileID = "SLST"
const StashFileID = "STSH"
const StatisticFileID = "STAT"
const DoltgresRootValueFileID = "DGRV"
const VectorIndexNodeFileID = "IVFF"

const MessageTypesKind int = 27

Expand Down
316 changes: 316 additions & 0 deletions go/gen/fb/serial/vectorindexnode.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion go/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,4 @@ require (

replace github.com/dolthub/dolt/go/gen/proto/dolt/services/eventsapi => ./gen/proto/dolt/services/eventsapi

go 1.22.2
go 1.23.0
4 changes: 2 additions & 2 deletions go/go.work
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
go 1.22.5
go 1.23.0

toolchain go1.22.7
toolchain go1.23.2

use (
.
Expand Down
1 change: 1 addition & 0 deletions go/serial/fileidentifiers.go
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ const StashListFileID = "SLST"
const StashFileID = "STSH"
const StatisticFileID = "STAT"
const DoltgresRootValueFileID = "DGRV"
const VectorIndexNodeFileID = "IVFF"

const MessageTypesKind int = 27

Expand Down
3 changes: 2 additions & 1 deletion go/serial/generate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ fi
stat.fbs \
table.fbs \
tag.fbs \
workingset.fbs
workingset.fbs \
vectorindexnode.fbs

# prefix files with copyright header
for FILE in $GEN_DIR/*.go;
Expand Down
Loading
Loading