forked from cockroachdb/cockroach
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
141802: cspann: finish vecstore refactor r=drewkimball a=andy-kimball cspann: finish vecstore refactor Update all the places that reference vecstore types to now reference their new package locations, either cspann or memstore. Common store tests are in a new commontest package. Various shared utility funcs have been moved to utils/testutils packages. Rename various functions to reflect the new packaging. Epic: CRDB-42943 Release note: None Co-authored-by: Andrew Kimball <andyk@cockroachlabs.com>
- Loading branch information
Showing
44 changed files
with
1,868 additions
and
1,752 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
load("@io_bazel_rules_go//go:def.bzl", "go_library") | ||
|
||
go_library( | ||
name = "commontest", | ||
srcs = ["storetests.go"], | ||
importpath = "github.com/cockroachdb/cockroach/pkg/sql/vecindex/cspann/commontest", | ||
visibility = ["//visibility:public"], | ||
deps = [ | ||
"//pkg/sql/vecindex/cspann", | ||
"//pkg/sql/vecindex/cspann/quantize", | ||
"//pkg/sql/vecindex/cspann/testutils", | ||
"//pkg/sql/vecindex/veclib", | ||
"//pkg/util/vector", | ||
"@com_github_stretchr_testify//require", | ||
"@org_gonum_v1_gonum//floats/scalar", | ||
], | ||
) |
Oops, something went wrong.