Skip to content

Commit

Permalink
added local source tree reference and changed buffer pool size of mon…
Browse files Browse the repository at this point in the history
…ey move testcase.
  • Loading branch information
ryogrid committed Sep 2, 2024
1 parent 73bdd2b commit afed8cb
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -110,8 +110,8 @@ func testKeyDuplicateInsertDeleteWithBTreeIndex[T float32 | int32 | string](t *t
}

func testBTreeParallelTxnStrideRoot[T int32 | float32 | string](t *testing.T, keyType types.TypeID) {
//bpoolSize := int32(500)
bpoolSize := int32(1000)
bpoolSize := int32(500)
//bpoolSize := int32(1000)

switch keyType {
case types.Integer:
Expand Down
6 changes: 5 additions & 1 deletion lib/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ go 1.21

toolchain go1.21.2

replace github.com/ryogrid/bltree-go-for-embedding => ../../bltree-go-for-embedding

require (
github.com/deckarep/golang-set/v2 v2.3.0
github.com/devlights/gomy v0.4.0
Expand All @@ -12,11 +14,13 @@ require (
github.com/notEpsilon/go-pair v0.0.0-20221220200415-e91ef28c6c0b
github.com/pingcap/parser v0.0.0-20200623164729-3a18f1e5dceb
github.com/pingcap/tidb v1.1.0-beta.0.20200630082100-328b6d0a955c
github.com/ryogrid/bltree-go-for-embedding v1.0.7
//github.com/ryogrid/bltree-go-for-embedding v1.0.7
github.com/spaolacci/murmur3 v1.1.0
golang.org/x/exp v0.0.0-20230905200255-921286631fa9
)

require github.com/ryogrid/bltree-go-for-embedding v0.0.0-00010101000000-000000000000

require (
github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d // indirect
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect
Expand Down
2 changes: 0 additions & 2 deletions lib/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -448,8 +448,6 @@ github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFR
github.com/rs/cors v1.7.0/go.mod h1:gFx+x8UowdsKA9AchylcLynDq+nNFfI8FkUZdN/jGCU=
github.com/russross/blackfriday v1.5.2/go.mod h1:JO/DiYxRf+HjHt06OyowR9PTA263kcR/rfWxYHBV53g=
github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
github.com/ryogrid/bltree-go-for-embedding v1.0.7 h1:LBv1njodawp+mIEexMLR65zDiEGrzg1MSNPUpOP5Eos=
github.com/ryogrid/bltree-go-for-embedding v1.0.7/go.mod h1:IjwQznZH7W6JZiFGk4vwDbNgLbgPODUzjlRgKQgCIFE=
github.com/sasha-s/go-deadlock v0.2.0/go.mod h1:StQn567HiB1fF2yJ44N9au7wOhrPS3iZqiDbRupzT10=
github.com/satori/go.uuid v1.2.0/go.mod h1:dA0hQrYB0VpLJoorglMZABFdXlWrHn1NEOzdhQKdks0=
github.com/sergi/go-diff v1.0.1-0.20180205163309-da645544ed44/go.mod h1:0CfEIISq7TuYL3j771MWULgwwjU+GofnZX9QAmXWZgo=
Expand Down
4 changes: 3 additions & 1 deletion server/go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ go 1.21

toolchain go1.21.2

replace github.com/ryogrid/bltree-go-for-embedding => ../../bltree-go-for-embedding

require (
github.com/ant0ine/go-json-rest v3.3.2+incompatible
github.com/ryogrid/SamehadaDB/lib v0.0.0-20240725021953-263ea0c5c011
Expand All @@ -30,7 +32,7 @@ require (
github.com/pingcap/tidb v1.1.0-beta.0.20200630082100-328b6d0a955c // indirect
github.com/pingcap/tipb v0.0.0-20200522051215-f31a15d98fce // indirect
github.com/remyoudompheng/bigfft v0.0.0-20190728182440-6a916e37a237 // indirect
github.com/ryogrid/bltree-go-for-embedding v1.0.7 // indirect
//github.com/ryogrid/bltree-go-for-embedding v1.0.7 // indirect
github.com/shirou/gopsutil v2.19.10+incompatible // indirect
github.com/sirupsen/logrus v1.6.0 // indirect
github.com/spaolacci/murmur3 v1.1.0 // indirect
Expand Down

0 comments on commit afed8cb

Please sign in to comment.