aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/blevesearch/zapx/v15
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/blevesearch/zapx/v15')
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/build.go2
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/count.go2
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/dict.go6
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/docvalues.go2
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/enumerator.go2
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/go.mod4
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/go.sum8
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/merge.go4
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/new.go4
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/posting.go2
-rw-r--r--vendor/github.com/blevesearch/zapx/v15/segment.go4
11 files changed, 20 insertions, 20 deletions
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"
)