Skip to content
This repository was archived by the owner on Feb 21, 2024. It is now read-only.

Commit e75abc3

Browse files
author
Kasey Rodgers
committed
added testify dependency
1 parent 07da547 commit e75abc3

26 files changed

+68
-80
lines changed

client/main_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/http"
1010
_ "net/http/pprof"
1111

12-
"github.com/molecula/featurebase/v3/testhook"
12+
"github.com/featurebasedb/featurebase/v3/testhook"
1313
)
1414

1515
func TestMain(m *testing.M) {

executor_internal_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
"testing"
1313
"time"
1414

15-
"github.com/molecula/featurebase/v3/pql"
15+
"github.com/featurebasedb/featurebase/v3/pql"
1616
)
1717

1818
// AssertEqual checks a given RowIdentifiers against expected values.

field.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -16,11 +16,11 @@ import (
1616
"sync"
1717
"time"
1818

19-
"github.com/molecula/featurebase/v3/pql"
20-
"github.com/molecula/featurebase/v3/roaring"
21-
"github.com/molecula/featurebase/v3/stats"
22-
"github.com/molecula/featurebase/v3/testhook"
23-
"github.com/molecula/featurebase/v3/tracing"
19+
"github.com/featurebasedb/featurebase/v3/pql"
20+
"github.com/featurebasedb/featurebase/v3/roaring"
21+
"github.com/featurebasedb/featurebase/v3/stats"
22+
"github.com/featurebasedb/featurebase/v3/testhook"
23+
"github.com/featurebasedb/featurebase/v3/tracing"
2424
"github.com/pkg/errors"
2525
)
2626

field_internal_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import (
1212
"testing"
1313
"time"
1414

15-
"github.com/molecula/featurebase/v3/pql"
16-
"github.com/molecula/featurebase/v3/roaring"
17-
"github.com/molecula/featurebase/v3/shardwidth"
18-
. "github.com/molecula/featurebase/v3/vprint" // nolint:staticcheck
15+
"github.com/featurebasedb/featurebase/v3/pql"
16+
"github.com/featurebasedb/featurebase/v3/roaring"
17+
"github.com/featurebasedb/featurebase/v3/shardwidth"
18+
. "github.com/featurebasedb/featurebase/v3/vprint" // nolint:staticcheck
1919
)
2020

2121
// CorruptAMutex breaks a mutex in order to test the mutex-corruption stuff.

field_test.go

-5
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,7 @@ import (
1313
"github.com/featurebasedb/featurebase/v3/pql"
1414
"github.com/featurebasedb/featurebase/v3/roaring"
1515
"github.com/featurebasedb/featurebase/v3/test"
16-
"github.com/featurebasedb/featurebase/v3/testhook"
1716
"github.com/google/go-cmp/cmp"
18-
pilosa "github.com/molecula/featurebase/v3"
19-
"github.com/molecula/featurebase/v3/pql"
20-
"github.com/molecula/featurebase/v3/roaring"
21-
"github.com/molecula/featurebase/v3/test"
2217
"github.com/pkg/errors"
2318
)
2419

go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ require (
5454
github.com/spf13/cobra v1.2.1
5555
github.com/spf13/pflag v1.0.5
5656
github.com/spf13/viper v1.8.1
57-
github.com/stretchr/testify v1.7.1
57+
github.com/stretchr/testify v1.8.0
5858
github.com/uber/jaeger-client-go v2.25.0+incompatible
5959
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
6060
github.com/zeebo/blake3 v0.2.3
@@ -136,7 +136,7 @@ require (
136136
github.com/spf13/afero v1.6.0 // indirect
137137
github.com/spf13/cast v1.3.1 // indirect
138138
github.com/spf13/jwalterweatherman v1.1.0 // indirect
139-
github.com/stretchr/objx v0.2.0 // indirect
139+
github.com/stretchr/objx v0.4.0 // indirect
140140
github.com/subosito/gotenv v1.2.0 // indirect
141141
github.com/tklauser/go-sysconf v0.3.10 // indirect
142142
github.com/tklauser/numcpus v0.4.0 // indirect
@@ -169,7 +169,7 @@ require (
169169
google.golang.org/protobuf v1.28.0 // indirect
170170
gopkg.in/ini.v1 v1.62.0 // indirect
171171
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
172-
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
172+
gopkg.in/yaml.v3 v3.0.1 // indirect
173173
nhooyr.io/websocket v1.8.6 // indirect
174174
)
175175

go.sum

+6
Original file line numberDiff line numberDiff line change
@@ -993,6 +993,8 @@ github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+
993993
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
994994
github.com/stretchr/objx v0.2.0 h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=
995995
github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=
996+
github.com/stretchr/objx v0.4.0 h1:M2gUjqZET1qApGOWNSnZ49BAIMX4F/1plDv3+l31EJ4=
997+
github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
996998
github.com/stretchr/testify v0.0.0-20151208002404-e3a8ff8ce365/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
997999
github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
9981000
github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
@@ -1003,6 +1005,8 @@ github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/
10031005
github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
10041006
github.com/stretchr/testify v1.7.1 h1:5TQK59W5E3v0r2duFAb7P95B6hEeOyEnHRa8MjYSMTY=
10051007
github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
1008+
github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
1009+
github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
10061010
github.com/subosito/gotenv v1.2.0 h1:Slr1R9HxAlEKefgq5jn9U+DnETlIUa6HfgEzj0g5d7s=
10071011
github.com/subosito/gotenv v1.2.0/go.mod h1:N0PQaV/YGNqwC0u51sEeR/aUtSLEXKX9iv69rRypqCw=
10081012
github.com/syndtr/goleveldb v1.0.0/go.mod h1:ZVVdQEZoIme9iO1Ch2Jdy24qqXrMMOU6lpPAyBWyWuQ=
@@ -1672,6 +1676,8 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C
16721676
gopkg.in/yaml.v3 v3.0.0-20200605160147-a5ece683394c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
16731677
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
16741678
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
1679+
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
1680+
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
16751681
gorm.io/driver/mysql v1.0.1/go.mod h1:KtqSthtg55lFp3S5kUXqlGaelnWpKitn4k1xZTnoiPw=
16761682
gorm.io/driver/postgres v1.0.0/go.mod h1:wtMFcOzmuA5QigNsgEIb7O5lhvH1tHAF1RbWmLWV4to=
16771683
gorm.io/driver/sqlserver v1.0.4/go.mod h1:ciEo5btfITTBCj9BkoUVDvgQbUdLWQNqdFY5OGuGnRg=

holder_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import (
1111
"testing"
1212
"time"
1313

14-
pilosa "github.com/molecula/featurebase/v3"
15-
"github.com/molecula/featurebase/v3/pql"
16-
"github.com/molecula/featurebase/v3/test"
14+
pilosa "github.com/featurebasedb/featurebase/v3"
15+
"github.com/featurebasedb/featurebase/v3/pql"
16+
"github.com/featurebasedb/featurebase/v3/test"
1717
"github.com/pkg/errors"
1818
)
1919

index_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,10 @@ import (
1111
"testing"
1212
"time"
1313

14-
pilosa "github.com/molecula/featurebase/v3"
15-
"github.com/molecula/featurebase/v3/disco"
16-
"github.com/molecula/featurebase/v3/pql"
17-
"github.com/molecula/featurebase/v3/test"
14+
pilosa "github.com/featurebasedb/featurebase/v3"
15+
"github.com/featurebasedb/featurebase/v3/disco"
16+
"github.com/featurebasedb/featurebase/v3/pql"
17+
"github.com/featurebasedb/featurebase/v3/test"
1818
"github.com/pkg/errors"
1919
)
2020

server/handler_test.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,13 @@ import (
1818
"testing"
1919
"time"
2020

21-
pilosa "github.com/molecula/featurebase/v3"
22-
"github.com/molecula/featurebase/v3/boltdb"
23-
"github.com/molecula/featurebase/v3/encoding/proto"
24-
"github.com/molecula/featurebase/v3/pql"
25-
pb "github.com/molecula/featurebase/v3/proto"
26-
"github.com/molecula/featurebase/v3/server"
27-
"github.com/molecula/featurebase/v3/test"
21+
pilosa "github.com/featurebasedb/featurebase/v3"
22+
"github.com/featurebasedb/featurebase/v3/boltdb"
23+
"github.com/featurebasedb/featurebase/v3/encoding/proto"
24+
"github.com/featurebasedb/featurebase/v3/pql"
25+
pb "github.com/featurebasedb/featurebase/v3/proto"
26+
"github.com/featurebasedb/featurebase/v3/server"
27+
"github.com/featurebasedb/featurebase/v3/test"
2828
"google.golang.org/grpc"
2929
)
3030

sql/main_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/http"
1010
_ "net/http/pprof"
1111

12-
"github.com/molecula/featurebase/v3/testhook"
12+
"github.com/featurebasedb/featurebase/v3/testhook"
1313
)
1414

1515
func TestMain(m *testing.M) {

sql3/main_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/http"
1010
_ "net/http/pprof"
1111

12-
"github.com/molecula/featurebase/v3/testhook"
12+
"github.com/featurebasedb/featurebase/v3/testhook"
1313
)
1414

1515
func TestMain(m *testing.M) {

sql3/planner/expressionagg.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ import (
77
"fmt"
88
"reflect"
99

10-
"github.com/molecula/featurebase/v3/pql"
11-
"github.com/molecula/featurebase/v3/sql3"
12-
"github.com/molecula/featurebase/v3/sql3/parser"
13-
"github.com/molecula/featurebase/v3/sql3/planner/types"
10+
"github.com/featurebasedb/featurebase/v3/pql"
11+
"github.com/featurebasedb/featurebase/v3/sql3"
12+
"github.com/featurebasedb/featurebase/v3/sql3/parser"
13+
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
1414
)
1515

1616
// aggregator for the COUNT function

sql3/planner/inbuiltfunctionstable.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
package planner
22

33
import (
4-
"github.com/molecula/featurebase/v3/sql3"
5-
"github.com/molecula/featurebase/v3/sql3/parser"
4+
"github.com/featurebasedb/featurebase/v3/sql3"
5+
"github.com/featurebasedb/featurebase/v3/sql3/parser"
66
)
77

88
// TODO (pok) this needs to go somewhere

sql3/planner/main_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/http"
1010
_ "net/http/pprof"
1111

12-
"github.com/molecula/featurebase/v3/testhook"
12+
"github.com/featurebasedb/featurebase/v3/testhook"
1313
)
1414

1515
func TestMain(m *testing.M) {

sql3/planner/memoryobj.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package planner
55
import (
66
"hash/maphash"
77

8-
"github.com/molecula/featurebase/v3/sql3"
9-
"github.com/molecula/featurebase/v3/sql3/planner/types"
8+
"github.com/featurebasedb/featurebase/v3/sql3"
9+
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
1010
)
1111

1212
var prototypeHash maphash.Hash

sql3/planner/opbulkinsert.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@ import (
1212
"strconv"
1313
"time"
1414

15-
pilosa "github.com/molecula/featurebase/v3"
16-
"github.com/molecula/featurebase/v3/sql3"
17-
"github.com/molecula/featurebase/v3/sql3/parser"
18-
"github.com/molecula/featurebase/v3/sql3/planner/types"
15+
pilosa "github.com/featurebasedb/featurebase/v3"
16+
"github.com/featurebasedb/featurebase/v3/sql3"
17+
"github.com/featurebasedb/featurebase/v3/sql3/parser"
18+
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
1919
)
2020

2121
// bulkInsertMappedColumn specifies a mapping from the source

sql3/planner/opfilter.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"context"
77
"fmt"
88

9-
"github.com/molecula/featurebase/v3/sql3"
10-
"github.com/molecula/featurebase/v3/sql3/planner/types"
9+
"github.com/featurebasedb/featurebase/v3/sql3"
10+
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
1111
)
1212

1313
// PlanOpFilter is a filter operator

sql3/planner/opgroupby.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ import (
88
"hash/maphash"
99
"log"
1010

11-
"github.com/molecula/featurebase/v3/errors"
12-
"github.com/molecula/featurebase/v3/sql3"
13-
"github.com/molecula/featurebase/v3/sql3/planner/types"
11+
"github.com/featurebasedb/featurebase/v3/errors"
12+
"github.com/featurebasedb/featurebase/v3/sql3"
13+
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
1414
)
1515

1616
// PlanOpGroupBy handles the GROUP BY clause

sql3/planner/oprelalias.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"context"
77
"fmt"
88

9-
"github.com/molecula/featurebase/v3/sql3"
10-
"github.com/molecula/featurebase/v3/sql3/planner/types"
9+
"github.com/featurebasedb/featurebase/v3/sql3"
10+
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
1111
)
1212

1313
// PlanOpRelAlias implements an alias for a relation

sql3/planner/optablevaluedfunction.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ import (
66
"context"
77
"fmt"
88

9-
"github.com/molecula/featurebase/v3/sql3"
10-
"github.com/molecula/featurebase/v3/sql3/parser"
11-
"github.com/molecula/featurebase/v3/sql3/planner/types"
9+
"github.com/featurebasedb/featurebase/v3/sql3"
10+
"github.com/featurebasedb/featurebase/v3/sql3/parser"
11+
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
1212
)
1313

1414
// PlanOpTableValuedFunction is an operator for a subquery

sql3/planner/planoptimizer.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,10 @@ import (
99
"reflect"
1010
"strings"
1111

12-
"github.com/molecula/featurebase/v3/errors"
13-
"github.com/molecula/featurebase/v3/sql3"
14-
"github.com/molecula/featurebase/v3/sql3/parser"
15-
"github.com/molecula/featurebase/v3/sql3/planner/types"
12+
"github.com/featurebasedb/featurebase/v3/errors"
13+
"github.com/featurebasedb/featurebase/v3/sql3"
14+
"github.com/featurebasedb/featurebase/v3/sql3/parser"
15+
"github.com/featurebasedb/featurebase/v3/sql3/planner/types"
1616
)
1717

1818
//TODO(pok) push order by down as far as possible

sql3/sql_defs_aggregate_test.go

+1-14
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"github.com/featurebasedb/featurebase/v3/sql3/parser"
66
)
77

8-
// aggregate function tests
8+
//aggregate function tests
99
var countTests = tableTest{
1010
table: tbl(
1111
"count_test",
@@ -50,19 +50,6 @@ var countTests = tableTest{
5050
),
5151
compare: compareExactUnordered,
5252
},
53-
{
54-
sqls: sqls(
55-
"SELECT COUNT(i1) as a, COUNT(i2) as b FROM count_test",
56-
),
57-
expHdrs: hdrs(
58-
hdr("a", fldTypeInt),
59-
hdr("b", fldTypeInt),
60-
),
61-
expRows: rows(
62-
row(int64(6), int64(2)),
63-
),
64-
compare: compareExactUnordered,
65-
},
6653
{
6754
sqls: sqls(
6855
"SELECT COUNT(*) + 10 - 11 * 2 AS count_rows FROM count_test",

stats/main_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/http"
1010
_ "net/http/pprof"
1111

12-
"github.com/molecula/featurebase/v3/testhook"
12+
"github.com/featurebasedb/featurebase/v3/testhook"
1313
)
1414

1515
func TestMain(m *testing.M) {

test/index.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ import (
66
"context"
77
"testing"
88

9-
pilosa "github.com/molecula/featurebase/v3"
10-
"github.com/molecula/featurebase/v3/testhook"
9+
pilosa "github.com/featurebasedb/featurebase/v3"
10+
"github.com/featurebasedb/featurebase/v3/testhook"
1111
)
1212

1313
// Index represents a test wrapper for pilosa.Index.

test/main_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import (
99
"net/http"
1010
_ "net/http/pprof"
1111

12-
"github.com/molecula/featurebase/v3/testhook"
12+
"github.com/featurebasedb/featurebase/v3/testhook"
1313
)
1414

1515
func TestMain(m *testing.M) {

0 commit comments

Comments
 (0)