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

Commit 5c39a49

Browse files
Fletcher Haynesfhaynes
Fletcher Haynes
authored andcommitted
Sync from private repo to commit 12d608c
1 parent 5c76ad5 commit 5c39a49

File tree

206 files changed

+732
-742
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

206 files changed

+732
-742
lines changed

api.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@ import (
2222
"sync"
2323
"time"
2424

25-
fbcontext "github.com/molecula/featurebase/v3/context"
26-
"github.com/molecula/featurebase/v3/dax"
27-
"github.com/molecula/featurebase/v3/dax/computer"
28-
"github.com/molecula/featurebase/v3/disco"
29-
"github.com/molecula/featurebase/v3/rbf"
25+
fbcontext "github.com/featurebasedb/featurebase/v3/context"
26+
"github.com/featurebasedb/featurebase/v3/dax"
27+
"github.com/featurebasedb/featurebase/v3/dax/computer"
28+
"github.com/featurebasedb/featurebase/v3/disco"
29+
"github.com/featurebasedb/featurebase/v3/rbf"
3030

3131
//"github.com/featurebasedb/featurebase/v3/pg"
3232
"github.com/featurebasedb/featurebase/v3/pql"

api_directive.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ import (
77
"log"
88
"sync"
99

10-
"github.com/molecula/featurebase/v3/dax"
11-
"github.com/molecula/featurebase/v3/dax/computer"
12-
"github.com/molecula/featurebase/v3/disco"
10+
"github.com/featurebasedb/featurebase/v3/dax"
11+
"github.com/featurebasedb/featurebase/v3/dax/computer"
12+
"github.com/featurebasedb/featurebase/v3/disco"
1313
"github.com/pkg/errors"
1414
)
1515

api_directive_test.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,10 @@ import (
44
"context"
55
"testing"
66

7-
pilosa "github.com/molecula/featurebase/v3"
8-
"github.com/molecula/featurebase/v3/dax"
9-
daxtest "github.com/molecula/featurebase/v3/dax/test"
10-
"github.com/molecula/featurebase/v3/test"
7+
pilosa "github.com/featurebasedb/featurebase/v3"
8+
"github.com/featurebasedb/featurebase/v3/dax"
9+
daxtest "github.com/featurebasedb/featurebase/v3/dax/test"
10+
"github.com/featurebasedb/featurebase/v3/test"
1111
"github.com/stretchr/testify/assert"
1212
)
1313

apply.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ import (
1616
"github.com/apache/arrow/go/v10/parquet/file"
1717
"github.com/apache/arrow/go/v10/parquet/pqarrow"
1818
"github.com/gomem/gomem/pkg/dataframe"
19-
"github.com/molecula/featurebase/v3/pql"
20-
"github.com/molecula/featurebase/v3/tracing"
21-
"github.com/molecula/featurebase/v3/vprint"
19+
"github.com/featurebasedb/featurebase/v3/pql"
20+
"github.com/featurebasedb/featurebase/v3/tracing"
21+
"github.com/featurebasedb/featurebase/v3/vprint"
2222
"github.com/pkg/errors"
2323

2424
ivy "robpike.io/ivy/arrow"

arrow.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ import (
1212
"github.com/apache/arrow/go/v10/arrow/array"
1313
"github.com/apache/arrow/go/v10/arrow/memory"
1414
"github.com/gomem/gomem/pkg/dataframe"
15-
"github.com/molecula/featurebase/v3/pql"
16-
"github.com/molecula/featurebase/v3/tracing"
15+
"github.com/featurebasedb/featurebase/v3/pql"
16+
"github.com/featurebasedb/featurebase/v3/tracing"
1717
"github.com/pkg/errors"
1818
)
1919

batch/batch.go

+6-6
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ import (
1010
"sync"
1111
"time"
1212

13-
featurebase "github.com/molecula/featurebase/v3"
14-
"github.com/molecula/featurebase/v3/batch/egpool"
15-
"github.com/molecula/featurebase/v3/dax"
16-
"github.com/molecula/featurebase/v3/logger"
17-
"github.com/molecula/featurebase/v3/pql"
18-
"github.com/molecula/featurebase/v3/roaring"
13+
featurebase "github.com/featurebasedb/featurebase/v3"
14+
"github.com/featurebasedb/featurebase/v3/batch/egpool"
15+
"github.com/featurebasedb/featurebase/v3/dax"
16+
"github.com/featurebasedb/featurebase/v3/logger"
17+
"github.com/featurebasedb/featurebase/v3/pql"
18+
"github.com/featurebasedb/featurebase/v3/roaring"
1919
"github.com/pkg/errors"
2020
)
2121

client/api.go

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ package client
33
import (
44
"context"
55

6-
featurebase "github.com/molecula/featurebase/v3"
7-
"github.com/molecula/featurebase/v3/client/types"
8-
"github.com/molecula/featurebase/v3/dax"
9-
"github.com/molecula/featurebase/v3/errors"
6+
featurebase "github.com/featurebasedb/featurebase/v3"
7+
"github.com/featurebasedb/featurebase/v3/client/types"
8+
"github.com/featurebasedb/featurebase/v3/dax"
9+
"github.com/featurebasedb/featurebase/v3/errors"
1010
)
1111

1212
var _ featurebase.SchemaAPI = &schemaAPI{}

client/client.go

+4-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
// Copyright 2022 Molecula Corp. (DBA FeatureBase).
2-
// SPDX-License-Identifier: Apache-2.0
1+
// Copyright 2021 Molecula Corp. All rights reserved.
32
// package ctl contains all pilosa subcommands other than 'server'. These are
43
// generally administration, testing, and debugging tools.
54
package client
@@ -21,25 +20,17 @@ import (
2120
"sync"
2221
"time"
2322

23+
"github.com/golang/protobuf/proto" //nolint:staticcheck
2424
pilosa "github.com/featurebasedb/featurebase/v3"
25+
"github.com/featurebasedb/featurebase/v3/client/types"
2526
fbproto "github.com/featurebasedb/featurebase/v3/encoding/proto" // TODO use this everywhere and get rid of proto import
2627
"github.com/featurebasedb/featurebase/v3/logger"
2728
pnet "github.com/featurebasedb/featurebase/v3/net"
2829
"github.com/featurebasedb/featurebase/v3/pb"
2930
"github.com/featurebasedb/featurebase/v3/pql"
3031
"github.com/featurebasedb/featurebase/v3/roaring"
3132
"github.com/featurebasedb/featurebase/v3/stats"
32-
"github.com/golang/protobuf/proto" //nolint:staticcheck
33-
pilosa "github.com/molecula/featurebase/v3"
34-
"github.com/molecula/featurebase/v3/client/types"
35-
fbproto "github.com/molecula/featurebase/v3/encoding/proto" // TODO use this everywhere and get rid of proto import
36-
"github.com/molecula/featurebase/v3/logger"
37-
pnet "github.com/molecula/featurebase/v3/net"
38-
"github.com/molecula/featurebase/v3/pb"
39-
"github.com/molecula/featurebase/v3/pql"
40-
"github.com/molecula/featurebase/v3/roaring"
41-
"github.com/molecula/featurebase/v3/stats"
42-
"github.com/molecula/featurebase/v3/vprint"
33+
"github.com/featurebasedb/featurebase/v3/vprint"
4334
"github.com/opentracing/opentracing-go"
4435
"github.com/pkg/errors"
4536
"golang.org/x/sync/errgroup"

client/client_it_test.go

+7-7
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,13 @@ import (
99
"testing"
1010
"time"
1111

12-
featurebase "github.com/molecula/featurebase/v3"
13-
client_types "github.com/molecula/featurebase/v3/client/types"
14-
"github.com/molecula/featurebase/v3/disco"
15-
pnet "github.com/molecula/featurebase/v3/net"
16-
"github.com/molecula/featurebase/v3/roaring"
17-
"github.com/molecula/featurebase/v3/shardwidth"
18-
"github.com/molecula/featurebase/v3/test"
12+
featurebase "github.com/featurebasedb/featurebase/v3"
13+
client_types "github.com/featurebasedb/featurebase/v3/client/types"
14+
"github.com/featurebasedb/featurebase/v3/disco"
15+
pnet "github.com/featurebasedb/featurebase/v3/net"
16+
"github.com/featurebasedb/featurebase/v3/roaring"
17+
"github.com/featurebasedb/featurebase/v3/shardwidth"
18+
"github.com/featurebasedb/featurebase/v3/test"
1919
"github.com/stretchr/testify/require"
2020
"golang.org/x/sync/errgroup"
2121
)

client/importer.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"context"
55
"time"
66

7-
featurebase "github.com/molecula/featurebase/v3"
8-
"github.com/molecula/featurebase/v3/dax"
9-
"github.com/molecula/featurebase/v3/roaring"
7+
featurebase "github.com/featurebasedb/featurebase/v3"
8+
"github.com/featurebasedb/featurebase/v3/dax"
9+
"github.com/featurebasedb/featurebase/v3/roaring"
1010
"github.com/pkg/errors"
1111
)
1212

client/orm.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ import (
1414
"sync"
1515
"time"
1616

17-
"github.com/molecula/featurebase/v3/client/types"
18-
"github.com/molecula/featurebase/v3/pql"
17+
"github.com/featurebasedb/featurebase/v3/client/types"
18+
"github.com/featurebasedb/featurebase/v3/pql"
1919
"github.com/pkg/errors"
2020
)
2121

client/orm_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ import (
1414
"testing"
1515
"time"
1616

17-
pilosa "github.com/molecula/featurebase/v3"
18-
clienttypes "github.com/molecula/featurebase/v3/client/types"
19-
"github.com/molecula/featurebase/v3/pql"
17+
pilosa "github.com/featurebasedb/featurebase/v3"
18+
clienttypes "github.com/featurebasedb/featurebase/v3/client/types"
19+
"github.com/featurebasedb/featurebase/v3/pql"
2020
"github.com/pkg/errors"
2121
)
2222

cluster.go

+5-5
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ import (
99
"sync"
1010
"time"
1111

12-
"github.com/molecula/featurebase/v3/dax"
13-
"github.com/molecula/featurebase/v3/dax/computer"
14-
"github.com/molecula/featurebase/v3/disco"
15-
"github.com/molecula/featurebase/v3/logger"
16-
"github.com/molecula/featurebase/v3/roaring"
12+
"github.com/featurebasedb/featurebase/v3/dax"
13+
"github.com/featurebasedb/featurebase/v3/dax/computer"
14+
"github.com/featurebasedb/featurebase/v3/disco"
15+
"github.com/featurebasedb/featurebase/v3/logger"
16+
"github.com/featurebasedb/featurebase/v3/roaring"
1717
"github.com/pkg/errors"
1818
"golang.org/x/sync/errgroup"
1919
)

cmd/auth_token.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package cmd
44

55
import (
6-
"github.com/molecula/featurebase/v3/ctl"
7-
"github.com/molecula/featurebase/v3/logger"
6+
"github.com/featurebasedb/featurebase/v3/ctl"
7+
"github.com/featurebasedb/featurebase/v3/logger"
88
"github.com/spf13/cobra"
99
)
1010

cmd/backup.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package cmd
44

55
import (
6-
"github.com/molecula/featurebase/v3/ctl"
7-
"github.com/molecula/featurebase/v3/logger"
6+
"github.com/featurebasedb/featurebase/v3/ctl"
7+
"github.com/featurebasedb/featurebase/v3/logger"
88
"github.com/spf13/cobra"
99
)
1010

cmd/backup_tar.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
package cmd
33

44
import (
5-
"github.com/molecula/featurebase/v3/ctl"
6-
"github.com/molecula/featurebase/v3/logger"
5+
"github.com/featurebasedb/featurebase/v3/ctl"
6+
"github.com/featurebasedb/featurebase/v3/logger"
77
"github.com/spf13/cobra"
88
)
99

cmd/chksum.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package cmd
44

55
import (
6-
"github.com/molecula/featurebase/v3/ctl"
7-
"github.com/molecula/featurebase/v3/logger"
6+
"github.com/featurebasedb/featurebase/v3/ctl"
7+
"github.com/featurebasedb/featurebase/v3/logger"
88
"github.com/spf13/cobra"
99
)
1010

cmd/cli.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
package cmd
33

44
import (
5-
"github.com/molecula/featurebase/v3/ctl"
6-
"github.com/molecula/featurebase/v3/logger"
5+
"github.com/featurebasedb/featurebase/v3/ctl"
6+
"github.com/featurebasedb/featurebase/v3/logger"
77
"github.com/spf13/cobra"
88
)
99

cmd/dax.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ package cmd
44
import (
55
"io"
66

7-
"github.com/molecula/featurebase/v3/ctl"
8-
"github.com/molecula/featurebase/v3/dax/server"
7+
"github.com/featurebasedb/featurebase/v3/ctl"
8+
"github.com/featurebasedb/featurebase/v3/dax/server"
99
"github.com/pkg/errors"
1010
"github.com/spf13/cobra"
1111
)

cmd/export.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package cmd
55
import (
66
"github.com/spf13/cobra"
77

8-
"github.com/molecula/featurebase/v3/ctl"
9-
"github.com/molecula/featurebase/v3/logger"
8+
"github.com/featurebasedb/featurebase/v3/ctl"
9+
"github.com/featurebasedb/featurebase/v3/logger"
1010
)
1111

1212
var Exporter *ctl.ExportCommand

cmd/generate_config.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ package cmd
55
import (
66
"github.com/spf13/cobra"
77

8-
"github.com/molecula/featurebase/v3/ctl"
9-
"github.com/molecula/featurebase/v3/logger"
8+
"github.com/featurebasedb/featurebase/v3/ctl"
9+
"github.com/featurebasedb/featurebase/v3/logger"
1010
)
1111

1212
var generateConf *ctl.GenerateConfigCommand

cmd/import.go

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

10-
pilosa "github.com/molecula/featurebase/v3"
11-
"github.com/molecula/featurebase/v3/ctl"
12-
"github.com/molecula/featurebase/v3/logger"
13-
"github.com/molecula/featurebase/v3/pql"
10+
pilosa "github.com/featurebasedb/featurebase/v3"
11+
"github.com/featurebasedb/featurebase/v3/ctl"
12+
"github.com/featurebasedb/featurebase/v3/logger"
13+
"github.com/featurebasedb/featurebase/v3/pql"
1414
"github.com/spf13/cobra"
1515
)
1616

cmd/import_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"strings"
77
"testing"
88

9-
pilosa "github.com/molecula/featurebase/v3"
9+
pilosa "github.com/featurebasedb/featurebase/v3"
1010

1111
"github.com/featurebasedb/featurebase/v3/cmd"
1212
"github.com/featurebasedb/featurebase/v3/pql"

cmd/keygen.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package cmd
44

55
import (
6-
"github.com/molecula/featurebase/v3/ctl"
7-
"github.com/molecula/featurebase/v3/logger"
6+
"github.com/featurebasedb/featurebase/v3/ctl"
7+
"github.com/featurebasedb/featurebase/v3/logger"
88
"github.com/spf13/cobra"
99
)
1010

cmd/rbf.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import (
77
"fmt"
88
"strconv"
99

10-
"github.com/molecula/featurebase/v3/ctl"
11-
"github.com/molecula/featurebase/v3/logger"
10+
"github.com/featurebasedb/featurebase/v3/ctl"
11+
"github.com/featurebasedb/featurebase/v3/logger"
1212
"github.com/spf13/cobra"
1313
)
1414

cmd/restore.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
package cmd
44

55
import (
6-
"github.com/molecula/featurebase/v3/ctl"
7-
"github.com/molecula/featurebase/v3/logger"
6+
"github.com/featurebasedb/featurebase/v3/ctl"
7+
"github.com/featurebasedb/featurebase/v3/logger"
88
"github.com/spf13/cobra"
99
)
1010

cmd/restore_tar.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
package cmd
33

44
import (
5-
"github.com/molecula/featurebase/v3/ctl"
6-
"github.com/molecula/featurebase/v3/logger"
5+
"github.com/featurebasedb/featurebase/v3/ctl"
6+
"github.com/featurebasedb/featurebase/v3/logger"
77
"github.com/spf13/cobra"
88
)
99

cmd/root.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"io"
1010
"strings"
1111

12-
pilosa "github.com/molecula/featurebase/v3"
13-
"github.com/molecula/featurebase/v3/ctl"
14-
"github.com/molecula/featurebase/v3/logger"
12+
pilosa "github.com/featurebasedb/featurebase/v3"
13+
"github.com/featurebasedb/featurebase/v3/ctl"
14+
"github.com/featurebasedb/featurebase/v3/logger"
1515
"github.com/spf13/cobra"
1616
"github.com/spf13/pflag"
1717
"github.com/spf13/viper"

cmd/root_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ import (
1111
"strings"
1212
"testing"
1313

14-
"github.com/molecula/featurebase/v3/cmd"
15-
"github.com/molecula/featurebase/v3/testhook"
14+
"github.com/featurebasedb/featurebase/v3/cmd"
15+
"github.com/featurebasedb/featurebase/v3/testhook"
1616
"github.com/spf13/cobra"
1717
)
1818

0 commit comments

Comments
 (0)