diff options
author | techknowlogick <techknowlogick@gitea.io> | 2021-02-28 18:08:33 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-28 18:08:33 -0500 |
commit | 47f6a4ec3f058f69b65fb6501d6ac98994b8f8da (patch) | |
tree | 4d1421a4c836de9de4014117419c151035c17eec /vendor/github.com/blevesearch/zapx | |
parent | 030646eea41e17e58e11e73b19339630b6d6148e (diff) | |
download | gitea-47f6a4ec3f058f69b65fb6501d6ac98994b8f8da.tar.gz gitea-47f6a4ec3f058f69b65fb6501d6ac98994b8f8da.zip |
go1.16 (#14783)
Diffstat (limited to 'vendor/github.com/blevesearch/zapx')
55 files changed, 100 insertions, 100 deletions
diff --git a/vendor/github.com/blevesearch/zapx/v11/build.go b/vendor/github.com/blevesearch/zapx/v11/build.go index bac1edb549..a4b5d2117b 100644 --- a/vendor/github.com/blevesearch/zapx/v11/build.go +++ b/vendor/github.com/blevesearch/zapx/v11/build.go @@ -19,7 +19,7 @@ import ( "math" "os" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) const Version uint32 = 11 diff --git a/vendor/github.com/blevesearch/zapx/v11/count.go b/vendor/github.com/blevesearch/zapx/v11/count.go index 9508e12704..b6135359fb 100644 --- a/vendor/github.com/blevesearch/zapx/v11/count.go +++ b/vendor/github.com/blevesearch/zapx/v11/count.go @@ -18,7 +18,7 @@ import ( "hash/crc32" "io" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) // CountHashWriter is a wrapper around a Writer which counts the number of diff --git a/vendor/github.com/blevesearch/zapx/v11/dict.go b/vendor/github.com/blevesearch/zapx/v11/dict.go index cf88651a7e..e30bf2420d 100644 --- a/vendor/github.com/blevesearch/zapx/v11/dict.go +++ b/vendor/github.com/blevesearch/zapx/v11/dict.go @@ -19,8 +19,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" ) // Dictionary is the zap representation of the term dictionary @@ -106,7 +106,7 @@ func (d *Dictionary) Contains(key []byte) (bool, error) { // AutomatonIterator returns an iterator which only visits terms // having the the vellum automaton and start/end key range -func (d *Dictionary) AutomatonIterator(a vellum.Automaton, +func (d *Dictionary) AutomatonIterator(a segment.Automaton, startKeyInclusive, endKeyExclusive []byte) segment.DictionaryIterator { if d.fst != nil { rv := &DictionaryIterator{ diff --git a/vendor/github.com/blevesearch/zapx/v11/docvalues.go b/vendor/github.com/blevesearch/zapx/v11/docvalues.go index 09a708df1a..27dba9962e 100644 --- a/vendor/github.com/blevesearch/zapx/v11/docvalues.go +++ b/vendor/github.com/blevesearch/zapx/v11/docvalues.go @@ -23,7 +23,7 @@ import ( "sort" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v11/enumerator.go b/vendor/github.com/blevesearch/zapx/v11/enumerator.go index cd6ff73c79..5531d2cf1d 100644 --- a/vendor/github.com/blevesearch/zapx/v11/enumerator.go +++ b/vendor/github.com/blevesearch/zapx/v11/enumerator.go @@ -17,7 +17,7 @@ package zap import ( "bytes" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) // enumerator provides an ordered traversal of multiple vellum diff --git a/vendor/github.com/blevesearch/zapx/v11/go.mod b/vendor/github.com/blevesearch/zapx/v11/go.mod index c90c2f8465..394dbb6a57 100644 --- a/vendor/github.com/blevesearch/zapx/v11/go.mod +++ b/vendor/github.com/blevesearch/zapx/v11/go.mod @@ -6,8 +6,8 @@ require ( github.com/RoaringBitmap/roaring v0.4.23 github.com/blevesearch/bleve_index_api v1.0.0 github.com/blevesearch/mmap-go v1.0.2 - github.com/blevesearch/scorch_segment_api v1.0.0 - github.com/couchbase/vellum v1.0.2 + github.com/blevesearch/scorch_segment_api/v2 v2.0.1 + github.com/blevesearch/vellum v1.0.3 github.com/golang/snappy v0.0.1 github.com/spf13/cobra v0.0.5 ) diff --git a/vendor/github.com/blevesearch/zapx/v11/go.sum b/vendor/github.com/blevesearch/zapx/v11/go.sum index 696bdabac2..68e45348c8 100644 --- a/vendor/github.com/blevesearch/zapx/v11/go.sum +++ b/vendor/github.com/blevesearch/zapx/v11/go.sum @@ -6,13 +6,13 @@ github.com/blevesearch/bleve_index_api v1.0.0 h1:Ds3XeuTxjXCkG6pgIwWDRyooJKNIuOK github.com/blevesearch/bleve_index_api v1.0.0/go.mod h1:fiwKS0xLEm+gBRgv5mumf0dhgFr2mDgZah1pqv1c1M4= github.com/blevesearch/mmap-go v1.0.2 h1:JtMHb+FgQCTTYIhtMvimw15dJwu1Y5lrZDMOFXVWPk0= github.com/blevesearch/mmap-go v1.0.2/go.mod h1:ol2qBqYaOUsGdm7aRMRrYGgPvnwLe6Y+7LMvAB5IbSA= -github.com/blevesearch/scorch_segment_api v1.0.0 h1:BUkCPWDg2gimTEyVDXf85I2buqqt4lh28uaVMiJsIYk= -github.com/blevesearch/scorch_segment_api v1.0.0/go.mod h1:KgRYmlfYC27NeM6cXOHx8LBgq7jn0atpV8mVWoBKBng= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1 h1:fd+hPtZ8GsbqPK1HslGp7Vhoik4arZteA/IsCEgOisw= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1/go.mod h1:lq7yK2jQy1yQjtjTfU931aVqz7pYxEudHaDwOt1tXfU= +github.com/blevesearch/vellum v1.0.3 h1:U86G41A7CtXNzzpIJHM8lSTUqz1Mp8U870TkcdCzZc8= +github.com/blevesearch/vellum v1.0.3/go.mod h1:2u5ax02KeDuNWu4/C+hVQMD6uLN4txH1JbtpaDNLJRo= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/couchbase/vellum v1.0.2 h1:BrbP0NKiyDdndMPec8Jjhy0U47CZ0Lgx3xUC2r9rZqw= -github.com/couchbase/vellum v1.0.2/go.mod h1:FcwrEivFpNi24R3jLOs3n+fs5RnuQnQqCLBJ1uAg1W4= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/vendor/github.com/blevesearch/zapx/v11/merge.go b/vendor/github.com/blevesearch/zapx/v11/merge.go index a042079c0d..f0770e990b 100644 --- a/vendor/github.com/blevesearch/zapx/v11/merge.go +++ b/vendor/github.com/blevesearch/zapx/v11/merge.go @@ -24,8 +24,8 @@ import ( "sort" "github.com/RoaringBitmap/roaring" - seg "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + seg "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v11/new.go b/vendor/github.com/blevesearch/zapx/v11/new.go index e5ad5443e8..4491422aa9 100644 --- a/vendor/github.com/blevesearch/zapx/v11/new.go +++ b/vendor/github.com/blevesearch/zapx/v11/new.go @@ -23,8 +23,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v11/posting.go b/vendor/github.com/blevesearch/zapx/v11/posting.go index 9cbb91d8dc..b7125e7c8a 100644 --- a/vendor/github.com/blevesearch/zapx/v11/posting.go +++ b/vendor/github.com/blevesearch/zapx/v11/posting.go @@ -21,7 +21,7 @@ import ( "reflect" "github.com/RoaringBitmap/roaring" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) var reflectStaticSizePostingsList int diff --git a/vendor/github.com/blevesearch/zapx/v11/segment.go b/vendor/github.com/blevesearch/zapx/v11/segment.go index 62a8d5aab6..7995de48c0 100644 --- a/vendor/github.com/blevesearch/zapx/v11/segment.go +++ b/vendor/github.com/blevesearch/zapx/v11/segment.go @@ -25,8 +25,8 @@ import ( "github.com/RoaringBitmap/roaring" mmap "github.com/blevesearch/mmap-go" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v12/build.go b/vendor/github.com/blevesearch/zapx/v12/build.go index 467e5e007b..eec4dde08c 100644 --- a/vendor/github.com/blevesearch/zapx/v12/build.go +++ b/vendor/github.com/blevesearch/zapx/v12/build.go @@ -19,7 +19,7 @@ import ( "math" "os" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) const Version uint32 = 12 diff --git a/vendor/github.com/blevesearch/zapx/v12/count.go b/vendor/github.com/blevesearch/zapx/v12/count.go index 9508e12704..b6135359fb 100644 --- a/vendor/github.com/blevesearch/zapx/v12/count.go +++ b/vendor/github.com/blevesearch/zapx/v12/count.go @@ -18,7 +18,7 @@ import ( "hash/crc32" "io" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) // CountHashWriter is a wrapper around a Writer which counts the number of diff --git a/vendor/github.com/blevesearch/zapx/v12/dict.go b/vendor/github.com/blevesearch/zapx/v12/dict.go index cf88651a7e..e30bf2420d 100644 --- a/vendor/github.com/blevesearch/zapx/v12/dict.go +++ b/vendor/github.com/blevesearch/zapx/v12/dict.go @@ -19,8 +19,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" ) // Dictionary is the zap representation of the term dictionary @@ -106,7 +106,7 @@ func (d *Dictionary) Contains(key []byte) (bool, error) { // AutomatonIterator returns an iterator which only visits terms // having the the vellum automaton and start/end key range -func (d *Dictionary) AutomatonIterator(a vellum.Automaton, +func (d *Dictionary) AutomatonIterator(a segment.Automaton, startKeyInclusive, endKeyExclusive []byte) segment.DictionaryIterator { if d.fst != nil { rv := &DictionaryIterator{ diff --git a/vendor/github.com/blevesearch/zapx/v12/docvalues.go b/vendor/github.com/blevesearch/zapx/v12/docvalues.go index f8da68f436..a530aa5ad9 100644 --- a/vendor/github.com/blevesearch/zapx/v12/docvalues.go +++ b/vendor/github.com/blevesearch/zapx/v12/docvalues.go @@ -23,7 +23,7 @@ import ( "sort" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v12/enumerator.go b/vendor/github.com/blevesearch/zapx/v12/enumerator.go index bc5b7e6276..972a224165 100644 --- a/vendor/github.com/blevesearch/zapx/v12/enumerator.go +++ b/vendor/github.com/blevesearch/zapx/v12/enumerator.go @@ -17,7 +17,7 @@ package zap import ( "bytes" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) // enumerator provides an ordered traversal of multiple vellum diff --git a/vendor/github.com/blevesearch/zapx/v12/go.mod b/vendor/github.com/blevesearch/zapx/v12/go.mod index 21b5665448..e6f734cfde 100644 --- a/vendor/github.com/blevesearch/zapx/v12/go.mod +++ b/vendor/github.com/blevesearch/zapx/v12/go.mod @@ -6,8 +6,8 @@ require ( github.com/RoaringBitmap/roaring v0.4.23 github.com/blevesearch/bleve_index_api v1.0.0 github.com/blevesearch/mmap-go v1.0.2 - github.com/blevesearch/scorch_segment_api v1.0.0 - github.com/couchbase/vellum v1.0.2 + github.com/blevesearch/scorch_segment_api/v2 v2.0.1 + github.com/blevesearch/vellum v1.0.3 github.com/golang/snappy v0.0.1 github.com/spf13/cobra v0.0.5 ) diff --git a/vendor/github.com/blevesearch/zapx/v12/go.sum b/vendor/github.com/blevesearch/zapx/v12/go.sum index 696bdabac2..68e45348c8 100644 --- a/vendor/github.com/blevesearch/zapx/v12/go.sum +++ b/vendor/github.com/blevesearch/zapx/v12/go.sum @@ -6,13 +6,13 @@ github.com/blevesearch/bleve_index_api v1.0.0 h1:Ds3XeuTxjXCkG6pgIwWDRyooJKNIuOK github.com/blevesearch/bleve_index_api v1.0.0/go.mod h1:fiwKS0xLEm+gBRgv5mumf0dhgFr2mDgZah1pqv1c1M4= github.com/blevesearch/mmap-go v1.0.2 h1:JtMHb+FgQCTTYIhtMvimw15dJwu1Y5lrZDMOFXVWPk0= github.com/blevesearch/mmap-go v1.0.2/go.mod h1:ol2qBqYaOUsGdm7aRMRrYGgPvnwLe6Y+7LMvAB5IbSA= -github.com/blevesearch/scorch_segment_api v1.0.0 h1:BUkCPWDg2gimTEyVDXf85I2buqqt4lh28uaVMiJsIYk= -github.com/blevesearch/scorch_segment_api v1.0.0/go.mod h1:KgRYmlfYC27NeM6cXOHx8LBgq7jn0atpV8mVWoBKBng= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1 h1:fd+hPtZ8GsbqPK1HslGp7Vhoik4arZteA/IsCEgOisw= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1/go.mod h1:lq7yK2jQy1yQjtjTfU931aVqz7pYxEudHaDwOt1tXfU= +github.com/blevesearch/vellum v1.0.3 h1:U86G41A7CtXNzzpIJHM8lSTUqz1Mp8U870TkcdCzZc8= +github.com/blevesearch/vellum v1.0.3/go.mod h1:2u5ax02KeDuNWu4/C+hVQMD6uLN4txH1JbtpaDNLJRo= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/couchbase/vellum v1.0.2 h1:BrbP0NKiyDdndMPec8Jjhy0U47CZ0Lgx3xUC2r9rZqw= -github.com/couchbase/vellum v1.0.2/go.mod h1:FcwrEivFpNi24R3jLOs3n+fs5RnuQnQqCLBJ1uAg1W4= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/vendor/github.com/blevesearch/zapx/v12/merge.go b/vendor/github.com/blevesearch/zapx/v12/merge.go index fa33cb955c..6a853a16a6 100644 --- a/vendor/github.com/blevesearch/zapx/v12/merge.go +++ b/vendor/github.com/blevesearch/zapx/v12/merge.go @@ -24,8 +24,8 @@ import ( "sort" "github.com/RoaringBitmap/roaring" - seg "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + seg "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v12/new.go b/vendor/github.com/blevesearch/zapx/v12/new.go index 12a2d01efe..b4e0d03415 100644 --- a/vendor/github.com/blevesearch/zapx/v12/new.go +++ b/vendor/github.com/blevesearch/zapx/v12/new.go @@ -23,8 +23,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v12/posting.go b/vendor/github.com/blevesearch/zapx/v12/posting.go index c18aa31da5..d6c61a42ce 100644 --- a/vendor/github.com/blevesearch/zapx/v12/posting.go +++ b/vendor/github.com/blevesearch/zapx/v12/posting.go @@ -21,7 +21,7 @@ import ( "reflect" "github.com/RoaringBitmap/roaring" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) var reflectStaticSizePostingsList int diff --git a/vendor/github.com/blevesearch/zapx/v12/segment.go b/vendor/github.com/blevesearch/zapx/v12/segment.go index 427644f12c..6317ad4036 100644 --- a/vendor/github.com/blevesearch/zapx/v12/segment.go +++ b/vendor/github.com/blevesearch/zapx/v12/segment.go @@ -25,8 +25,8 @@ import ( "github.com/RoaringBitmap/roaring" mmap "github.com/blevesearch/mmap-go" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v13/build.go b/vendor/github.com/blevesearch/zapx/v13/build.go index 58d829f0c6..5a25eef77b 100644 --- a/vendor/github.com/blevesearch/zapx/v13/build.go +++ b/vendor/github.com/blevesearch/zapx/v13/build.go @@ -19,7 +19,7 @@ import ( "math" "os" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) const Version uint32 = 13 diff --git a/vendor/github.com/blevesearch/zapx/v13/count.go b/vendor/github.com/blevesearch/zapx/v13/count.go index 9508e12704..b6135359fb 100644 --- a/vendor/github.com/blevesearch/zapx/v13/count.go +++ b/vendor/github.com/blevesearch/zapx/v13/count.go @@ -18,7 +18,7 @@ import ( "hash/crc32" "io" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) // CountHashWriter is a wrapper around a Writer which counts the number of diff --git a/vendor/github.com/blevesearch/zapx/v13/dict.go b/vendor/github.com/blevesearch/zapx/v13/dict.go index cf88651a7e..e30bf2420d 100644 --- a/vendor/github.com/blevesearch/zapx/v13/dict.go +++ b/vendor/github.com/blevesearch/zapx/v13/dict.go @@ -19,8 +19,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" ) // Dictionary is the zap representation of the term dictionary @@ -106,7 +106,7 @@ func (d *Dictionary) Contains(key []byte) (bool, error) { // AutomatonIterator returns an iterator which only visits terms // having the the vellum automaton and start/end key range -func (d *Dictionary) AutomatonIterator(a vellum.Automaton, +func (d *Dictionary) AutomatonIterator(a segment.Automaton, startKeyInclusive, endKeyExclusive []byte) segment.DictionaryIterator { if d.fst != nil { rv := &DictionaryIterator{ diff --git a/vendor/github.com/blevesearch/zapx/v13/docvalues.go b/vendor/github.com/blevesearch/zapx/v13/docvalues.go index f8da68f436..a530aa5ad9 100644 --- a/vendor/github.com/blevesearch/zapx/v13/docvalues.go +++ b/vendor/github.com/blevesearch/zapx/v13/docvalues.go @@ -23,7 +23,7 @@ import ( "sort" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v13/enumerator.go b/vendor/github.com/blevesearch/zapx/v13/enumerator.go index bc5b7e6276..972a224165 100644 --- a/vendor/github.com/blevesearch/zapx/v13/enumerator.go +++ b/vendor/github.com/blevesearch/zapx/v13/enumerator.go @@ -17,7 +17,7 @@ package zap import ( "bytes" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) // enumerator provides an ordered traversal of multiple vellum diff --git a/vendor/github.com/blevesearch/zapx/v13/go.mod b/vendor/github.com/blevesearch/zapx/v13/go.mod index 144f060f7b..7036e8689b 100644 --- a/vendor/github.com/blevesearch/zapx/v13/go.mod +++ b/vendor/github.com/blevesearch/zapx/v13/go.mod @@ -6,8 +6,8 @@ require ( github.com/RoaringBitmap/roaring v0.4.23 github.com/blevesearch/bleve_index_api v1.0.0 github.com/blevesearch/mmap-go v1.0.2 - github.com/blevesearch/scorch_segment_api v1.0.0 - github.com/couchbase/vellum v1.0.2 + github.com/blevesearch/scorch_segment_api/v2 v2.0.1 + github.com/blevesearch/vellum v1.0.3 github.com/golang/snappy v0.0.1 github.com/spf13/cobra v0.0.5 ) diff --git a/vendor/github.com/blevesearch/zapx/v13/go.sum b/vendor/github.com/blevesearch/zapx/v13/go.sum index 696bdabac2..68e45348c8 100644 --- a/vendor/github.com/blevesearch/zapx/v13/go.sum +++ b/vendor/github.com/blevesearch/zapx/v13/go.sum @@ -6,13 +6,13 @@ github.com/blevesearch/bleve_index_api v1.0.0 h1:Ds3XeuTxjXCkG6pgIwWDRyooJKNIuOK github.com/blevesearch/bleve_index_api v1.0.0/go.mod h1:fiwKS0xLEm+gBRgv5mumf0dhgFr2mDgZah1pqv1c1M4= github.com/blevesearch/mmap-go v1.0.2 h1:JtMHb+FgQCTTYIhtMvimw15dJwu1Y5lrZDMOFXVWPk0= github.com/blevesearch/mmap-go v1.0.2/go.mod h1:ol2qBqYaOUsGdm7aRMRrYGgPvnwLe6Y+7LMvAB5IbSA= -github.com/blevesearch/scorch_segment_api v1.0.0 h1:BUkCPWDg2gimTEyVDXf85I2buqqt4lh28uaVMiJsIYk= -github.com/blevesearch/scorch_segment_api v1.0.0/go.mod h1:KgRYmlfYC27NeM6cXOHx8LBgq7jn0atpV8mVWoBKBng= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1 h1:fd+hPtZ8GsbqPK1HslGp7Vhoik4arZteA/IsCEgOisw= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1/go.mod h1:lq7yK2jQy1yQjtjTfU931aVqz7pYxEudHaDwOt1tXfU= +github.com/blevesearch/vellum v1.0.3 h1:U86G41A7CtXNzzpIJHM8lSTUqz1Mp8U870TkcdCzZc8= +github.com/blevesearch/vellum v1.0.3/go.mod h1:2u5ax02KeDuNWu4/C+hVQMD6uLN4txH1JbtpaDNLJRo= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/couchbase/vellum v1.0.2 h1:BrbP0NKiyDdndMPec8Jjhy0U47CZ0Lgx3xUC2r9rZqw= -github.com/couchbase/vellum v1.0.2/go.mod h1:FcwrEivFpNi24R3jLOs3n+fs5RnuQnQqCLBJ1uAg1W4= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/vendor/github.com/blevesearch/zapx/v13/merge.go b/vendor/github.com/blevesearch/zapx/v13/merge.go index fa33cb955c..6a853a16a6 100644 --- a/vendor/github.com/blevesearch/zapx/v13/merge.go +++ b/vendor/github.com/blevesearch/zapx/v13/merge.go @@ -24,8 +24,8 @@ import ( "sort" "github.com/RoaringBitmap/roaring" - seg "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + seg "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v13/new.go b/vendor/github.com/blevesearch/zapx/v13/new.go index 12a2d01efe..b4e0d03415 100644 --- a/vendor/github.com/blevesearch/zapx/v13/new.go +++ b/vendor/github.com/blevesearch/zapx/v13/new.go @@ -23,8 +23,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v13/posting.go b/vendor/github.com/blevesearch/zapx/v13/posting.go index c18aa31da5..d6c61a42ce 100644 --- a/vendor/github.com/blevesearch/zapx/v13/posting.go +++ b/vendor/github.com/blevesearch/zapx/v13/posting.go @@ -21,7 +21,7 @@ import ( "reflect" "github.com/RoaringBitmap/roaring" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) var reflectStaticSizePostingsList int diff --git a/vendor/github.com/blevesearch/zapx/v13/segment.go b/vendor/github.com/blevesearch/zapx/v13/segment.go index 427644f12c..6317ad4036 100644 --- a/vendor/github.com/blevesearch/zapx/v13/segment.go +++ b/vendor/github.com/blevesearch/zapx/v13/segment.go @@ -25,8 +25,8 @@ import ( "github.com/RoaringBitmap/roaring" mmap "github.com/blevesearch/mmap-go" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v14/build.go b/vendor/github.com/blevesearch/zapx/v14/build.go index 7a8dce0dcc..59c4268488 100644 --- a/vendor/github.com/blevesearch/zapx/v14/build.go +++ b/vendor/github.com/blevesearch/zapx/v14/build.go @@ -19,7 +19,7 @@ import ( "math" "os" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) const Version uint32 = 14 diff --git a/vendor/github.com/blevesearch/zapx/v14/count.go b/vendor/github.com/blevesearch/zapx/v14/count.go index 9508e12704..b6135359fb 100644 --- a/vendor/github.com/blevesearch/zapx/v14/count.go +++ b/vendor/github.com/blevesearch/zapx/v14/count.go @@ -18,7 +18,7 @@ import ( "hash/crc32" "io" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) // CountHashWriter is a wrapper around a Writer which counts the number of diff --git a/vendor/github.com/blevesearch/zapx/v14/dict.go b/vendor/github.com/blevesearch/zapx/v14/dict.go index cf88651a7e..e30bf2420d 100644 --- a/vendor/github.com/blevesearch/zapx/v14/dict.go +++ b/vendor/github.com/blevesearch/zapx/v14/dict.go @@ -19,8 +19,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" ) // Dictionary is the zap representation of the term dictionary @@ -106,7 +106,7 @@ func (d *Dictionary) Contains(key []byte) (bool, error) { // AutomatonIterator returns an iterator which only visits terms // having the the vellum automaton and start/end key range -func (d *Dictionary) AutomatonIterator(a vellum.Automaton, +func (d *Dictionary) AutomatonIterator(a segment.Automaton, startKeyInclusive, endKeyExclusive []byte) segment.DictionaryIterator { if d.fst != nil { rv := &DictionaryIterator{ diff --git a/vendor/github.com/blevesearch/zapx/v14/docvalues.go b/vendor/github.com/blevesearch/zapx/v14/docvalues.go index f8da68f436..a530aa5ad9 100644 --- a/vendor/github.com/blevesearch/zapx/v14/docvalues.go +++ b/vendor/github.com/blevesearch/zapx/v14/docvalues.go @@ -23,7 +23,7 @@ import ( "sort" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v14/enumerator.go b/vendor/github.com/blevesearch/zapx/v14/enumerator.go index bc5b7e6276..972a224165 100644 --- a/vendor/github.com/blevesearch/zapx/v14/enumerator.go +++ b/vendor/github.com/blevesearch/zapx/v14/enumerator.go @@ -17,7 +17,7 @@ package zap import ( "bytes" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) // enumerator provides an ordered traversal of multiple vellum diff --git a/vendor/github.com/blevesearch/zapx/v14/go.mod b/vendor/github.com/blevesearch/zapx/v14/go.mod index 2394b4fa2d..762a0807dc 100644 --- a/vendor/github.com/blevesearch/zapx/v14/go.mod +++ b/vendor/github.com/blevesearch/zapx/v14/go.mod @@ -6,8 +6,8 @@ require ( github.com/RoaringBitmap/roaring v0.4.23 github.com/blevesearch/bleve_index_api v1.0.0 github.com/blevesearch/mmap-go v1.0.2 - github.com/blevesearch/scorch_segment_api v1.0.0 - github.com/couchbase/vellum v1.0.2 + github.com/blevesearch/scorch_segment_api/v2 v2.0.1 + github.com/blevesearch/vellum v1.0.3 github.com/golang/snappy v0.0.1 github.com/spf13/cobra v0.0.5 ) diff --git a/vendor/github.com/blevesearch/zapx/v14/go.sum b/vendor/github.com/blevesearch/zapx/v14/go.sum index 696bdabac2..68e45348c8 100644 --- a/vendor/github.com/blevesearch/zapx/v14/go.sum +++ b/vendor/github.com/blevesearch/zapx/v14/go.sum @@ -6,13 +6,13 @@ github.com/blevesearch/bleve_index_api v1.0.0 h1:Ds3XeuTxjXCkG6pgIwWDRyooJKNIuOK github.com/blevesearch/bleve_index_api v1.0.0/go.mod h1:fiwKS0xLEm+gBRgv5mumf0dhgFr2mDgZah1pqv1c1M4= github.com/blevesearch/mmap-go v1.0.2 h1:JtMHb+FgQCTTYIhtMvimw15dJwu1Y5lrZDMOFXVWPk0= github.com/blevesearch/mmap-go v1.0.2/go.mod h1:ol2qBqYaOUsGdm7aRMRrYGgPvnwLe6Y+7LMvAB5IbSA= -github.com/blevesearch/scorch_segment_api v1.0.0 h1:BUkCPWDg2gimTEyVDXf85I2buqqt4lh28uaVMiJsIYk= -github.com/blevesearch/scorch_segment_api v1.0.0/go.mod h1:KgRYmlfYC27NeM6cXOHx8LBgq7jn0atpV8mVWoBKBng= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1 h1:fd+hPtZ8GsbqPK1HslGp7Vhoik4arZteA/IsCEgOisw= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1/go.mod h1:lq7yK2jQy1yQjtjTfU931aVqz7pYxEudHaDwOt1tXfU= +github.com/blevesearch/vellum v1.0.3 h1:U86G41A7CtXNzzpIJHM8lSTUqz1Mp8U870TkcdCzZc8= +github.com/blevesearch/vellum v1.0.3/go.mod h1:2u5ax02KeDuNWu4/C+hVQMD6uLN4txH1JbtpaDNLJRo= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/couchbase/vellum v1.0.2 h1:BrbP0NKiyDdndMPec8Jjhy0U47CZ0Lgx3xUC2r9rZqw= -github.com/couchbase/vellum v1.0.2/go.mod h1:FcwrEivFpNi24R3jLOs3n+fs5RnuQnQqCLBJ1uAg1W4= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/vendor/github.com/blevesearch/zapx/v14/merge.go b/vendor/github.com/blevesearch/zapx/v14/merge.go index fa33cb955c..6a853a16a6 100644 --- a/vendor/github.com/blevesearch/zapx/v14/merge.go +++ b/vendor/github.com/blevesearch/zapx/v14/merge.go @@ -24,8 +24,8 @@ import ( "sort" "github.com/RoaringBitmap/roaring" - seg "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + seg "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v14/new.go b/vendor/github.com/blevesearch/zapx/v14/new.go index 12a2d01efe..b4e0d03415 100644 --- a/vendor/github.com/blevesearch/zapx/v14/new.go +++ b/vendor/github.com/blevesearch/zapx/v14/new.go @@ -23,8 +23,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v14/posting.go b/vendor/github.com/blevesearch/zapx/v14/posting.go index 851790cab1..1d04247fb6 100644 --- a/vendor/github.com/blevesearch/zapx/v14/posting.go +++ b/vendor/github.com/blevesearch/zapx/v14/posting.go @@ -21,7 +21,7 @@ import ( "reflect" "github.com/RoaringBitmap/roaring" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) var reflectStaticSizePostingsList int diff --git a/vendor/github.com/blevesearch/zapx/v14/segment.go b/vendor/github.com/blevesearch/zapx/v14/segment.go index 427644f12c..6317ad4036 100644 --- a/vendor/github.com/blevesearch/zapx/v14/segment.go +++ b/vendor/github.com/blevesearch/zapx/v14/segment.go @@ -25,8 +25,8 @@ import ( "github.com/RoaringBitmap/roaring" mmap "github.com/blevesearch/mmap-go" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v15/build.go b/vendor/github.com/blevesearch/zapx/v15/build.go index 1b7318376e..14309f90ca 100644 --- a/vendor/github.com/blevesearch/zapx/v15/build.go +++ b/vendor/github.com/blevesearch/zapx/v15/build.go @@ -19,7 +19,7 @@ import ( "math" "os" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) const Version uint32 = 15 diff --git a/vendor/github.com/blevesearch/zapx/v15/count.go b/vendor/github.com/blevesearch/zapx/v15/count.go index 9508e12704..b6135359fb 100644 --- a/vendor/github.com/blevesearch/zapx/v15/count.go +++ b/vendor/github.com/blevesearch/zapx/v15/count.go @@ -18,7 +18,7 @@ import ( "hash/crc32" "io" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) // CountHashWriter is a wrapper around a Writer which counts the number of diff --git a/vendor/github.com/blevesearch/zapx/v15/dict.go b/vendor/github.com/blevesearch/zapx/v15/dict.go index cf88651a7e..e30bf2420d 100644 --- a/vendor/github.com/blevesearch/zapx/v15/dict.go +++ b/vendor/github.com/blevesearch/zapx/v15/dict.go @@ -19,8 +19,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" ) // Dictionary is the zap representation of the term dictionary @@ -106,7 +106,7 @@ func (d *Dictionary) Contains(key []byte) (bool, error) { // AutomatonIterator returns an iterator which only visits terms // having the the vellum automaton and start/end key range -func (d *Dictionary) AutomatonIterator(a vellum.Automaton, +func (d *Dictionary) AutomatonIterator(a segment.Automaton, startKeyInclusive, endKeyExclusive []byte) segment.DictionaryIterator { if d.fst != nil { rv := &DictionaryIterator{ diff --git a/vendor/github.com/blevesearch/zapx/v15/docvalues.go b/vendor/github.com/blevesearch/zapx/v15/docvalues.go index f8da68f436..a530aa5ad9 100644 --- a/vendor/github.com/blevesearch/zapx/v15/docvalues.go +++ b/vendor/github.com/blevesearch/zapx/v15/docvalues.go @@ -23,7 +23,7 @@ import ( "sort" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v15/enumerator.go b/vendor/github.com/blevesearch/zapx/v15/enumerator.go index bc5b7e6276..972a224165 100644 --- a/vendor/github.com/blevesearch/zapx/v15/enumerator.go +++ b/vendor/github.com/blevesearch/zapx/v15/enumerator.go @@ -17,7 +17,7 @@ package zap import ( "bytes" - "github.com/couchbase/vellum" + "github.com/blevesearch/vellum" ) // enumerator provides an ordered traversal of multiple vellum diff --git a/vendor/github.com/blevesearch/zapx/v15/go.mod b/vendor/github.com/blevesearch/zapx/v15/go.mod index dab0d929b0..5f098983b8 100644 --- a/vendor/github.com/blevesearch/zapx/v15/go.mod +++ b/vendor/github.com/blevesearch/zapx/v15/go.mod @@ -6,8 +6,8 @@ require ( github.com/RoaringBitmap/roaring v0.4.23 github.com/blevesearch/bleve_index_api v1.0.0 github.com/blevesearch/mmap-go v1.0.2 - github.com/blevesearch/scorch_segment_api v1.0.0 - github.com/couchbase/vellum v1.0.2 + github.com/blevesearch/scorch_segment_api/v2 v2.0.1 + github.com/blevesearch/vellum v1.0.3 github.com/golang/snappy v0.0.1 github.com/spf13/cobra v0.0.5 ) diff --git a/vendor/github.com/blevesearch/zapx/v15/go.sum b/vendor/github.com/blevesearch/zapx/v15/go.sum index 696bdabac2..68e45348c8 100644 --- a/vendor/github.com/blevesearch/zapx/v15/go.sum +++ b/vendor/github.com/blevesearch/zapx/v15/go.sum @@ -6,13 +6,13 @@ github.com/blevesearch/bleve_index_api v1.0.0 h1:Ds3XeuTxjXCkG6pgIwWDRyooJKNIuOK github.com/blevesearch/bleve_index_api v1.0.0/go.mod h1:fiwKS0xLEm+gBRgv5mumf0dhgFr2mDgZah1pqv1c1M4= github.com/blevesearch/mmap-go v1.0.2 h1:JtMHb+FgQCTTYIhtMvimw15dJwu1Y5lrZDMOFXVWPk0= github.com/blevesearch/mmap-go v1.0.2/go.mod h1:ol2qBqYaOUsGdm7aRMRrYGgPvnwLe6Y+7LMvAB5IbSA= -github.com/blevesearch/scorch_segment_api v1.0.0 h1:BUkCPWDg2gimTEyVDXf85I2buqqt4lh28uaVMiJsIYk= -github.com/blevesearch/scorch_segment_api v1.0.0/go.mod h1:KgRYmlfYC27NeM6cXOHx8LBgq7jn0atpV8mVWoBKBng= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1 h1:fd+hPtZ8GsbqPK1HslGp7Vhoik4arZteA/IsCEgOisw= +github.com/blevesearch/scorch_segment_api/v2 v2.0.1/go.mod h1:lq7yK2jQy1yQjtjTfU931aVqz7pYxEudHaDwOt1tXfU= +github.com/blevesearch/vellum v1.0.3 h1:U86G41A7CtXNzzpIJHM8lSTUqz1Mp8U870TkcdCzZc8= +github.com/blevesearch/vellum v1.0.3/go.mod h1:2u5ax02KeDuNWu4/C+hVQMD6uLN4txH1JbtpaDNLJRo= github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE= github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk= github.com/coreos/go-semver v0.2.0/go.mod h1:nnelYz7RCh+5ahJtPPxZlU+153eP4D4r3EedlOD2RNk= -github.com/couchbase/vellum v1.0.2 h1:BrbP0NKiyDdndMPec8Jjhy0U47CZ0Lgx3xUC2r9rZqw= -github.com/couchbase/vellum v1.0.2/go.mod h1:FcwrEivFpNi24R3jLOs3n+fs5RnuQnQqCLBJ1uAg1W4= github.com/cpuguy83/go-md2man v1.0.10/go.mod h1:SmD6nW6nTyfqj6ABTjUi3V3JVMnlJmwcJI5acqYI6dE= github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38= github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c= diff --git a/vendor/github.com/blevesearch/zapx/v15/merge.go b/vendor/github.com/blevesearch/zapx/v15/merge.go index 5f19a2cd5f..887d3447e8 100644 --- a/vendor/github.com/blevesearch/zapx/v15/merge.go +++ b/vendor/github.com/blevesearch/zapx/v15/merge.go @@ -24,8 +24,8 @@ import ( "sort" "github.com/RoaringBitmap/roaring" - seg "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + seg "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v15/new.go b/vendor/github.com/blevesearch/zapx/v15/new.go index 597751d186..362715d443 100644 --- a/vendor/github.com/blevesearch/zapx/v15/new.go +++ b/vendor/github.com/blevesearch/zapx/v15/new.go @@ -23,8 +23,8 @@ import ( "github.com/RoaringBitmap/roaring" index "github.com/blevesearch/bleve_index_api" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) diff --git a/vendor/github.com/blevesearch/zapx/v15/posting.go b/vendor/github.com/blevesearch/zapx/v15/posting.go index 5f6332102c..b1d19e532d 100644 --- a/vendor/github.com/blevesearch/zapx/v15/posting.go +++ b/vendor/github.com/blevesearch/zapx/v15/posting.go @@ -21,7 +21,7 @@ import ( "reflect" "github.com/RoaringBitmap/roaring" - segment "github.com/blevesearch/scorch_segment_api" + segment "github.com/blevesearch/scorch_segment_api/v2" ) var reflectStaticSizePostingsList int diff --git a/vendor/github.com/blevesearch/zapx/v15/segment.go b/vendor/github.com/blevesearch/zapx/v15/segment.go index b3ad260f9d..bc29f3f4a3 100644 --- a/vendor/github.com/blevesearch/zapx/v15/segment.go +++ b/vendor/github.com/blevesearch/zapx/v15/segment.go @@ -25,8 +25,8 @@ import ( "github.com/RoaringBitmap/roaring" mmap "github.com/blevesearch/mmap-go" - segment "github.com/blevesearch/scorch_segment_api" - "github.com/couchbase/vellum" + segment "github.com/blevesearch/scorch_segment_api/v2" + "github.com/blevesearch/vellum" "github.com/golang/snappy" ) |