Skip to content

Commit 8363a4a

Browse files
authored
Merge pull request #8686 from dolthub/nicktobey/proximity-map2
Allow creating and updating vector indexes.
2 parents e37ea46 + 1ba5e0a commit 8363a4a

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+4131
-102
lines changed

go/Godeps/LICENSES

+128
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

go/cmd/dolt/commands/indexcmds/cat.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ func (cmd CatCmd) prettyPrintResults(ctx context.Context, doltSch schema.Schema,
151151

152152
sqlCtx := sql.NewEmptyContext()
153153

154-
rowItr, err := table.NewTableIterator(ctx, doltSch, idx, 0)
154+
rowItr, err := table.NewTableIterator(ctx, doltSch, idx)
155155
if err != nil {
156156
return err
157157
}

go/gen/fb/serial/fileidentifiers.go

+1
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,7 @@ const StashFileID = "STSH"
4242
const StatisticFileID = "STAT"
4343
const DoltgresRootValueFileID = "DGRV"
4444
const TupleFileID = "TUPL"
45+
const VectorIndexNodeFileID = "IVFF"
4546

4647
const MessageTypesKind int = 27
4748

go/gen/fb/serial/schema.go

+117-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)