diff --git a/.goreleaser.yaml b/.goreleaser.yaml index c62e40c509..a08a2d7a65 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -5,7 +5,7 @@ builds: env: - CGO_ENABLED=0 ldflags: - - -s -X github.com/brimdata/zed/cli.version={{ .Tag }} + - -s -X github.com/brimdata/super/cli.version={{ .Tag }} goarch: - amd64 - arm64 @@ -19,7 +19,7 @@ builds: env: - CGO_ENABLED=0 ldflags: - - -s -X github.com/brimdata/zed/cli.version={{ .Tag }} + - -s -X github.com/brimdata/super/cli.version={{ .Tag }} goarch: - amd64 - arm64 @@ -46,7 +46,7 @@ brews: commit_author: name: brim-bot email: bot@brimdata.io - homepage: https://github.com/brimdata/zed + homepage: https://github.com/brimdata/super description: | A command-line tool for creating, configuring, ingesting into, querying, and orchestrating Zed data lakes. @@ -59,7 +59,7 @@ brews: commit_author: name: brim-bot email: bot@brimdata.io - homepage: https://github.com/brimdata/zed + homepage: https://github.com/brimdata/super description: | A command-line tool for processing data in diverse input formats, providing search, analytics, and extensive transormations using the Zed diff --git a/CHANGELOG.md b/CHANGELOG.md index eb654d2ebe..8153d4c05b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ * Add docs for the [`top` operator](docs/language/operators/top.md) (#5276) * Add [`fluentd` integration docs](docs/integrations/fluentd.md) (#5190, #5195) * Add a [`strftime` function](docs/language/functions/strftime.md) to format `time` values into strings (#5197, #5204) -* Add a `DATESTAMP_ISO8601` [pattern](https://raw.githubusercontent.com/brimdata/zed/main/pkg/grok/base.go) for use with the [`grok` function](docs/language/functions/grok.md) (#5232) +* Add a `DATESTAMP_ISO8601` [pattern](https://raw.githubusercontent.com/brimdata/super/main/pkg/grok/base.go) for use with the [`grok` function](docs/language/functions/grok.md) (#5232) * Fix an issue where CSV files without a final newline could not be read (#5185) * Fix an issue where comparisons against union values produced incorrect results (#5210) * Fix an issue where concurrent Zed lake operations could cause a service crash (#5279) @@ -515,7 +515,7 @@ questions. ## v0.28.0 **NOTE** - Beginning with this release, a subset of the source code in the -[github.com/brimdata/zed](https://github.com/brimdata/zed) GitHub repository is +[github.com/brimdata/super](https://github.com/brimdata/super) GitHub repository is covered by a source-available style license, the [Polyform Perimeter License (PPL)](https://polyformproject.org/licenses/perimeter/1.0.0/). We've moved the PPL-covered code under a `ppl/` directory in the repository. diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 143f6b765b..6099e88c3c 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -2,7 +2,7 @@ Thank you for contributing to `zed`! -Per common practice, please [open an issue](https://github.com/brimdata/zed/issues) +Per common practice, please [open an issue](https://github.com/brimdata/super/issues) before sending a pull request. If you think your ideas might benefit from some refinement via Q&A, come talk to us on [Slack](https://www.brimdata.io/join-slack/) as well. @@ -19,12 +19,12 @@ in [runtime/sam/expr/agg](runtime/sam/expr/agg). `zed` requires Go 1.23 or later, and uses [Go modules](https://github.com/golang/go/wiki/Modules). Compilation for 32-bit target environments is not currently supported -(see [zed/4044](https://github.com/brimdata/zed/issues/4044)). +(see [super/4044](https://github.com/brimdata/super/issues/4044)). Dependencies are specified in the [`go.mod` file](./go.mod) and fetched automatically by commands like `go build` and `go test`. No explicit fetch commands are necessary. However, you must set the environment variable `GO111MODULE=on` if your repo is at -`$GOPATH/src/github.com/brimdata/zed`. +`$GOPATH/src/github.com/brimdata/super`. When `go.mod` or its companion `go.sum` are modified during development, run `go mod tidy` and then commit the changes to both files. diff --git a/Makefile b/Makefile index f5f5b5dd84..8d0d7d4523 100644 --- a/Makefile +++ b/Makefile @@ -1,11 +1,11 @@ export GO111MODULE=on VERSION = $(shell git describe --tags --dirty --always) -LDFLAGS = -s -X github.com/brimdata/zed/cli.version=$(VERSION) +LDFLAGS = -s -X github.com/brimdata/super/cli.version=$(VERSION) BUILD_COMMANDS = ./cmd/zed ./cmd/zq ifeq "$(filter-out 386 arm mips mipsle, $(shell go env GOARCH))" "" -$(error 32-bit architectures are unsupported; see https://github.com/brimdata/zed/issues/4044) +$(error 32-bit architectures are unsupported; see https://github.com/brimdata/super/issues/4044) endif # This enables a shortcut to run a single test from the ./ztests suite, e.g.: diff --git a/README.md b/README.md index fb823385c4..8b29094845 100644 --- a/README.md +++ b/README.md @@ -103,7 +103,7 @@ We modeled this README after Philip O'Toole's brilliantly succinct [description of `rqlite`](https://github.com/rqlite/rqlite). -[tests-img]: https://github.com/brimdata/zed/workflows/Tests/badge.svg -[tests]: https://github.com/brimdata/zed/actions?query=workflow%3ATests -[gopkg-img]: https://pkg.go.dev/badge/github.com/brimdata/zed -[gopkg]: https://pkg.go.dev/github.com/brimdata/zed +[tests-img]: https://github.com/brimdata/super/workflows/Tests/badge.svg +[tests]: https://github.com/brimdata/super/actions?query=workflow%3ATests +[gopkg-img]: https://pkg.go.dev/badge/github.com/brimdata/super +[gopkg]: https://pkg.go.dev/github.com/brimdata/super diff --git a/api/api.go b/api/api.go index 74585b50ee..966b046aa3 100644 --- a/api/api.go +++ b/api/api.go @@ -3,12 +3,12 @@ package api import ( "context" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zbuf" "github.com/segmentio/ksuid" ) diff --git a/api/client/auth0/auth0.go b/api/client/auth0/auth0.go index c7a24d045e..1f51b20e6c 100644 --- a/api/client/auth0/auth0.go +++ b/api/client/auth0/auth0.go @@ -11,7 +11,7 @@ import ( "net/url" "time" - "github.com/brimdata/zed/api" + "github.com/brimdata/super/api" ) type Tokens struct { diff --git a/api/client/auth0/store.go b/api/client/auth0/store.go index 274760a8f0..33d81e6dcd 100644 --- a/api/client/auth0/store.go +++ b/api/client/auth0/store.go @@ -7,8 +7,8 @@ import ( "os" "path/filepath" - zedfs "github.com/brimdata/zed/pkg/fs" - "github.com/brimdata/zed/pkg/storage" + zedfs "github.com/brimdata/super/pkg/fs" + "github.com/brimdata/super/pkg/storage" ) const version = 1 diff --git a/api/client/connection.go b/api/client/connection.go index 16a0f19b33..0bc0e8bb69 100644 --- a/api/client/connection.go +++ b/api/client/connection.go @@ -13,16 +13,16 @@ import ( "strings" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/client/auth0" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/branches" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/runtime/exec" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/client/auth0" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/branches" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/runtime/exec" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/api/client/connection_test.go b/api/client/connection_test.go index 3e8518ac4d..1c1bdb42c7 100644 --- a/api/client/connection_test.go +++ b/api/client/connection_test.go @@ -10,9 +10,9 @@ import ( "strings" "testing" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/client/auth0" - "github.com/brimdata/zed/zngbytes" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/client/auth0" + "github.com/brimdata/super/zngbytes" "github.com/segmentio/ksuid" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/api/client/events.go b/api/client/events.go index 12514e8b70..ac6d3fee4a 100644 --- a/api/client/events.go +++ b/api/client/events.go @@ -4,8 +4,8 @@ import ( "fmt" "io" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/api" + "github.com/brimdata/super/zson" ) type EventsClient struct { diff --git a/api/client/request.go b/api/client/request.go index 25eb8caa62..dc3bfb4e57 100644 --- a/api/client/request.go +++ b/api/client/request.go @@ -9,10 +9,10 @@ import ( "net/http/httptrace" "time" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/api" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) type Request struct { diff --git a/api/queryio/client.go b/api/queryio/client.go index df99797bf8..92eb9ddccd 100644 --- a/api/queryio/client.go +++ b/api/queryio/client.go @@ -6,11 +6,11 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) type scanner struct { diff --git a/api/queryio/unmarshal.go b/api/queryio/unmarshal.go index ee22e90f50..e54a520184 100644 --- a/api/queryio/unmarshal.go +++ b/api/queryio/unmarshal.go @@ -1,8 +1,8 @@ package queryio import ( - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/api" + "github.com/brimdata/super/zson" ) var unmarshaler *zson.UnmarshalZNGContext diff --git a/api/queryio/writer.go b/api/queryio/writer.go index e3a603fd48..a5a1343322 100644 --- a/api/queryio/writer.go +++ b/api/queryio/writer.go @@ -4,12 +4,12 @@ import ( "io" "net/http" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" - "github.com/brimdata/zed/zio/jsonio" + "github.com/brimdata/super/api" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" + "github.com/brimdata/super/zio/jsonio" ) type controlWriter interface { diff --git a/api/queryio/zjson.go b/api/queryio/zjson.go index 899c5678ef..3f9acc3517 100644 --- a/api/queryio/zjson.go +++ b/api/queryio/zjson.go @@ -5,9 +5,9 @@ import ( "io" "reflect" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zjsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zjsonio" ) type ZJSONWriter struct { diff --git a/api/queryio/zjson_test.go b/api/queryio/zjson_test.go index 17bc8cec60..6970fefc37 100644 --- a/api/queryio/zjson_test.go +++ b/api/queryio/zjson_test.go @@ -4,10 +4,10 @@ import ( "bytes" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/queryio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/queryio" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/api/queryio/zng.go b/api/queryio/zng.go index 1b24c9a929..49e0ff3b5d 100644 --- a/api/queryio/zng.go +++ b/api/queryio/zng.go @@ -4,10 +4,10 @@ import ( "bytes" "io" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zio/zsonio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zio/zsonio" + "github.com/brimdata/super/zson" ) type ZNGWriter struct { diff --git a/cli/cacheflags/flags.go b/cli/cacheflags/flags.go index 7426816728..c531f785ca 100644 --- a/cli/cacheflags/flags.go +++ b/cli/cacheflags/flags.go @@ -4,8 +4,8 @@ import ( "flag" "time" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/pkg/storage/cache" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/pkg/storage/cache" "github.com/go-redis/redis/v8" "github.com/prometheus/client_golang/prometheus" ) diff --git a/cli/commitflags/flags.go b/cli/commitflags/flags.go index b1e0217631..d7c94aa20f 100644 --- a/cli/commitflags/flags.go +++ b/cli/commitflags/flags.go @@ -5,7 +5,7 @@ import ( "os" "os/user" - "github.com/brimdata/zed/api" + "github.com/brimdata/super/api" ) func username() string { diff --git a/cli/inputflags/flags.go b/cli/inputflags/flags.go index 61f0f3ba15..310558d19b 100644 --- a/cli/inputflags/flags.go +++ b/cli/inputflags/flags.go @@ -7,13 +7,13 @@ import ( "fmt" "os" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/auto" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/auto" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" + "github.com/brimdata/super/zio/zngio" ) type Flags struct { diff --git a/cli/lakeflags/flags.go b/cli/lakeflags/flags.go index e7f63f76f8..d3917ad526 100644 --- a/cli/lakeflags/flags.go +++ b/cli/lakeflags/flags.go @@ -9,11 +9,11 @@ import ( "path/filepath" "strings" - "github.com/brimdata/zed/api/client" - "github.com/brimdata/zed/api/client/auth0" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/api/client" + "github.com/brimdata/super/api/client/auth0" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/pkg/storage" "go.uber.org/zap" ) diff --git a/cli/logflags/flags.go b/cli/logflags/flags.go index ebec060998..80337175e9 100644 --- a/cli/logflags/flags.go +++ b/cli/logflags/flags.go @@ -3,7 +3,7 @@ package logflags import ( "flag" - "github.com/brimdata/zed/service/logger" + "github.com/brimdata/super/service/logger" "go.uber.org/zap" ) diff --git a/cli/outputflags/flags.go b/cli/outputflags/flags.go index 3fab905e3e..1981387d17 100644 --- a/cli/outputflags/flags.go +++ b/cli/outputflags/flags.go @@ -8,15 +8,15 @@ import ( "os" "regexp" - "github.com/brimdata/zed/cli/auto" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/pkg/terminal" - "github.com/brimdata/zed/pkg/terminal/color" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" - "github.com/brimdata/zed/zio/emitter" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super/cli/auto" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/pkg/terminal" + "github.com/brimdata/super/pkg/terminal/color" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" + "github.com/brimdata/super/zio/emitter" + "github.com/brimdata/super/zio/zngio" ) type Flags struct { diff --git a/cli/poolflags/flags.go b/cli/poolflags/flags.go index 88c7d08be8..0be65d4aa8 100644 --- a/cli/poolflags/flags.go +++ b/cli/poolflags/flags.go @@ -4,7 +4,7 @@ import ( "errors" "flag" - "github.com/brimdata/zed/lakeparse" + "github.com/brimdata/super/lakeparse" ) type Flags struct { diff --git a/cli/queryflags/flags.go b/cli/queryflags/flags.go index c358dca6c8..27f466b644 100644 --- a/cli/queryflags/flags.go +++ b/cli/queryflags/flags.go @@ -10,15 +10,15 @@ import ( "slices" "strings" - "github.com/brimdata/zed/cli" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/compiler/semantic" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/cli" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/compiler/semantic" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zson" ) type Flags struct { diff --git a/cli/runtimeflags/flags.go b/cli/runtimeflags/flags.go index 0d8fa20013..121df8cbee 100644 --- a/cli/runtimeflags/flags.go +++ b/cli/runtimeflags/flags.go @@ -4,10 +4,10 @@ import ( "errors" "flag" - "github.com/brimdata/zed/cli/auto" - "github.com/brimdata/zed/runtime/sam/expr/agg" - "github.com/brimdata/zed/runtime/sam/op/fuse" - "github.com/brimdata/zed/runtime/sam/op/sort" + "github.com/brimdata/super/cli/auto" + "github.com/brimdata/super/runtime/sam/expr/agg" + "github.com/brimdata/super/runtime/sam/op/fuse" + "github.com/brimdata/super/runtime/sam/op/sort" "github.com/pbnjay/memory" ) diff --git a/cli/zq/command.go b/cli/zq/command.go index 60c2b2120c..ee6e066059 100644 --- a/cli/zq/command.go +++ b/cli/zq/command.go @@ -5,20 +5,20 @@ import ( "fmt" "os" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli" - "github.com/brimdata/zed/cli/inputflags" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cli/queryflags" - "github.com/brimdata/zed/cli/runtimeflags" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zfmt" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zsonio" + zed "github.com/brimdata/super" + "github.com/brimdata/super/cli" + "github.com/brimdata/super/cli/inputflags" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cli/queryflags" + "github.com/brimdata/super/cli/runtimeflags" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zfmt" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zsonio" ) var Cmd = &charm.Spec{ @@ -36,7 +36,7 @@ Output is written to one or more files or to standard output. A Zed query is comprised of one or more operators interconnected into a pipeline using the Unix pipe character "|". -See https://github.com/brimdata/zed/tree/main/docs/language +See https://github.com/brimdata/super/tree/main/docs/language for details. Supported input formats include CSV, JSON, NDJSON, Parquet, @@ -88,8 +88,7 @@ by converting your data to the efficient binary form of Zed called ZNG, e.g., zq fast.zng ... -Please see https://github.com/brimdata/zq and -https://github.com/brimdata/zed for more information. +Please see https://github.com/brimdata/super for more information. `, New: New, } diff --git a/cmd/gentoken/main.go b/cmd/gentoken/main.go index 3b40dd3b3c..cc9fe68749 100644 --- a/cmd/gentoken/main.go +++ b/cmd/gentoken/main.go @@ -7,8 +7,8 @@ import ( "os" "time" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/service/auth" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/service/auth" ) var CLI = &charm.Spec{ diff --git a/cmd/zc/main.go b/cmd/zc/main.go index df38f55799..53d70760ba 100644 --- a/cmd/zc/main.go +++ b/cmd/zc/main.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "github.com/brimdata/zed/cmd/zed/dev/compile" - "github.com/brimdata/zed/cmd/zed/root" + "github.com/brimdata/super/cmd/zed/dev/compile" + "github.com/brimdata/super/cmd/zed/root" ) func main() { diff --git a/cmd/zed/auth/command.go b/cmd/zed/auth/command.go index f04f280849..27bd251ffb 100644 --- a/cmd/zed/auth/command.go +++ b/cmd/zed/auth/command.go @@ -3,8 +3,8 @@ package auth import ( "flag" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/auth/login.go b/cmd/zed/auth/login.go index 19fe3daf43..3456e85820 100644 --- a/cmd/zed/auth/login.go +++ b/cmd/zed/auth/login.go @@ -5,9 +5,9 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/client/auth0" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/client/auth0" + "github.com/brimdata/super/pkg/charm" "github.com/pkg/browser" ) diff --git a/cmd/zed/auth/logout.go b/cmd/zed/auth/logout.go index 81f41f0f13..cea383cacd 100644 --- a/cmd/zed/auth/logout.go +++ b/cmd/zed/auth/logout.go @@ -5,7 +5,7 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/pkg/charm" ) var Logout = &charm.Spec{ diff --git a/cmd/zed/auth/method.go b/cmd/zed/auth/method.go index 352ee05b47..e4bcf95606 100644 --- a/cmd/zed/auth/method.go +++ b/cmd/zed/auth/method.go @@ -6,7 +6,7 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/pkg/charm" ) var Method = &charm.Spec{ diff --git a/cmd/zed/auth/store.go b/cmd/zed/auth/store.go index 9c41e7acd9..2fa019d97d 100644 --- a/cmd/zed/auth/store.go +++ b/cmd/zed/auth/store.go @@ -5,8 +5,8 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/api/client/auth0" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/api/client/auth0" + "github.com/brimdata/super/pkg/charm" ) var Store = &charm.Spec{ diff --git a/cmd/zed/auth/verify.go b/cmd/zed/auth/verify.go index eb5ff9cf4a..a95cb16141 100644 --- a/cmd/zed/auth/verify.go +++ b/cmd/zed/auth/verify.go @@ -6,7 +6,7 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/pkg/charm" ) var Verify = &charm.Spec{ diff --git a/cmd/zed/branch/command.go b/cmd/zed/branch/command.go index 8e82277453..d3cad8815c 100644 --- a/cmd/zed/branch/command.go +++ b/cmd/zed/branch/command.go @@ -6,14 +6,14 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zbuf" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/compact/command.go b/cmd/zed/compact/command.go index ba205eaeeb..ccc8b051db 100644 --- a/cmd/zed/compact/command.go +++ b/cmd/zed/compact/command.go @@ -4,11 +4,11 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/commitflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli/commitflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/create/command.go b/cmd/zed/create/command.go index 2b83a4113f..eab59b9645 100644 --- a/cmd/zed/create/command.go +++ b/cmd/zed/create/command.go @@ -5,12 +5,12 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/units" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/units" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/delete/command.go b/cmd/zed/delete/command.go index e6a4422a16..ae2dbaadb8 100644 --- a/cmd/zed/delete/command.go +++ b/cmd/zed/delete/command.go @@ -6,13 +6,13 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/commitflags" - "github.com/brimdata/zed/cli/lakeflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli/commitflags" + "github.com/brimdata/super/cli/lakeflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/charm" "github.com/segmentio/ksuid" ) diff --git a/cmd/zed/dev/command.go b/cmd/zed/dev/command.go index bdefc5d69b..13df82540f 100644 --- a/cmd/zed/dev/command.go +++ b/cmd/zed/dev/command.go @@ -3,8 +3,8 @@ package dev import ( "flag" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/dev/compile/command.go b/cmd/zed/dev/compile/command.go index da0ebe6f62..2dfad93615 100644 --- a/cmd/zed/dev/compile/command.go +++ b/cmd/zed/dev/compile/command.go @@ -7,18 +7,18 @@ import ( "fmt" "strings" - "github.com/brimdata/zed/cmd/zed/dev" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/describe" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zfmt" + "github.com/brimdata/super/cmd/zed/dev" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/describe" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zfmt" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/dev/dig/command.go b/cmd/zed/dev/dig/command.go index f17eb7bdb9..95cc7abc13 100644 --- a/cmd/zed/dev/dig/command.go +++ b/cmd/zed/dev/dig/command.go @@ -3,9 +3,9 @@ package dig import ( "flag" - "github.com/brimdata/zed/cmd/zed/dev" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cmd/zed/dev" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/dev/dig/frames/command.go b/cmd/zed/dev/dig/frames/command.go index 7f248721c1..b0039ffd02 100644 --- a/cmd/zed/dev/dig/frames/command.go +++ b/cmd/zed/dev/dig/frames/command.go @@ -8,14 +8,14 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cmd/zed/dev/dig" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cmd/zed/dev/dig" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" ) var Frames = &charm.Spec{ diff --git a/cmd/zed/dev/dig/slice/command.go b/cmd/zed/dev/dig/slice/command.go index d6d6906598..67aaa39028 100644 --- a/cmd/zed/dev/dig/slice/command.go +++ b/cmd/zed/dev/dig/slice/command.go @@ -8,13 +8,13 @@ import ( "strconv" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cmd/zed/dev/dig" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cmd/zed/dev/dig" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" ) var Slice = &charm.Spec{ diff --git a/cmd/zed/dev/vector/agg/command.go b/cmd/zed/dev/vector/agg/command.go index fd167c1b07..d728dfd697 100644 --- a/cmd/zed/dev/vector/agg/command.go +++ b/cmd/zed/dev/vector/agg/command.go @@ -4,17 +4,17 @@ import ( "errors" "flag" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cmd/zed/dev/vector" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime/vam" - "github.com/brimdata/zed/runtime/vam/op" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cmd/zed/dev/vector" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime/vam" + "github.com/brimdata/super/runtime/vam/op" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" "github.com/segmentio/ksuid" ) diff --git a/cmd/zed/dev/vector/command.go b/cmd/zed/dev/vector/command.go index ea64f3cc93..85cc63fa2b 100644 --- a/cmd/zed/dev/vector/command.go +++ b/cmd/zed/dev/vector/command.go @@ -3,9 +3,9 @@ package vector import ( "flag" - "github.com/brimdata/zed/cmd/zed/dev" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cmd/zed/dev" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/dev/vector/copy/command.go b/cmd/zed/dev/vector/copy/command.go index a8b5633525..535802f343 100644 --- a/cmd/zed/dev/vector/copy/command.go +++ b/cmd/zed/dev/vector/copy/command.go @@ -4,15 +4,15 @@ import ( "errors" "flag" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cmd/zed/dev/vector" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime/vam" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cmd/zed/dev/vector" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime/vam" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/zbuf" ) var Copy = &charm.Spec{ diff --git a/cmd/zed/dev/vector/project/command.go b/cmd/zed/dev/vector/project/command.go index 935c6c1e01..0df86bf786 100644 --- a/cmd/zed/dev/vector/project/command.go +++ b/cmd/zed/dev/vector/project/command.go @@ -4,16 +4,16 @@ import ( "errors" "flag" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cmd/zed/dev/vector" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime/vam" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cmd/zed/dev/vector" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime/vam" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/zbuf" "github.com/segmentio/ksuid" ) diff --git a/cmd/zed/dev/vector/query/command.go b/cmd/zed/dev/vector/query/command.go index 1fd42e7ff4..bb95fb4463 100644 --- a/cmd/zed/dev/vector/query/command.go +++ b/cmd/zed/dev/vector/query/command.go @@ -4,17 +4,17 @@ import ( "errors" "flag" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cmd/zed/dev/vector" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cmd/zed/dev/vector" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" "github.com/segmentio/ksuid" ) diff --git a/cmd/zed/dev/vector/search/command.go b/cmd/zed/dev/vector/search/command.go index 7bfdd66552..e2ba69e37a 100644 --- a/cmd/zed/dev/vector/search/command.go +++ b/cmd/zed/dev/vector/search/command.go @@ -4,17 +4,17 @@ import ( "errors" "flag" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cli/poolflags" - devvector "github.com/brimdata/zed/cmd/zed/dev/vector" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cli/poolflags" + devvector "github.com/brimdata/super/cmd/zed/dev/vector" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zbuf" ) var search = &charm.Spec{ diff --git a/cmd/zed/dev/vng/command.go b/cmd/zed/dev/vng/command.go index 7b74350d3d..8bdf1b3347 100644 --- a/cmd/zed/dev/vng/command.go +++ b/cmd/zed/dev/vng/command.go @@ -7,16 +7,16 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cmd/zed/dev" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/vng" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cmd/zed/dev" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/vng" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/drop/command.go b/cmd/zed/drop/command.go index 95cefcccd6..34c543953e 100644 --- a/cmd/zed/drop/command.go +++ b/cmd/zed/drop/command.go @@ -6,8 +6,8 @@ import ( "fmt" "strings" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/init/command.go b/cmd/zed/init/command.go index 16a4462574..b1872d9371 100644 --- a/cmd/zed/init/command.go +++ b/cmd/zed/init/command.go @@ -5,10 +5,10 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" "go.uber.org/zap" ) diff --git a/cmd/zed/internal/lakemanage/branch.go b/cmd/zed/internal/lakemanage/branch.go index 975a390875..cd98eccf34 100644 --- a/cmd/zed/internal/lakemanage/branch.go +++ b/cmd/zed/internal/lakemanage/branch.go @@ -3,10 +3,10 @@ package lakemanage import ( "context" - "github.com/brimdata/zed/api" - lakeapi "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/lakeparse" + "github.com/brimdata/super/api" + lakeapi "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/lakeparse" "github.com/segmentio/ksuid" "go.uber.org/zap" "golang.org/x/sync/errgroup" diff --git a/cmd/zed/internal/lakemanage/config.go b/cmd/zed/internal/lakemanage/config.go index d20851d7e0..0e506be313 100644 --- a/cmd/zed/internal/lakemanage/config.go +++ b/cmd/zed/internal/lakemanage/config.go @@ -3,7 +3,7 @@ package lakemanage import ( "time" - "github.com/brimdata/zed/lake/pools" + "github.com/brimdata/super/lake/pools" ) const DefaultInterval = time.Minute diff --git a/cmd/zed/internal/lakemanage/manage.go b/cmd/zed/internal/lakemanage/manage.go index bd53f92774..584f5190b6 100644 --- a/cmd/zed/internal/lakemanage/manage.go +++ b/cmd/zed/internal/lakemanage/manage.go @@ -7,10 +7,10 @@ import ( "syscall" "time" - "github.com/brimdata/zed/api/client" - lakeapi "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/lakeparse" + "github.com/brimdata/super/api/client" + lakeapi "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/lakeparse" "github.com/segmentio/ksuid" "go.uber.org/zap" "golang.org/x/sync/errgroup" diff --git a/cmd/zed/internal/lakemanage/scan.go b/cmd/zed/internal/lakemanage/scan.go index 5a75c7c231..5c1c6ea868 100644 --- a/cmd/zed/internal/lakemanage/scan.go +++ b/cmd/zed/internal/lakemanage/scan.go @@ -4,17 +4,17 @@ import ( "context" "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/expr/extent" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/expr/extent" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/cmd/zed/load/command.go b/cmd/zed/load/command.go index 910d81d3db..af9e671a11 100644 --- a/cmd/zed/load/command.go +++ b/cmd/zed/load/command.go @@ -10,18 +10,18 @@ import ( "sync/atomic" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/commitflags" - "github.com/brimdata/zed/cli/inputflags" - "github.com/brimdata/zed/cli/lakeflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cli/runtimeflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/display" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/pkg/units" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/commitflags" + "github.com/brimdata/super/cli/inputflags" + "github.com/brimdata/super/cli/lakeflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cli/runtimeflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/display" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/pkg/units" + "github.com/brimdata/super/zio" "github.com/paulbellamy/ratecounter" "golang.org/x/term" ) diff --git a/cmd/zed/log/command.go b/cmd/zed/log/command.go index fd9f42bc23..66ed63dbf5 100644 --- a/cmd/zed/log/command.go +++ b/cmd/zed/log/command.go @@ -4,13 +4,13 @@ import ( "errors" "flag" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zbuf" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/ls/command.go b/cmd/zed/ls/command.go index 769f469e21..83e2c32b93 100644 --- a/cmd/zed/ls/command.go +++ b/cmd/zed/ls/command.go @@ -6,11 +6,11 @@ import ( "fmt" "strings" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zbuf" "github.com/segmentio/ksuid" ) diff --git a/cmd/zed/main.go b/cmd/zed/main.go index a8cec84895..00d1fd508f 100644 --- a/cmd/zed/main.go +++ b/cmd/zed/main.go @@ -4,37 +4,37 @@ import ( "fmt" "os" - "github.com/brimdata/zed/cmd/zed/auth" - "github.com/brimdata/zed/cmd/zed/branch" - "github.com/brimdata/zed/cmd/zed/compact" - "github.com/brimdata/zed/cmd/zed/create" - zeddelete "github.com/brimdata/zed/cmd/zed/delete" - "github.com/brimdata/zed/cmd/zed/dev" - _ "github.com/brimdata/zed/cmd/zed/dev/compile" - _ "github.com/brimdata/zed/cmd/zed/dev/dig/frames" - _ "github.com/brimdata/zed/cmd/zed/dev/dig/slice" - _ "github.com/brimdata/zed/cmd/zed/dev/vector/agg" - _ "github.com/brimdata/zed/cmd/zed/dev/vector/copy" - _ "github.com/brimdata/zed/cmd/zed/dev/vector/project" - _ "github.com/brimdata/zed/cmd/zed/dev/vector/query" - _ "github.com/brimdata/zed/cmd/zed/dev/vector/search" - _ "github.com/brimdata/zed/cmd/zed/dev/vng" - "github.com/brimdata/zed/cmd/zed/drop" - zedinit "github.com/brimdata/zed/cmd/zed/init" - "github.com/brimdata/zed/cmd/zed/load" - "github.com/brimdata/zed/cmd/zed/log" - "github.com/brimdata/zed/cmd/zed/ls" - "github.com/brimdata/zed/cmd/zed/manage" - "github.com/brimdata/zed/cmd/zed/merge" - "github.com/brimdata/zed/cmd/zed/query" - "github.com/brimdata/zed/cmd/zed/rename" - "github.com/brimdata/zed/cmd/zed/revert" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/cmd/zed/serve" - "github.com/brimdata/zed/cmd/zed/use" - "github.com/brimdata/zed/cmd/zed/vacate" - "github.com/brimdata/zed/cmd/zed/vacuum" - "github.com/brimdata/zed/cmd/zed/vector" + "github.com/brimdata/super/cmd/zed/auth" + "github.com/brimdata/super/cmd/zed/branch" + "github.com/brimdata/super/cmd/zed/compact" + "github.com/brimdata/super/cmd/zed/create" + zeddelete "github.com/brimdata/super/cmd/zed/delete" + "github.com/brimdata/super/cmd/zed/dev" + _ "github.com/brimdata/super/cmd/zed/dev/compile" + _ "github.com/brimdata/super/cmd/zed/dev/dig/frames" + _ "github.com/brimdata/super/cmd/zed/dev/dig/slice" + _ "github.com/brimdata/super/cmd/zed/dev/vector/agg" + _ "github.com/brimdata/super/cmd/zed/dev/vector/copy" + _ "github.com/brimdata/super/cmd/zed/dev/vector/project" + _ "github.com/brimdata/super/cmd/zed/dev/vector/query" + _ "github.com/brimdata/super/cmd/zed/dev/vector/search" + _ "github.com/brimdata/super/cmd/zed/dev/vng" + "github.com/brimdata/super/cmd/zed/drop" + zedinit "github.com/brimdata/super/cmd/zed/init" + "github.com/brimdata/super/cmd/zed/load" + "github.com/brimdata/super/cmd/zed/log" + "github.com/brimdata/super/cmd/zed/ls" + "github.com/brimdata/super/cmd/zed/manage" + "github.com/brimdata/super/cmd/zed/merge" + "github.com/brimdata/super/cmd/zed/query" + "github.com/brimdata/super/cmd/zed/rename" + "github.com/brimdata/super/cmd/zed/revert" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/cmd/zed/serve" + "github.com/brimdata/super/cmd/zed/use" + "github.com/brimdata/super/cmd/zed/vacate" + "github.com/brimdata/super/cmd/zed/vacuum" + "github.com/brimdata/super/cmd/zed/vector" ) func main() { diff --git a/cmd/zed/manage/command.go b/cmd/zed/manage/command.go index 6147486a70..68d0c767f8 100644 --- a/cmd/zed/manage/command.go +++ b/cmd/zed/manage/command.go @@ -6,11 +6,11 @@ import ( "flag" "os" - "github.com/brimdata/zed/cli/lakeflags" - "github.com/brimdata/zed/cli/logflags" - "github.com/brimdata/zed/cmd/zed/internal/lakemanage" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli/lakeflags" + "github.com/brimdata/super/cli/logflags" + "github.com/brimdata/super/cmd/zed/internal/lakemanage" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" "go.uber.org/zap" "gopkg.in/yaml.v3" ) diff --git a/cmd/zed/merge/command.go b/cmd/zed/merge/command.go index ec1520f8d8..985aa1baac 100644 --- a/cmd/zed/merge/command.go +++ b/cmd/zed/merge/command.go @@ -5,11 +5,11 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/commitflags" - "github.com/brimdata/zed/cli/lakeflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli/commitflags" + "github.com/brimdata/super/cli/lakeflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/query/command.go b/cmd/zed/query/command.go index 0a79c070f7..67b64884b6 100644 --- a/cmd/zed/query/command.go +++ b/cmd/zed/query/command.go @@ -4,16 +4,16 @@ import ( "flag" "os" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cli/queryflags" - "github.com/brimdata/zed/cli/runtimeflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cli/queryflags" + "github.com/brimdata/super/cli/runtimeflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zsonio" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/rename/command.go b/cmd/zed/rename/command.go index 16334c729c..c885e47419 100644 --- a/cmd/zed/rename/command.go +++ b/cmd/zed/rename/command.go @@ -5,8 +5,8 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/revert/command.go b/cmd/zed/revert/command.go index 1efb89ea36..d1c1f78c7b 100644 --- a/cmd/zed/revert/command.go +++ b/cmd/zed/revert/command.go @@ -5,12 +5,12 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/commitflags" - "github.com/brimdata/zed/cli/lakeflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli/commitflags" + "github.com/brimdata/super/cli/lakeflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/root/command.go b/cmd/zed/root/command.go index f5a23b4698..2d0e0d1f35 100644 --- a/cmd/zed/root/command.go +++ b/cmd/zed/root/command.go @@ -3,9 +3,9 @@ package root import ( "flag" - "github.com/brimdata/zed/cli" - "github.com/brimdata/zed/cli/lakeflags" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli" + "github.com/brimdata/super/cli/lakeflags" + "github.com/brimdata/super/pkg/charm" ) var Zed = &charm.Spec{ diff --git a/cmd/zed/serve/command.go b/cmd/zed/serve/command.go index 0a9a1bf1d9..04e5482ed3 100644 --- a/cmd/zed/serve/command.go +++ b/cmd/zed/serve/command.go @@ -11,16 +11,16 @@ import ( "syscall" "time" - "github.com/brimdata/zed/api/client" - "github.com/brimdata/zed/cli" - "github.com/brimdata/zed/cli/logflags" - "github.com/brimdata/zed/cmd/zed/internal/lakemanage" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/fs" - "github.com/brimdata/zed/pkg/httpd" - "github.com/brimdata/zed/service" + "github.com/brimdata/super/api/client" + "github.com/brimdata/super/cli" + "github.com/brimdata/super/cli/logflags" + "github.com/brimdata/super/cmd/zed/internal/lakemanage" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/fs" + "github.com/brimdata/super/pkg/httpd" + "github.com/brimdata/super/service" "go.uber.org/zap" "golang.org/x/sync/errgroup" ) diff --git a/cmd/zed/use/command.go b/cmd/zed/use/command.go index 2bbb5c80c9..c4de90793f 100644 --- a/cmd/zed/use/command.go +++ b/cmd/zed/use/command.go @@ -5,10 +5,10 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/vacate/command.go b/cmd/zed/vacate/command.go index 23e79387d4..61e5f070a2 100644 --- a/cmd/zed/vacate/command.go +++ b/cmd/zed/vacate/command.go @@ -4,8 +4,8 @@ import ( "errors" "flag" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/vacuum/command.go b/cmd/zed/vacuum/command.go index 3746e18286..c0fc068d28 100644 --- a/cmd/zed/vacuum/command.go +++ b/cmd/zed/vacuum/command.go @@ -6,10 +6,10 @@ import ( "fmt" "strings" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/plural" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/plural" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/vector/add.go b/cmd/zed/vector/add.go index 50a31a14d4..19b0602cc2 100644 --- a/cmd/zed/vector/add.go +++ b/cmd/zed/vector/add.go @@ -4,10 +4,10 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/commitflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli/commitflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/charm" ) var add = &charm.Spec{ diff --git a/cmd/zed/vector/command.go b/cmd/zed/vector/command.go index ca8715f92c..aea39a298a 100644 --- a/cmd/zed/vector/command.go +++ b/cmd/zed/vector/command.go @@ -3,8 +3,8 @@ package vector import ( "flag" - "github.com/brimdata/zed/cmd/zed/root" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cmd/zed/root" + "github.com/brimdata/super/pkg/charm" ) var Cmd = &charm.Spec{ diff --git a/cmd/zed/vector/delete.go b/cmd/zed/vector/delete.go index 3ba0904964..abde8249b6 100644 --- a/cmd/zed/vector/delete.go +++ b/cmd/zed/vector/delete.go @@ -4,10 +4,10 @@ import ( "flag" "fmt" - "github.com/brimdata/zed/cli/commitflags" - "github.com/brimdata/zed/cli/poolflags" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/charm" + "github.com/brimdata/super/cli/commitflags" + "github.com/brimdata/super/cli/poolflags" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/charm" ) var del = &charm.Spec{ diff --git a/cmd/zq/main.go b/cmd/zq/main.go index a4fc36bafd..eaf461280c 100644 --- a/cmd/zq/main.go +++ b/cmd/zq/main.go @@ -4,7 +4,7 @@ import ( "fmt" "os" - "github.com/brimdata/zed/cli/zq" + "github.com/brimdata/super/cli/zq" ) func main() { diff --git a/compiler/ast/ast.go b/compiler/ast/ast.go index 9ad4f8def6..dbbac9351b 100644 --- a/compiler/ast/ast.go +++ b/compiler/ast/ast.go @@ -3,8 +3,8 @@ package ast import ( - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/pkg/field" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/pkg/field" ) // This module is derived from the GO AST design pattern in diff --git a/compiler/ast/dag/expr.go b/compiler/ast/dag/expr.go index dadebfc946..a824a970fc 100644 --- a/compiler/ast/dag/expr.go +++ b/compiler/ast/dag/expr.go @@ -1,6 +1,6 @@ package dag -import "github.com/brimdata/zed/order" +import "github.com/brimdata/super/order" type ( Expr interface { diff --git a/compiler/ast/dag/op.go b/compiler/ast/dag/op.go index accdfcad85..92e8fce9fc 100644 --- a/compiler/ast/dag/op.go +++ b/compiler/ast/dag/op.go @@ -10,8 +10,8 @@ package dag import ( "slices" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" "github.com/segmentio/ksuid" ) diff --git a/compiler/ast/dag/unpack.go b/compiler/ast/dag/unpack.go index 197b305b51..76d105da6f 100644 --- a/compiler/ast/dag/unpack.go +++ b/compiler/ast/dag/unpack.go @@ -3,7 +3,7 @@ package dag import ( "fmt" - "github.com/brimdata/zed/pkg/unpack" + "github.com/brimdata/super/pkg/unpack" ) var unpacker = unpack.New( diff --git a/compiler/ast/unpack.go b/compiler/ast/unpack.go index 86420dee0e..de43a5a147 100644 --- a/compiler/ast/unpack.go +++ b/compiler/ast/unpack.go @@ -4,8 +4,8 @@ import ( "encoding/json" "fmt" - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/pkg/unpack" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/pkg/unpack" ) var unpacker = unpack.New( diff --git a/compiler/data/source.go b/compiler/data/source.go index c244d06a46..c9d0cb365e 100644 --- a/compiler/data/source.go +++ b/compiler/data/source.go @@ -6,15 +6,15 @@ import ( "io" "net/http" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio/anyio" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio/anyio" "github.com/segmentio/ksuid" ) diff --git a/compiler/describe/analyze.go b/compiler/describe/analyze.go index fc4ad8cc85..19cc2626e9 100644 --- a/compiler/describe/analyze.go +++ b/compiler/describe/analyze.go @@ -4,15 +4,15 @@ import ( "context" "fmt" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/optimizer" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/compiler/semantic" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/optimizer" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/compiler/semantic" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" "github.com/segmentio/ksuid" ) diff --git a/compiler/file.go b/compiler/file.go index aab017f7fd..fbb5fb7687 100644 --- a/compiler/file.go +++ b/compiler/file.go @@ -3,13 +3,13 @@ package compiler import ( "errors" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/exec" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/exec" + "github.com/brimdata/super/zio" ) type fsCompiler struct { diff --git a/compiler/job.go b/compiler/job.go index f3d246138f..8a2652f104 100644 --- a/compiler/job.go +++ b/compiler/job.go @@ -3,21 +3,21 @@ package compiler import ( "errors" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/kernel" - "github.com/brimdata/zed/compiler/optimizer" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/compiler/semantic" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/runtime/vam" - vamop "github.com/brimdata/zed/runtime/vam/op" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/kernel" + "github.com/brimdata/super/compiler/optimizer" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/compiler/semantic" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/runtime/vam" + vamop "github.com/brimdata/super/runtime/vam/op" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" ) type Job struct { diff --git a/compiler/kernel/bufferfilter.go b/compiler/kernel/bufferfilter.go index 29fd347ffd..3d56e1c4a1 100644 --- a/compiler/kernel/bufferfilter.go +++ b/compiler/kernel/bufferfilter.go @@ -1,10 +1,10 @@ package kernel import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zson" "golang.org/x/text/unicode/norm" ) diff --git a/compiler/kernel/expr.go b/compiler/kernel/expr.go index 6040578190..fa28b8c25b 100644 --- a/compiler/kernel/expr.go +++ b/compiler/kernel/expr.go @@ -4,15 +4,15 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/expr/function" - "github.com/brimdata/zed/runtime/sam/op/combine" - "github.com/brimdata/zed/runtime/sam/op/traverse" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/expr/function" + "github.com/brimdata/super/runtime/sam/op/combine" + "github.com/brimdata/super/runtime/sam/op/traverse" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zson" "golang.org/x/text/unicode/norm" ) diff --git a/compiler/kernel/filter.go b/compiler/kernel/filter.go index 4c1885d148..c207970eca 100644 --- a/compiler/kernel/filter.go +++ b/compiler/kernel/filter.go @@ -1,9 +1,9 @@ package kernel import ( - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" ) type Filter struct { diff --git a/compiler/kernel/groupby.go b/compiler/kernel/groupby.go index 7b06dce472..dd0604815c 100644 --- a/compiler/kernel/groupby.go +++ b/compiler/kernel/groupby.go @@ -4,12 +4,12 @@ import ( "errors" "fmt" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op/groupby" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op/groupby" + "github.com/brimdata/super/zbuf" ) func (b *Builder) compileGroupBy(parent zbuf.Puller, summarize *dag.Summarize) (*groupby.Op, error) { diff --git a/compiler/kernel/op.go b/compiler/kernel/op.go index 7b2c041d2a..2f0dcf543b 100644 --- a/compiler/kernel/op.go +++ b/compiler/kernel/op.go @@ -9,41 +9,41 @@ import ( "strings" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/optimizer" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/runtime/sam/op/combine" - "github.com/brimdata/zed/runtime/sam/op/explode" - "github.com/brimdata/zed/runtime/sam/op/exprswitch" - "github.com/brimdata/zed/runtime/sam/op/fork" - "github.com/brimdata/zed/runtime/sam/op/fuse" - "github.com/brimdata/zed/runtime/sam/op/head" - "github.com/brimdata/zed/runtime/sam/op/join" - "github.com/brimdata/zed/runtime/sam/op/load" - "github.com/brimdata/zed/runtime/sam/op/merge" - "github.com/brimdata/zed/runtime/sam/op/meta" - "github.com/brimdata/zed/runtime/sam/op/mirror" - "github.com/brimdata/zed/runtime/sam/op/shape" - "github.com/brimdata/zed/runtime/sam/op/sort" - "github.com/brimdata/zed/runtime/sam/op/switcher" - "github.com/brimdata/zed/runtime/sam/op/tail" - "github.com/brimdata/zed/runtime/sam/op/top" - "github.com/brimdata/zed/runtime/sam/op/traverse" - "github.com/brimdata/zed/runtime/sam/op/uniq" - "github.com/brimdata/zed/runtime/sam/op/yield" - "github.com/brimdata/zed/runtime/vam" - vop "github.com/brimdata/zed/runtime/vam/op" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/optimizer" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/runtime/sam/op/combine" + "github.com/brimdata/super/runtime/sam/op/explode" + "github.com/brimdata/super/runtime/sam/op/exprswitch" + "github.com/brimdata/super/runtime/sam/op/fork" + "github.com/brimdata/super/runtime/sam/op/fuse" + "github.com/brimdata/super/runtime/sam/op/head" + "github.com/brimdata/super/runtime/sam/op/join" + "github.com/brimdata/super/runtime/sam/op/load" + "github.com/brimdata/super/runtime/sam/op/merge" + "github.com/brimdata/super/runtime/sam/op/meta" + "github.com/brimdata/super/runtime/sam/op/mirror" + "github.com/brimdata/super/runtime/sam/op/shape" + "github.com/brimdata/super/runtime/sam/op/sort" + "github.com/brimdata/super/runtime/sam/op/switcher" + "github.com/brimdata/super/runtime/sam/op/tail" + "github.com/brimdata/super/runtime/sam/op/top" + "github.com/brimdata/super/runtime/sam/op/traverse" + "github.com/brimdata/super/runtime/sam/op/uniq" + "github.com/brimdata/super/runtime/sam/op/yield" + "github.com/brimdata/super/runtime/vam" + vop "github.com/brimdata/super/runtime/vam/op" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/compiler/kernel/vexpr.go b/compiler/kernel/vexpr.go index c3c5cd4f73..473fec0aed 100644 --- a/compiler/kernel/vexpr.go +++ b/compiler/kernel/vexpr.go @@ -4,11 +4,11 @@ import ( "errors" "fmt" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/pkg/field" - vamexpr "github.com/brimdata/zed/runtime/vam/expr" - vamfunc "github.com/brimdata/zed/runtime/vam/expr/function" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/pkg/field" + vamexpr "github.com/brimdata/super/runtime/vam/expr" + vamfunc "github.com/brimdata/super/runtime/vam/expr/function" + "github.com/brimdata/super/zson" ) func (b *Builder) compileVamExpr(e dag.Expr) (vamexpr.Evaluator, error) { diff --git a/compiler/kernel/vop.go b/compiler/kernel/vop.go index be97410d6b..8267eec81d 100644 --- a/compiler/kernel/vop.go +++ b/compiler/kernel/vop.go @@ -3,14 +3,14 @@ package kernel import ( "fmt" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/optimizer" - "github.com/brimdata/zed/pkg/field" - samexpr "github.com/brimdata/zed/runtime/sam/expr" - vamexpr "github.com/brimdata/zed/runtime/vam/expr" - vamop "github.com/brimdata/zed/runtime/vam/op" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/optimizer" + "github.com/brimdata/super/pkg/field" + samexpr "github.com/brimdata/super/runtime/sam/expr" + vamexpr "github.com/brimdata/super/runtime/vam/expr" + vamop "github.com/brimdata/super/runtime/vam/op" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/zbuf" ) // compile compiles a DAG into a graph of runtime operators, and returns diff --git a/compiler/lake.go b/compiler/lake.go index b3fb94be12..773237f739 100644 --- a/compiler/lake.go +++ b/compiler/lake.go @@ -4,17 +4,17 @@ import ( "errors" goruntime "runtime" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/kernel" - "github.com/brimdata/zed/compiler/optimizer" - "github.com/brimdata/zed/compiler/semantic" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/exec" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/kernel" + "github.com/brimdata/super/compiler/optimizer" + "github.com/brimdata/super/compiler/semantic" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/exec" ) var Parallelism = goruntime.GOMAXPROCS(0) //XXX diff --git a/compiler/optimizer/demand.go b/compiler/optimizer/demand.go index c95320301e..2ed72608b5 100644 --- a/compiler/optimizer/demand.go +++ b/compiler/optimizer/demand.go @@ -1,8 +1,8 @@ package optimizer import ( - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/optimizer/demand" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/optimizer/demand" ) func insertDemand(seq dag.Seq) dag.Seq { diff --git a/compiler/optimizer/demand/demand.go b/compiler/optimizer/demand/demand.go index c84b3cbbb7..26f2a123b5 100644 --- a/compiler/optimizer/demand/demand.go +++ b/compiler/optimizer/demand/demand.go @@ -1,6 +1,6 @@ package demand -import "github.com/brimdata/zed/pkg/field" +import "github.com/brimdata/super/pkg/field" type Demand interface { isDemand() diff --git a/compiler/optimizer/op.go b/compiler/optimizer/op.go index 5f5af60d10..cc3ce3be67 100644 --- a/compiler/optimizer/op.go +++ b/compiler/optimizer/op.go @@ -5,9 +5,9 @@ import ( "errors" "strings" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" ) // analyzeSortKeys returns how an input order maps to an output order based diff --git a/compiler/optimizer/optimizer.go b/compiler/optimizer/optimizer.go index ddbe85981f..29ce244e17 100644 --- a/compiler/optimizer/optimizer.go +++ b/compiler/optimizer/optimizer.go @@ -5,11 +5,11 @@ import ( "errors" "fmt" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" "github.com/segmentio/ksuid" ) diff --git a/compiler/optimizer/parallelize.go b/compiler/optimizer/parallelize.go index 7e432a4133..85d38b9203 100644 --- a/compiler/optimizer/parallelize.go +++ b/compiler/optimizer/parallelize.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/order" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/order" ) // XXX Remove this and use native order.Direction in group-by. See Issue #4505. diff --git a/compiler/optimizer/vam.go b/compiler/optimizer/vam.go index 7da23b9bc6..a8feb88308 100644 --- a/compiler/optimizer/vam.go +++ b/compiler/optimizer/vam.go @@ -3,8 +3,8 @@ package optimizer import ( "context" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/pkg/field" ) func (o *Optimizer) Vectorize(seq dag.Seq) (dag.Seq, error) { diff --git a/compiler/parser/api.go b/compiler/parser/api.go index 1ef84aaf0c..90e98e432d 100644 --- a/compiler/parser/api.go +++ b/compiler/parser/api.go @@ -5,7 +5,7 @@ import ( "os" "strings" - "github.com/brimdata/zed/compiler/ast" + "github.com/brimdata/super/compiler/ast" ) // ParseZed calls ConcatSource followed by Parse. If Parse returns an error, diff --git a/compiler/parser/parser.go b/compiler/parser/parser.go index 8db6f6d83a..0573479d7f 100644 --- a/compiler/parser/parser.go +++ b/compiler/parser/parser.go @@ -16,8 +16,8 @@ import ( "unicode" "unicode/utf8" - "github.com/brimdata/zed/compiler/ast" - astzed "github.com/brimdata/zed/compiler/ast/zed" + "github.com/brimdata/super/compiler/ast" + astzed "github.com/brimdata/super/compiler/ast/zed" ) var g = &grammar{ diff --git a/compiler/parser/parser.peg b/compiler/parser/parser.peg index 9076b87050..21d087701a 100644 --- a/compiler/parser/parser.peg +++ b/compiler/parser/parser.peg @@ -2,8 +2,8 @@ package parser import ( - "github.com/brimdata/zed/compiler/ast" - astzed "github.com/brimdata/zed/compiler/ast/zed" + "github.com/brimdata/super/compiler/ast" + astzed "github.com/brimdata/super/compiler/ast/zed" ) } @@ -500,7 +500,7 @@ RenameOp // The paren guard is to allow parsing fuse() as an aggregator. This // is temporary pending finalizing the names -// (https://github.com/brimdata/zed/issues/2114) for the fuse op and +// (https://github.com/brimdata/super/issues/2114) for the fuse op and // aggregator, at which point we may no longer need this. FuseOp = "fuse" !(__ "(") &EOKW { diff --git a/compiler/parser/parser_test.go b/compiler/parser/parser_test.go index 9a3bcde7c7..080b8da6a0 100644 --- a/compiler/parser/parser_test.go +++ b/compiler/parser/parser_test.go @@ -10,10 +10,10 @@ import ( "strings" "testing" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/pkg/fs" - "github.com/brimdata/zed/ztest" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/pkg/fs" + "github.com/brimdata/super/ztest" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/compiler/parser/support.go b/compiler/parser/support.go index 26e6a85ef5..a807289631 100644 --- a/compiler/parser/support.go +++ b/compiler/parser/support.go @@ -5,8 +5,8 @@ import ( "fmt" "strconv" - "github.com/brimdata/zed/compiler/ast" - astzed "github.com/brimdata/zed/compiler/ast/zed" + "github.com/brimdata/super/compiler/ast" + astzed "github.com/brimdata/super/compiler/ast/zed" ) func sliceOf[E any](s any) []E { diff --git a/compiler/reader.go b/compiler/reader.go index c1ac42d7ee..e4e0137427 100644 --- a/compiler/reader.go +++ b/compiler/reader.go @@ -4,13 +4,13 @@ import ( "errors" "fmt" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/exec" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/exec" + "github.com/brimdata/super/zio" ) func NewCompiler() runtime.Compiler { diff --git a/compiler/semantic/analyzer.go b/compiler/semantic/analyzer.go index 6f9dd5635f..3d2002a99f 100644 --- a/compiler/semantic/analyzer.go +++ b/compiler/semantic/analyzer.go @@ -4,12 +4,12 @@ import ( "context" "errors" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/lakeparse" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/lakeparse" ) // Analyze performs a semantic analysis of the AST, translating it from AST diff --git a/compiler/semantic/expr.go b/compiler/semantic/expr.go index b50b647cb9..10de3b7ac2 100644 --- a/compiler/semantic/expr.go +++ b/compiler/semantic/expr.go @@ -4,16 +4,16 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/ast/dag" - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/compiler/kernel" - "github.com/brimdata/zed/pkg/reglob" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/expr/agg" - "github.com/brimdata/zed/runtime/sam/expr/function" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/ast/dag" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/compiler/kernel" + "github.com/brimdata/super/pkg/reglob" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/expr/agg" + "github.com/brimdata/super/runtime/sam/expr/function" + "github.com/brimdata/super/zson" ) func (a *analyzer) semExpr(e ast.Expr) dag.Expr { diff --git a/compiler/semantic/op.go b/compiler/semantic/op.go index 4161b33f47..84db38dc64 100644 --- a/compiler/semantic/op.go +++ b/compiler/semantic/op.go @@ -7,18 +7,18 @@ import ( "slices" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/kernel" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/pkg/plural" - "github.com/brimdata/zed/pkg/reglob" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/expr/function" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/kernel" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/pkg/plural" + "github.com/brimdata/super/pkg/reglob" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/expr/function" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/compiler/semantic/scope.go b/compiler/semantic/scope.go index 8fb55cb96c..6a2bc1b481 100644 --- a/compiler/semantic/scope.go +++ b/compiler/semantic/scope.go @@ -3,11 +3,11 @@ package semantic import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/compiler/kernel" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/compiler/kernel" + "github.com/brimdata/super/zson" ) type Scope struct { diff --git a/complex.go b/complex.go index a7353e0f4b..af1ec70585 100644 --- a/complex.go +++ b/complex.go @@ -5,7 +5,7 @@ import ( "errors" "sort" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" ) type TypeArray struct { diff --git a/complex_test.go b/complex_test.go index be9381a891..3a614d7c91 100644 --- a/complex_test.go +++ b/complex_test.go @@ -5,10 +5,10 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zio/zsonio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zio/zsonio" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/context.go b/context.go index abaceca7c7..18958f5f84 100644 --- a/context.go +++ b/context.go @@ -10,7 +10,7 @@ import ( "sync/atomic" "unicode/utf8" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" ) const ( diff --git a/context_test.go b/context_test.go index 0ce8305265..046ed37fac 100644 --- a/context_test.go +++ b/context_test.go @@ -3,8 +3,8 @@ package zed_test import ( "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/docs/commands/zq.md b/docs/commands/zq.md index ce064f8e11..788284c463 100644 --- a/docs/commands/zq.md +++ b/docs/commands/zq.md @@ -664,10 +664,10 @@ input to perform well. This proved a challenge as `zq` is written in [Go](https://go.dev/) and Go's JSON package is not particularly performant. To this end, `zq` has its own lean and simple -[JSON tokenizer](https://pkg.go.dev/github.com/brimdata/zed/pkg/jsonlexer), +[JSON tokenizer](https://pkg.go.dev/github.com/brimdata/super/pkg/jsonlexer), which performs quite well, and is -[integrated tightly](https://github.com/brimdata/zed/blob/main/zio/jsonio/reader.go) +[integrated tightly](https://github.com/brimdata/super/blob/main/zio/jsonio/reader.go) with Zed's internal data representation. Moreover, like `jq`, `zq`'s JSON parser does not require objects to be newline delimited and can diff --git a/docs/install.md b/docs/install.md index 63b00c83ee..13f9425b06 100644 --- a/docs/install.md +++ b/docs/install.md @@ -31,7 +31,7 @@ Once installed, run a [quick test](#quick-tests). ## Binary Download We offer pre-built binaries for macOS, Windows and Linux for both x86 and arm -architectures in the Zed [Github Release page](https://github.com/brimdata/zed/releases). +architectures in the Zed [Github Release page](https://github.com/brimdata/super/releases). Each archive includes the build for `zq` and `zed`. @@ -42,7 +42,7 @@ Once installed, run a [quick test](#quick-tests). If you have Go installed, you can easily build `zed` from source: ```bash -go install github.com/brimdata/zed/cmd/{zed,zq}@latest +go install github.com/brimdata/super/cmd/{zed,zq}@latest ``` This installs the `zed` and `zq` binaries in your `$GOPATH/bin`. diff --git a/docs/integrations/amazon-s3.md b/docs/integrations/amazon-s3.md index 04376f0243..54cf0b57d8 100644 --- a/docs/integrations/amazon-s3.md +++ b/docs/integrations/amazon-s3.md @@ -44,5 +44,5 @@ environment variable to the hostname or URI of the provider. [Like the AWS CLI tools themselves](https://repost.aws/knowledge-center/s3-event-notification-filter-wildcard), Zed does not currently expand UNIX-style `*` wildcards in S3 URIs. If you find this limitation is impacting your workflow, please add your use case -details as a comment in issue [zed/1994](https://github.com/brimdata/zed/issues/1994) +details as a comment in issue [super/1994](https://github.com/brimdata/super/issues/1994) to help us track the priority of possible enhancements in this area. diff --git a/docs/integrations/fluentd.md b/docs/integrations/fluentd.md index 2de342f539..d179f8ec0e 100644 --- a/docs/integrations/fluentd.md +++ b/docs/integrations/fluentd.md @@ -24,7 +24,7 @@ Linux 24.04. At the time this article was written, the following versions were used for the referenced software: * [Fluentd v1.17.0](https://github.com/fluent/fluentd/releases/tag/v1.17.0) -* [Zed v1.17.0](https://github.com/brimdata/zed/releases/tag/v1.17.0) +* [Zed v1.17.0](https://github.com/brimdata/super/releases/tag/v1.17.0) * [Zeek v6.2.1](https://github.com/zeek/zeek/releases/tag/v6.2.1) ### Zeek @@ -59,13 +59,13 @@ After making these changes, Zeek was started by running ### Zed -A binary [release package](https://github.com/brimdata/zed/releases) of Zed +A binary [release package](https://github.com/brimdata/super/releases) of Zed executables compatible with our instance was downloaded and unpacked to a directory in our `$PATH`, then the [lake service](https://zed.brimdata.io/docs/commands/zed#serve) was started with a specified storage path. ``` -wget https://github.com/brimdata/zed/releases/download/v1.17.0/zed-v1.17.0.linux-amd64.tar.gz +wget https://github.com/brimdata/super/releases/download/v1.17.0/zed-v1.17.0.linux-amd64.tar.gz tar xzvf zed-v1.17.0.linux-amd64.tar.gz sudo mv zed zq /usr/local/bin zed -lake $HOME/lake serve -manage 5m @@ -369,7 +369,7 @@ storage that contain the granular commits that have already been rolled into larger objects by compaction. :::tip Note -As described in issue [zed/4934](https://github.com/brimdata/zed/issues/4934), +As described in issue [super/4934](https://github.com/brimdata/super/issues/4934), even after running `zed vacuum`, some files related to commit history are currently still left behind below the lake storage path. The issue describes manual steps that can be taken to remove these files safely, if desired. @@ -410,4 +410,4 @@ article can be improved. If you're having difficulty, interested in loading or shaping other data sources, or just have feedback, please join our [public Slack](https://www.brimdata.io/join-slack/) and speak up or -[open an issue](https://github.com/brimdata/zed/issues/new/choose). Thanks! +[open an issue](https://github.com/brimdata/super/issues/new/choose). Thanks! diff --git a/docs/integrations/zed-lake-auth.md b/docs/integrations/zed-lake-auth.md index 07ce6bd596..3dca92f902 100644 --- a/docs/integrations/zed-lake-auth.md +++ b/docs/integrations/zed-lake-auth.md @@ -101,8 +101,8 @@ checkbox to enable the **Device Code** grant type. the most recent Zed tools from source. ``` - $ go install github.com/brimdata/zed/cmd/zed@latest - go: downloading github.com/brimdata/zed v1.6.0 + $ go install github.com/brimdata/super/cmd/zed@latest + go: downloading github.com/brimdata/super v1.6.0 $ zed -version Version: v1.6.0 @@ -148,7 +148,7 @@ Now that we've configured both Auth0 and the Zed lake service, we can test the authenticated login flow with our Zed clients. The video below shows this using [Zui v1.0.0](https://github.com/brimdata/zui/releases/tag/v1.0.0) and the Zed CLI tooling and Zed Python client -[v1.6.0](https://github.com/brimdata/zed/releases/tag/v1.6.0). +[v1.6.0](https://github.com/brimdata/super/releases/tag/v1.6.0). ### Summary: diff --git a/docs/integrations/zeek/shaping-zeek-ndjson.md b/docs/integrations/zeek/shaping-zeek-ndjson.md index 7de70e16ff..b7a2f0383f 100644 --- a/docs/integrations/zeek/shaping-zeek-ndjson.md +++ b/docs/integrations/zeek/shaping-zeek-ndjson.md @@ -350,5 +350,5 @@ screen. If you're having difficulty, interested in shaping other data sources, or just have feedback, please join our [public Slack](https://www.brimdata.io/join-slack/) -and speak up or [open an issue](https://github.com/brimdata/zed/issues/new/choose). +and speak up or [open an issue](https://github.com/brimdata/super/issues/new/choose). Thanks! diff --git a/docs/language/functions/grok.md b/docs/language/functions/grok.md index afa4f8e64d..3bc234f232 100644 --- a/docs/language/functions/grok.md +++ b/docs/language/functions/grok.md @@ -25,7 +25,7 @@ newlines (`\n`). The named patterns can then be referenced in argument `p`. The `grok` function by default includes a set of built-in named patterns that can be referenced in any pattern. The included named patterns can be seen -[here](https://raw.githubusercontent.com/brimdata/zed/main/pkg/grok/base.go). +[here](https://raw.githubusercontent.com/brimdata/super/main/pkg/grok/base.go). ### Comparison to Other Implementations @@ -58,7 +58,7 @@ issue describing your use case. string. Zed currently accepts this trailing `:type` syntax but effectively ignores it and stores all parsed values as strings. Downstream use of Zed's [`cast` function](cast.md) can be used instead for data type conversion. - ([zed/4928](https://github.com/brimdata/zed/issues/4928)) + ([super/4928](https://github.com/brimdata/super/issues/4928)) 2. Some Logstash Grok examples use an optional square bracket syntax for storing a parsed value in a nested field, e.g., @@ -69,12 +69,12 @@ issue describing your use case. dot-separated field naming convention `nested.field` can be combined with the downstream use of the [`nest_dotted` function](nest_dotted.md) to store values in nested fields. - ([zed/4929](https://github.com/brimdata/zed/issues/4929)) + ([super/4929](https://github.com/brimdata/super/issues/4929)) 3. Zed's regular expressions syntax does not currently support the "named capture" syntax shown in the [Logstash docs](https://www.elastic.co/guide/en/logstash/current/plugins-filters-grok.html#_custom_patterns). - ([zed/4899](https://github.com/brimdata/zed/issues/4899)) + ([super/4899](https://github.com/brimdata/super/issues/4899)) Instead use the the approach shown later in that section of the Logstash docs by including a custom pattern in the `definitions` argument, e.g., @@ -117,7 +117,7 @@ present in Zed's implementation, you can create a Logstash-based preprocessing pipeline that uses its [Grok filter plugin](https://www.elastic.co/guide/en/logstash/current/plugins-filters-grok.html) and send its output as JSON to Zed tools. Issue -[zed/3151](https://github.com/brimdata/zed/issues/3151) provides some tips for +[super/3151](https://github.com/brimdata/super/issues/3151) provides some tips for getting started. If you pursue this approach, please add a comment to the issue describing your use case or come talk to us on [community Slack](https://www.brimdata.io/join-slack/). diff --git a/docs/language/pipeline-model.md b/docs/language/pipeline-model.md index df33cabd77..73178f51d8 100644 --- a/docs/language/pipeline-model.md +++ b/docs/language/pipeline-model.md @@ -25,7 +25,7 @@ but as an example, you might use the `get` form of `from` to fetch data from an HTTP endpoint and process it with Zed, in this case, to extract the description and license of a GitHub repository: ``` -zq -f text 'get https://api.github.com/repos/brimdata/zed +zq -f text 'get https://api.github.com/repos/brimdata/super | yield description,license.name' ``` When a Zed query is run on the command-line with `zq`, the `from` source is diff --git a/docs/language/ztests/README.md b/docs/language/ztests/README.md index 0a53d04eea..b6a2e25f0d 100644 --- a/docs/language/ztests/README.md +++ b/docs/language/ztests/README.md @@ -1,4 +1,4 @@ The automated tests in this directory ensure the correctess of examples shown in the Zed language docs that are not otherwise protected via -[mdtest](../../../mdtest/mdtest.go). See [zed/2901](https://github.com/brimdata/zed/pull/2901) +[mdtest](../../../mdtest/mdtest.go). See [super/2901](https://github.com/brimdata/super/pull/2901) for details. diff --git a/docs/language/ztests/language-background-1.yaml b/docs/language/ztests/language-background-1.yaml index d448560c2f..a6b9dd8041 100644 --- a/docs/language/ztests/language-background-1.yaml +++ b/docs/language/ztests/language-background-1.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below is exactly as it appears in the top-level diff --git a/docs/language/ztests/language-background-2.yaml b/docs/language/ztests/language-background-2.yaml index f0fb0e1ea3..fa2b82e87e 100644 --- a/docs/language/ztests/language-background-2.yaml +++ b/docs/language/ztests/language-background-2.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below is exactly as it appears in the top-level diff --git a/docs/language/ztests/language-background-3.yaml b/docs/language/ztests/language-background-3.yaml index 8661e30bbf..797d90ee34 100644 --- a/docs/language/ztests/language-background-3.yaml +++ b/docs/language/ztests/language-background-3.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below is exactly as it appears in the top-level diff --git a/docs/language/ztests/language-background-4.yaml b/docs/language/ztests/language-background-4.yaml index 1c9288d66f..fe2077ef5d 100644 --- a/docs/language/ztests/language-background-4.yaml +++ b/docs/language/ztests/language-background-4.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below is exactly as it appears in the top-level diff --git a/docs/language/ztests/language-background-5.yaml b/docs/language/ztests/language-background-5.yaml index 1bdfe42238..18646300da 100644 --- a/docs/language/ztests/language-background-5.yaml +++ b/docs/language/ztests/language-background-5.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below has been modified from the way it appears in diff --git a/docs/language/ztests/language-background-6.yaml b/docs/language/ztests/language-background-6.yaml index ed73b1e3ea..9f637ad73e 100644 --- a/docs/language/ztests/language-background-6.yaml +++ b/docs/language/ztests/language-background-6.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below has been modified from the way it appears in diff --git a/docs/language/ztests/language-background-7.yaml b/docs/language/ztests/language-background-7.yaml index 1d445b90dc..80b7265c2f 100644 --- a/docs/language/ztests/language-background-7.yaml +++ b/docs/language/ztests/language-background-7.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below is exactly as it appears in the top-level diff --git a/docs/language/ztests/language-background-8.yaml b/docs/language/ztests/language-background-8.yaml index f2b4f41ede..246822bdca 100644 --- a/docs/language/ztests/language-background-8.yaml +++ b/docs/language/ztests/language-background-8.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below is exactly as it appears in the top-level diff --git a/docs/language/ztests/language-background-9.yaml b/docs/language/ztests/language-background-9.yaml index e48d66e248..57a15a992f 100644 --- a/docs/language/ztests/language-background-9.yaml +++ b/docs/language/ztests/language-background-9.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below is exactly as it appears in the top-level diff --git a/docs/language/ztests/language-directed-acyclic-flow-graphs-1.yaml b/docs/language/ztests/language-directed-acyclic-flow-graphs-1.yaml index 65942896b5..7ff640e1aa 100644 --- a/docs/language/ztests/language-directed-acyclic-flow-graphs-1.yaml +++ b/docs/language/ztests/language-directed-acyclic-flow-graphs-1.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below has been modified from the way it appears in @@ -17,7 +17,7 @@ # Specifically, the "op1", "op2", and "..." have been filled in with real # operations, and the "merge" has been replaced with a "sort" for now since # merge has not yet been fully implemented -# (https://github.com/brimdata/zed/issues/2906). +# (https://github.com/brimdata/super/issues/2906). script: | export ZED_LAKE=test diff --git a/docs/language/ztests/language-directed-acyclic-flow-graphs-2.yaml b/docs/language/ztests/language-directed-acyclic-flow-graphs-2.yaml index 9887aefeff..5d07c8dcd2 100644 --- a/docs/language/ztests/language-directed-acyclic-flow-graphs-2.yaml +++ b/docs/language/ztests/language-directed-acyclic-flow-graphs-2.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below has been modified from the way it appears in @@ -16,7 +16,7 @@ # # Specifically, the "op1", "op2", and "..." have been filled in with real # operations, and a field assignment has been added to the join -# (https://github.com/brimdata/zed/issues/2815). +# (https://github.com/brimdata/super/issues/2815). script: | export ZED_LAKE=test diff --git a/docs/language/ztests/language-directed-acyclic-flow-graphs-3.yaml b/docs/language/ztests/language-directed-acyclic-flow-graphs-3.yaml index 7e500821a5..ede1e2dea9 100644 --- a/docs/language/ztests/language-directed-acyclic-flow-graphs-3.yaml +++ b/docs/language/ztests/language-directed-acyclic-flow-graphs-3.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below has been modified from the way it appears in diff --git a/docs/language/ztests/language-operators-1.yaml b/docs/language/ztests/language-operators-1.yaml index 72b3f0e48e..2fbcaca8df 100644 --- a/docs/language/ztests/language-operators-1.yaml +++ b/docs/language/ztests/language-operators-1.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ script: | diff --git a/docs/language/ztests/language-tldr-1.yaml b/docs/language/ztests/language-tldr-1.yaml index 5eebef897a..ec5e8b4e8a 100644 --- a/docs/language/ztests/language-tldr-1.yaml +++ b/docs/language/ztests/language-tldr-1.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below has been modified from the way it appears in diff --git a/docs/language/ztests/language-tldr-2.yaml b/docs/language/ztests/language-tldr-2.yaml index 91f34563d4..9a4d8596a1 100644 --- a/docs/language/ztests/language-tldr-2.yaml +++ b/docs/language/ztests/language-tldr-2.yaml @@ -3,7 +3,7 @@ # docs. If you need to make changes to the Zed below to make the tests pass # again after a change, the docs likely need to be updated as well. # -# See https://github.com/brimdata/zed/pull/2901 for details +# See https://github.com/brimdata/super/pull/2901 for details # ============================================================================ # The Zed being tested below is exactly as it appears in the top-level diff --git a/docs/libraries/go.md b/docs/libraries/go.md index 2ba0c4bb0c..d7446ac2cf 100644 --- a/docs/libraries/go.md +++ b/docs/libraries/go.md @@ -22,16 +22,16 @@ other Go projects straight from the GitHub repo. Some of the key packages are: -* [zed](https://pkg.go.dev/github.com/brimdata/zed) - core Zed values and types -* [zson](https://pkg.go.dev/github.com/brimdata/zed/zson) - ZSON support -* [zio](https://pkg.go.dev/github.com/brimdata/zed/zio) - I/O interfaces for Zed following the Reader/Writer patterns -* [zio/zsonio](https://pkg.go.dev/github.com/brimdata/zed/zio/zsonio) - ZSON reader/writer -* [zio/zngio](https://pkg.go.dev/github.com/brimdata/zed/zio/zngio) - ZNG reader/writer -* [lake/api](https://pkg.go.dev/github.com/brimdata/zed/lake/api) - interact with a Zed lake +* [zed](https://pkg.go.dev/github.com/brimdata/super) - core Zed values and types +* [zson](https://pkg.go.dev/github.com/brimdata/super/zson) - ZSON support +* [zio](https://pkg.go.dev/github.com/brimdata/super/zio) - I/O interfaces for Zed following the Reader/Writer patterns +* [zio/zsonio](https://pkg.go.dev/github.com/brimdata/super/zio/zsonio) - ZSON reader/writer +* [zio/zngio](https://pkg.go.dev/github.com/brimdata/super/zio/zngio) - ZNG reader/writer +* [lake/api](https://pkg.go.dev/github.com/brimdata/super/lake/api) - interact with a Zed lake To install in your local Go project, simply run: ``` -go get github.com/brimdata/zed +go get github.com/brimdata/super ``` ## Examples @@ -47,9 +47,9 @@ import ( "log" "os" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio/zsonio" - "github.com/brimdata/zed/zson" + zed "github.com/brimdata/super" + "github.com/brimdata/super/zio/zsonio" + "github.com/brimdata/super/zson" ) func main() { @@ -114,11 +114,11 @@ import ( "log" "os" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zson" + zed "github.com/brimdata/super" + "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zson" ) func main() { diff --git a/docs/libraries/python.md b/docs/libraries/python.md index 82d4444778..609a27149b 100644 --- a/docs/libraries/python.md +++ b/docs/libraries/python.md @@ -21,12 +21,12 @@ data intensive workloads. Install the latest version like this: ```sh -pip3 install "git+https://github.com/brimdata/zed#subdirectory=python/zed" +pip3 install "git+https://github.com/brimdata/super#subdirectory=python/zed" ``` Install the version compatible with a local `zed` like this: ```sh -pip3 install "git+https://github.com/brimdata/zed@$(zed -version | cut -d ' ' -f 2)#subdirectory=python/zed" +pip3 install "git+https://github.com/brimdata/super@$(zed -version | cut -d ' ' -f 2)#subdirectory=python/zed" ``` ## Example diff --git a/docs/tutorials/join.md b/docs/tutorials/join.md index d16ef78e24..353586ad5a 100644 --- a/docs/tutorials/join.md +++ b/docs/tutorials/join.md @@ -333,7 +333,7 @@ produces In the current `join` implementation, explicit entries must be provided in the `[field-list]` in order to copy values from the opposite input into the joined -results (a possible future enhancement [zed/2815](https://github.com/brimdata/zed/issues/2815) +results (a possible future enhancement [super/2815](https://github.com/brimdata/super/issues/2815) may improve upon this). This can be cumbersome if your goal is to copy over many fields or you don't know the names of all desired fields. diff --git a/docs/tutorials/schools.md b/docs/tutorials/schools.md index 70da91d625..7dc5c11e92 100644 --- a/docs/tutorials/schools.md +++ b/docs/tutorials/schools.md @@ -7,7 +7,7 @@ sidebar_label: Schools Data > This document provides a beginner's overview of the Zed language using the [zq command](../commands/zq.md) and -[real-world data](https://github.com/brimdata/zed/blob/main/testdata/edu/README.md) relating to California schools +[real-world data](https://github.com/brimdata/super/blob/main/testdata/edu/README.md) relating to California schools and test scores. ## 1. Getting Started @@ -16,9 +16,9 @@ If you want to follow along by running the examples, simply [install zq](../install.md) and copy the data files used here into your working directory: ``` -curl https://raw.githubusercontent.com/brimdata/zed/main/testdata/edu/schools.zson > schools.zson -curl https://raw.githubusercontent.com/brimdata/zed/main/testdata/edu/testscores.zson > testscores.zson -curl https://raw.githubusercontent.com/brimdata/zed/main/testdata/edu/webaddrs.zson > webaddrs.zson +curl https://raw.githubusercontent.com/brimdata/super/main/testdata/edu/schools.zson > schools.zson +curl https://raw.githubusercontent.com/brimdata/super/main/testdata/edu/testscores.zson > testscores.zson +curl https://raw.githubusercontent.com/brimdata/super/main/testdata/edu/webaddrs.zson > webaddrs.zson ``` These files are all encoded in the human-readable [ZSON format](../formats/zson.md) so you can easily have a look at them. ZSON is not optimized for speed but these @@ -93,7 +93,7 @@ which emits Nothing too tricky here. After a quick review of the shapes and types, you will notice they are just three relatively simple tables, which is no surprise since we obtained the original data from -[SQLite database files](https://github.com/brimdata/zed/blob/main/testdata/edu/README.md). +[SQLite database files](https://github.com/brimdata/super/blob/main/testdata/edu/README.md). ## 3. Searching diff --git a/docs/tutorials/zq.md b/docs/tutorials/zq.md index 3c2e216fe0..830d67826b 100644 --- a/docs/tutorials/zq.md +++ b/docs/tutorials/zq.md @@ -587,7 +587,7 @@ This command will grab descriptions of first 30 PRs created in the public `zed` repository and place it in a file called `prs.json`: ``` zq -f json \ - https://api.github.com/repos/brimdata/zed/pulls\?state\=all\&sort\=desc\&per_page=30 \ + https://api.github.com/repos/brimdata/super/pulls\?state\=all\&sort\=desc\&per_page=30 \ > prs.json ``` Now that you have this JSON file on your local file system, how would you query it diff --git a/fuzz/fuzz.go b/fuzz/fuzz.go index 81314fc7ba..a207b5e268 100644 --- a/fuzz/fuzz.go +++ b/fuzz/fuzz.go @@ -11,21 +11,21 @@ import ( "net/netip" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/optimizer" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/compiler/semantic" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/pkg/storage/mock" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/vngio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/optimizer" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/compiler/semantic" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/pkg/storage/mock" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/vngio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" "github.com/x448/float16" diff --git a/go.mod b/go.mod index cede4362fe..1a8a7f3271 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/brimdata/zed +module github.com/brimdata/super go 1.23 diff --git a/lake/api/api.go b/lake/api/api.go index 0484e04be8..99fb6fb319 100644 --- a/lake/api/api.go +++ b/lake/api/api.go @@ -6,16 +6,16 @@ import ( "fmt" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/client" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/client" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" "go.uber.org/zap" ) diff --git a/lake/api/local.go b/lake/api/local.go index 183bc4c330..d501a1c8d3 100644 --- a/lake/api/local.go +++ b/lake/api/local.go @@ -4,18 +4,18 @@ import ( "context" "errors" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/exec" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/exec" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" "github.com/segmentio/ksuid" "go.uber.org/zap" ) diff --git a/lake/api/remote.go b/lake/api/remote.go index c4b6d49b94..3b2ca0a790 100644 --- a/lake/api/remote.go +++ b/lake/api/remote.go @@ -5,17 +5,17 @@ import ( "errors" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/client" - "github.com/brimdata/zed/api/queryio" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/client" + "github.com/brimdata/super/api/queryio" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" "github.com/segmentio/ksuid" ) diff --git a/lake/branch.go b/lake/branch.go index 53c0d223e1..84252a94aa 100644 --- a/lake/branch.go +++ b/lake/branch.go @@ -6,18 +6,18 @@ import ( "fmt" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/lake/branches" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/lake/journal" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/plural" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/lake/branches" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/lake/journal" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/plural" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/lake/branches/config.go b/lake/branches/config.go index 9cd7f96b56..bab6a3d944 100644 --- a/lake/branches/config.go +++ b/lake/branches/config.go @@ -1,7 +1,7 @@ package branches import ( - "github.com/brimdata/zed/pkg/nano" + "github.com/brimdata/super/pkg/nano" "github.com/segmentio/ksuid" ) diff --git a/lake/branches/store.go b/lake/branches/store.go index ed2e3e7b39..9f120149fe 100644 --- a/lake/branches/store.go +++ b/lake/branches/store.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "github.com/brimdata/zed/lake/journal" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/lake/journal" + "github.com/brimdata/super/pkg/storage" "go.uber.org/zap" ) diff --git a/lake/commits/actions.go b/lake/commits/actions.go index 7070cd8927..cb0b3fb5cd 100644 --- a/lake/commits/actions.go +++ b/lake/commits/actions.go @@ -3,9 +3,9 @@ package commits import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/pkg/nano" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/pkg/nano" "github.com/segmentio/ksuid" ) diff --git a/lake/commits/object.go b/lake/commits/object.go index 91ea8d5ff3..87f4f0d02d 100644 --- a/lake/commits/object.go +++ b/lake/commits/object.go @@ -5,11 +5,11 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zngbytes" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zngbytes" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/lake/commits/patch.go b/lake/commits/patch.go index 00d6cc4137..dfd7fc130d 100644 --- a/lake/commits/patch.go +++ b/lake/commits/patch.go @@ -4,10 +4,10 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr/extent" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr/extent" "github.com/segmentio/ksuid" ) diff --git a/lake/commits/reader.go b/lake/commits/reader.go index a2cde5ff6a..9c49c22421 100644 --- a/lake/commits/reader.go +++ b/lake/commits/reader.go @@ -3,9 +3,9 @@ package commits import ( "context" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/lake/commits/snapshot.go b/lake/commits/snapshot.go index 221f904f89..eaf94034ca 100644 --- a/lake/commits/snapshot.go +++ b/lake/commits/snapshot.go @@ -5,11 +5,11 @@ import ( "fmt" "io" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr/extent" - "github.com/brimdata/zed/zngbytes" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr/extent" + "github.com/brimdata/super/zngbytes" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/lake/commits/store.go b/lake/commits/store.go index 3b96d0525c..ecc3fd4d7c 100644 --- a/lake/commits/store.go +++ b/lake/commits/store.go @@ -9,12 +9,12 @@ import ( "io/fs" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zngbytes" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zngbytes" lru "github.com/hashicorp/golang-lru/v2" "github.com/segmentio/ksuid" "go.uber.org/zap" diff --git a/lake/data/object.go b/lake/data/object.go index 6cb19ea157..139ee4677f 100644 --- a/lake/data/object.go +++ b/lake/data/object.go @@ -7,10 +7,10 @@ import ( "io/fs" "regexp" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime/sam/expr/extent" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime/sam/expr/extent" "github.com/segmentio/ksuid" ) diff --git a/lake/data/reader.go b/lake/data/reader.go index 04fdd6960c..e48ad0f458 100644 --- a/lake/data/reader.go +++ b/lake/data/reader.go @@ -4,8 +4,8 @@ import ( "context" "io" - "github.com/brimdata/zed/lake/seekindex" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/lake/seekindex" + "github.com/brimdata/super/pkg/storage" ) type Reader struct { diff --git a/lake/data/seekindex.go b/lake/data/seekindex.go index e257e0c86c..1ed01c44dd 100644 --- a/lake/data/seekindex.go +++ b/lake/data/seekindex.go @@ -4,13 +4,13 @@ import ( "context" "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/seekindex" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/seekindex" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) func LookupSeekRange(ctx context.Context, engine storage.Engine, path *storage.URI, diff --git a/lake/data/vector.go b/lake/data/vector.go index 759033d86b..0bf36365e1 100644 --- a/lake/data/vector.go +++ b/lake/data/vector.go @@ -6,13 +6,13 @@ import ( "fmt" "io/fs" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/bufwriter" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/vng" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/vngio" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/bufwriter" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/vng" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/vngio" + "github.com/brimdata/super/zio/zngio" "github.com/segmentio/ksuid" ) diff --git a/lake/data/writer.go b/lake/data/writer.go index cf6ee8ec00..09e02e5071 100644 --- a/lake/data/writer.go +++ b/lake/data/writer.go @@ -4,12 +4,12 @@ import ( "context" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/seekindex" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/bufwriter" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/seekindex" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/bufwriter" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio/zngio" ) // Writer is a zio.Writer that writes a stream of sorted records into a diff --git a/lake/data/writer_test.go b/lake/data/writer_test.go index 0504ec09c9..4db352e921 100644 --- a/lake/data/writer_test.go +++ b/lake/data/writer_test.go @@ -4,14 +4,14 @@ import ( "context" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio/vngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio/vngio" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/lake/journal/journal_test.go b/lake/journal/journal_test.go index 9dbc05d5c0..dbf35ec9df 100644 --- a/lake/journal/journal_test.go +++ b/lake/journal/journal_test.go @@ -6,7 +6,7 @@ import ( "os" "testing" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/pkg/storage" "github.com/stretchr/testify/require" ) diff --git a/lake/journal/queue.go b/lake/journal/queue.go index 018d097f42..383873cdcd 100644 --- a/lake/journal/queue.go +++ b/lake/journal/queue.go @@ -11,9 +11,9 @@ import ( "strings" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio/zngio" ) const ext = "zng" diff --git a/lake/journal/store.go b/lake/journal/store.go index f4964d2341..8fc0fbeb98 100644 --- a/lake/journal/store.go +++ b/lake/journal/store.go @@ -9,11 +9,11 @@ import ( "sync" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zngbytes" - "github.com/brimdata/zed/zson" + zed "github.com/brimdata/super" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zngbytes" + "github.com/brimdata/super/zson" "go.uber.org/zap" ) @@ -176,7 +176,7 @@ func (s *Store) getSnapshot(ctx context.Context, unmarshaler *zson.UnmarshalZNGC } func (s *Store) putSnapshot(ctx context.Context, at ID, table map[string]Entry) error { - // XXX This needs to be an atomic write for file systems: brimdata/zed#4277. + // XXX This needs to be an atomic write for file systems: brimdata/super#4277. w, err := s.journal.engine.Put(ctx, s.snapshotURI()) if err != nil { return err diff --git a/lake/pool.go b/lake/pool.go index 76417473fc..a5e98c7272 100644 --- a/lake/pool.go +++ b/lake/pool.go @@ -8,17 +8,17 @@ import ( "runtime" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/branches" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/branches" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" "go.uber.org/zap" "golang.org/x/sync/errgroup" diff --git a/lake/pools/config.go b/lake/pools/config.go index 98ef306f9e..b2e1a797f3 100644 --- a/lake/pools/config.go +++ b/lake/pools/config.go @@ -1,14 +1,14 @@ package pools import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/lake/journal" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/lake/journal" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/lake/pools/store.go b/lake/pools/store.go index 8eb479c3a0..14ccfea169 100644 --- a/lake/pools/store.go +++ b/lake/pools/store.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "github.com/brimdata/zed/lake/journal" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/lake/journal" + "github.com/brimdata/super/pkg/storage" "github.com/segmentio/ksuid" "go.uber.org/zap" ) diff --git a/lake/root.go b/lake/root.go index 89e8ef04b3..232d206b10 100644 --- a/lake/root.go +++ b/lake/root.go @@ -7,19 +7,19 @@ import ( "fmt" "io/fs" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast/dag" - "github.com/brimdata/zed/lake/branches" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zngbytes" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast/dag" + "github.com/brimdata/super/lake/branches" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zngbytes" + "github.com/brimdata/super/zson" lru "github.com/hashicorp/golang-lru/v2" "github.com/segmentio/ksuid" "go.uber.org/zap" diff --git a/lake/seekindex/entry.go b/lake/seekindex/entry.go index b1b4529002..b11439e5d7 100644 --- a/lake/seekindex/entry.go +++ b/lake/seekindex/entry.go @@ -1,8 +1,8 @@ package seekindex import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) type Entry struct { diff --git a/lake/seekindex/writer.go b/lake/seekindex/writer.go index f2c3b0ed51..1a8b1a3f10 100644 --- a/lake/seekindex/writer.go +++ b/lake/seekindex/writer.go @@ -1,9 +1,9 @@ package seekindex import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" ) type Writer struct { diff --git a/lake/writer.go b/lake/writer.go index f8d20c033d..4ce2ac0c02 100644 --- a/lake/writer.go +++ b/lake/writer.go @@ -4,12 +4,12 @@ import ( "context" "sync/atomic" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" "github.com/segmentio/ksuid" "golang.org/x/sync/errgroup" ) diff --git a/order/direction.go b/order/direction.go index 4172b7b596..5523d7c907 100644 --- a/order/direction.go +++ b/order/direction.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zson" ) type Direction int diff --git a/order/sortkey.go b/order/sortkey.go index abba72226e..b0ce156dcd 100644 --- a/order/sortkey.go +++ b/order/sortkey.go @@ -6,7 +6,7 @@ import ( "slices" "strings" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super/pkg/field" ) type SortKey struct { diff --git a/order/which.go b/order/which.go index 1766e5954f..21af1bc04c 100644 --- a/order/which.go +++ b/order/which.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zson" ) type Which bool diff --git a/performance/README.md b/performance/README.md index 2073b214b4..78e3b05cd1 100644 --- a/performance/README.md +++ b/performance/README.md @@ -28,7 +28,7 @@ in `jq`. If there's glaring functional omissions that are limiting your use of [shaping Zeek NDJSON](https://zed.brimdata.io/docs/integrations/zeek/shaping-zeek-ndjson) was followed as the input data was being read. In addition to conforming to the best practices as described in that article, this also avoids a problem -described in [a comment in zed/2123](https://github.com/brimdata/zed/pull/2123#issuecomment-859164320). +described in [a comment in super/2123](https://github.com/brimdata/super/pull/2123#issuecomment-859164320). Separate tests on our VM confirmed the shaping portion of the runs with NDJSON input consumed approximately 5 seconds out of the total run time on each of these runs. diff --git a/pkg/charm/help.go b/pkg/charm/help.go index bca28cde41..e1e2c1b717 100644 --- a/pkg/charm/help.go +++ b/pkg/charm/help.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/brimdata/zed/pkg/terminal" + "github.com/brimdata/super/pkg/terminal" "github.com/kr/text" ) diff --git a/pkg/httpd/server_test.go b/pkg/httpd/server_test.go index d45faa88ae..40a1455c28 100644 --- a/pkg/httpd/server_test.go +++ b/pkg/httpd/server_test.go @@ -7,7 +7,7 @@ import ( "testing" "time" - "github.com/brimdata/zed/pkg/httpd" + "github.com/brimdata/super/pkg/httpd" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/pkg/nano/span_test.go b/pkg/nano/span_test.go index 63ceb981bc..cfbe8e6b6f 100644 --- a/pkg/nano/span_test.go +++ b/pkg/nano/span_test.go @@ -3,7 +3,7 @@ package nano_test import ( "testing" - "github.com/brimdata/zed/pkg/nano" + "github.com/brimdata/super/pkg/nano" "github.com/stretchr/testify/assert" ) diff --git a/pkg/nano/time_test.go b/pkg/nano/time_test.go index b186633f80..db10b0ed85 100644 --- a/pkg/nano/time_test.go +++ b/pkg/nano/time_test.go @@ -3,7 +3,7 @@ package nano_test import ( "testing" - "github.com/brimdata/zed/pkg/nano" + "github.com/brimdata/super/pkg/nano" "github.com/stretchr/testify/assert" ) diff --git a/pkg/reglob/reglob_test.go b/pkg/reglob/reglob_test.go index 3ee6efa473..af7003ada9 100644 --- a/pkg/reglob/reglob_test.go +++ b/pkg/reglob/reglob_test.go @@ -3,7 +3,7 @@ package reglob_test import ( "testing" - "github.com/brimdata/zed/pkg/reglob" + "github.com/brimdata/super/pkg/reglob" "github.com/stretchr/testify/require" ) diff --git a/pkg/skim/skim_test.go b/pkg/skim/skim_test.go index e8323eef71..6d464ef9ac 100644 --- a/pkg/skim/skim_test.go +++ b/pkg/skim/skim_test.go @@ -5,7 +5,7 @@ import ( "fmt" "testing" - "github.com/brimdata/zed/pkg/skim" + "github.com/brimdata/super/pkg/skim" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/pkg/storage/cache/kind.go b/pkg/storage/cache/kind.go index 38e9fc8ebb..8ab978626e 100644 --- a/pkg/storage/cache/kind.go +++ b/pkg/storage/cache/kind.go @@ -5,7 +5,7 @@ package cache import ( "fmt" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/pkg/storage" ) type Cacheable func(*storage.URI) bool diff --git a/pkg/storage/cache/local.go b/pkg/storage/cache/local.go index 35b485a21d..b21eda92d0 100644 --- a/pkg/storage/cache/local.go +++ b/pkg/storage/cache/local.go @@ -4,8 +4,8 @@ import ( "context" "path" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/pkg/storage" lru "github.com/hashicorp/golang-lru/v2" "github.com/prometheus/client_golang/prometheus" ) diff --git a/pkg/storage/cache/redis.go b/pkg/storage/cache/redis.go index 6a214ab8ab..75ced6a443 100644 --- a/pkg/storage/cache/redis.go +++ b/pkg/storage/cache/redis.go @@ -7,8 +7,8 @@ import ( "path" "time" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/pkg/storage" "github.com/go-redis/redis/v8" "github.com/prometheus/client_golang/prometheus" ) diff --git a/pkg/storage/engine.go b/pkg/storage/engine.go index 5d654c3384..73ad431f79 100644 --- a/pkg/storage/engine.go +++ b/pkg/storage/engine.go @@ -1,4 +1,4 @@ -//go:generate mockgen -destination=./mock/mock_engine.go -package=mock github.com/brimdata/zed/pkg/storage Engine +//go:generate mockgen -destination=./mock/mock_engine.go -package=mock github.com/brimdata/super/pkg/storage Engine package storage diff --git a/pkg/storage/file.go b/pkg/storage/file.go index 66439a4d72..8f54737332 100644 --- a/pkg/storage/file.go +++ b/pkg/storage/file.go @@ -10,7 +10,7 @@ import ( "path/filepath" "sync" - pkgfs "github.com/brimdata/zed/pkg/fs" + pkgfs "github.com/brimdata/super/pkg/fs" ) type FileSystem struct { diff --git a/pkg/storage/mock/mock_engine.go b/pkg/storage/mock/mock_engine.go index 5e580a7f2f..fedd526bdf 100644 --- a/pkg/storage/mock/mock_engine.go +++ b/pkg/storage/mock/mock_engine.go @@ -1,5 +1,5 @@ // Code generated by MockGen. DO NOT EDIT. -// Source: github.com/brimdata/zed/pkg/storage (interfaces: Engine) +// Source: github.com/brimdata/super/pkg/storage (interfaces: Engine) // Package mock is a generated GoMock package. package mock @@ -9,7 +9,7 @@ import ( io "io" reflect "reflect" - storage "github.com/brimdata/zed/pkg/storage" + storage "github.com/brimdata/super/pkg/storage" gomock "github.com/golang/mock/gomock" ) diff --git a/pkg/storage/s3.go b/pkg/storage/s3.go index 1b7c5c3ff9..0bbf948985 100644 --- a/pkg/storage/s3.go +++ b/pkg/storage/s3.go @@ -9,7 +9,7 @@ import ( "github.com/aws/aws-sdk-go/aws/awserr" "github.com/aws/aws-sdk-go/service/s3/s3iface" - "github.com/brimdata/zed/pkg/s3io" + "github.com/brimdata/super/pkg/s3io" ) type S3Engine struct { diff --git a/pkg/storage/uri.go b/pkg/storage/uri.go index 5aa8c98fcf..169d13f22d 100644 --- a/pkg/storage/uri.go +++ b/pkg/storage/uri.go @@ -4,8 +4,8 @@ import ( "net/url" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zson" ) type URI url.URL diff --git a/pkg/unpack/unpack_test.go b/pkg/unpack/unpack_test.go index 2bbb2e5d84..8990e8b78d 100644 --- a/pkg/unpack/unpack_test.go +++ b/pkg/unpack/unpack_test.go @@ -3,7 +3,7 @@ package unpack_test import ( "testing" - "github.com/brimdata/zed/pkg/unpack" + "github.com/brimdata/super/pkg/unpack" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/primitive.go b/primitive.go index 5a5a1d97c6..02bb99940e 100644 --- a/primitive.go +++ b/primitive.go @@ -8,8 +8,8 @@ import ( "math/bits" "net/netip" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" "github.com/x448/float16" ) diff --git a/recordbuilder.go b/recordbuilder.go index 1d13a8019c..498ea1a392 100644 --- a/recordbuilder.go +++ b/recordbuilder.go @@ -6,8 +6,8 @@ import ( "slices" "strings" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/zcode" ) // fieldInfo encodes the structure of a particular proc that writes a diff --git a/runtime/compiler.go b/runtime/compiler.go index 2831cf95ae..249b100ce7 100644 --- a/runtime/compiler.go +++ b/runtime/compiler.go @@ -4,12 +4,12 @@ import ( "context" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" "github.com/segmentio/ksuid" ) diff --git a/runtime/context.go b/runtime/context.go index e0506a6b18..40c1ab8432 100644 --- a/runtime/context.go +++ b/runtime/context.go @@ -4,7 +4,7 @@ import ( "context" "sync" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) // Context provides states used by all procs to provide the outside context diff --git a/runtime/exec/compact.go b/runtime/exec/compact.go index e89bf3c905..6422afffbc 100644 --- a/runtime/exec/compact.go +++ b/runtime/exec/compact.go @@ -4,12 +4,12 @@ import ( "context" "errors" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/op/meta" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/op/meta" + "github.com/brimdata/super/zbuf" "github.com/segmentio/ksuid" ) diff --git a/runtime/exec/delete.go b/runtime/exec/delete.go index cd4c0bb8c6..adae771157 100644 --- a/runtime/exec/delete.go +++ b/runtime/exec/delete.go @@ -3,8 +3,8 @@ package exec import ( "sync" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zbuf" "github.com/segmentio/ksuid" ) diff --git a/runtime/exec/query.go b/runtime/exec/query.go index 259853ac1f..8672c57812 100644 --- a/runtime/exec/query.go +++ b/runtime/exec/query.go @@ -1,9 +1,9 @@ package exec import ( - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" ) // Query runs a flowgraph as a zbuf.Puller and implements a Close() method diff --git a/runtime/exec/stats.go b/runtime/exec/stats.go index bebd2f5b6a..4c52f19232 100644 --- a/runtime/exec/stats.go +++ b/runtime/exec/stats.go @@ -3,12 +3,12 @@ package exec import ( "context" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/runtime/sam/expr/extent" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/runtime/sam/expr/extent" ) // XXX for backward compat keep this for now, and return branchstats for pool/main diff --git a/runtime/sam/expr/agg.go b/runtime/sam/expr/agg.go index 3ad812d111..5374202fec 100644 --- a/runtime/sam/expr/agg.go +++ b/runtime/sam/expr/agg.go @@ -1,8 +1,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr/agg" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr/agg" ) type Aggregator struct { diff --git a/runtime/sam/expr/agg/agg.go b/runtime/sam/expr/agg/agg.go index b0bf7b9d29..dc3cb58c9c 100644 --- a/runtime/sam/expr/agg/agg.go +++ b/runtime/sam/expr/agg/agg.go @@ -3,8 +3,8 @@ package agg import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/anymath" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/anymath" ) // MaxValueSize limits the size of a value produced by an aggregate function diff --git a/runtime/sam/expr/agg/any.go b/runtime/sam/expr/agg/any.go index 72388718e5..b88e5bc431 100644 --- a/runtime/sam/expr/agg/any.go +++ b/runtime/sam/expr/agg/any.go @@ -1,7 +1,7 @@ package agg import ( - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type Any zed.Value diff --git a/runtime/sam/expr/agg/avg.go b/runtime/sam/expr/agg/avg.go index bb425e4587..4d5a9e1f58 100644 --- a/runtime/sam/expr/agg/avg.go +++ b/runtime/sam/expr/agg/avg.go @@ -4,10 +4,10 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) type Avg struct { diff --git a/runtime/sam/expr/agg/collect.go b/runtime/sam/expr/agg/collect.go index 1877eb048b..e0a437db98 100644 --- a/runtime/sam/expr/agg/collect.go +++ b/runtime/sam/expr/agg/collect.go @@ -3,9 +3,9 @@ package agg import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) type Collect struct { diff --git a/runtime/sam/expr/agg/collectmap.go b/runtime/sam/expr/agg/collectmap.go index 3d5a890ab9..89d920393c 100644 --- a/runtime/sam/expr/agg/collectmap.go +++ b/runtime/sam/expr/agg/collectmap.go @@ -3,8 +3,8 @@ package agg import ( "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type CollectMap struct { diff --git a/runtime/sam/expr/agg/count.go b/runtime/sam/expr/agg/count.go index 4e43709857..f52dac3631 100644 --- a/runtime/sam/expr/agg/count.go +++ b/runtime/sam/expr/agg/count.go @@ -1,7 +1,7 @@ package agg import ( - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type Count uint64 diff --git a/runtime/sam/expr/agg/dcount.go b/runtime/sam/expr/agg/dcount.go index 64da6b0964..0019d6d12b 100644 --- a/runtime/sam/expr/agg/dcount.go +++ b/runtime/sam/expr/agg/dcount.go @@ -4,9 +4,9 @@ import ( "fmt" "github.com/axiomhq/hyperloglog" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) // DCount uses hyperloglog to approximate the count of unique values for diff --git a/runtime/sam/expr/agg/fuse.go b/runtime/sam/expr/agg/fuse.go index 2073d409b8..3ce7e37b1d 100644 --- a/runtime/sam/expr/agg/fuse.go +++ b/runtime/sam/expr/agg/fuse.go @@ -3,7 +3,7 @@ package agg import ( "fmt" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type fuse struct { diff --git a/runtime/sam/expr/agg/logical.go b/runtime/sam/expr/agg/logical.go index a1538eaade..f27d41ee8f 100644 --- a/runtime/sam/expr/agg/logical.go +++ b/runtime/sam/expr/agg/logical.go @@ -1,7 +1,7 @@ package agg import ( - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type And struct { diff --git a/runtime/sam/expr/agg/math.go b/runtime/sam/expr/agg/math.go index 5f779cb895..784ef4f950 100644 --- a/runtime/sam/expr/agg/math.go +++ b/runtime/sam/expr/agg/math.go @@ -3,11 +3,11 @@ package agg import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/anymath" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/anymath" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/zson" ) type consumer interface { diff --git a/runtime/sam/expr/agg/schema.go b/runtime/sam/expr/agg/schema.go index 8a733e389b..500657e135 100644 --- a/runtime/sam/expr/agg/schema.go +++ b/runtime/sam/expr/agg/schema.go @@ -3,7 +3,7 @@ package agg import ( "slices" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) // Schema constructs a fused type for types passed to Mixin. Values of any diff --git a/runtime/sam/expr/agg/union.go b/runtime/sam/expr/agg/union.go index c50f0aa304..43778dde46 100644 --- a/runtime/sam/expr/agg/union.go +++ b/runtime/sam/expr/agg/union.go @@ -1,8 +1,8 @@ package agg import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Union struct { diff --git a/runtime/sam/expr/boolean.go b/runtime/sam/expr/boolean.go index 8f4f485c20..508c625503 100644 --- a/runtime/sam/expr/boolean.go +++ b/runtime/sam/expr/boolean.go @@ -8,9 +8,9 @@ import ( "regexp" "regexp/syntax" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/zcode" ) // Boolean is a function that takes a Value and returns a boolean result diff --git a/runtime/sam/expr/bufferfilter.go b/runtime/sam/expr/bufferfilter.go index 378569b8b9..deaff3f747 100644 --- a/runtime/sam/expr/bufferfilter.go +++ b/runtime/sam/expr/bufferfilter.go @@ -4,9 +4,9 @@ import ( "fmt" "unicode/utf8" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/pkg/stringsearch" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/pkg/stringsearch" ) const ( diff --git a/runtime/sam/expr/cast.go b/runtime/sam/expr/cast.go index 42e942fd89..e437e0189c 100644 --- a/runtime/sam/expr/cast.go +++ b/runtime/sam/expr/cast.go @@ -6,11 +6,11 @@ import ( "unicode/utf8" "github.com/araddon/dateparse" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/zson" "github.com/x448/float16" ) diff --git a/runtime/sam/expr/coerce/coerce.go b/runtime/sam/expr/coerce/coerce.go index 569bb48c7c..8091648a6f 100644 --- a/runtime/sam/expr/coerce/coerce.go +++ b/runtime/sam/expr/coerce/coerce.go @@ -3,9 +3,9 @@ package coerce import ( "bytes" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/zson" "golang.org/x/exp/constraints" ) diff --git a/runtime/sam/expr/coerce/promote.go b/runtime/sam/expr/coerce/promote.go index 31efbbda2e..8d88165c7f 100644 --- a/runtime/sam/expr/coerce/promote.go +++ b/runtime/sam/expr/coerce/promote.go @@ -4,7 +4,7 @@ import ( "errors" "math" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) var ErrIncompatibleTypes = errors.New("incompatible types") diff --git a/runtime/sam/expr/context.go b/runtime/sam/expr/context.go index 24331162fc..25f0e1bdc5 100644 --- a/runtime/sam/expr/context.go +++ b/runtime/sam/expr/context.go @@ -1,7 +1,7 @@ package expr import ( - "github.com/brimdata/zed" + "github.com/brimdata/super" ) // Context is an interface to a scope and value allocator for expressions. diff --git a/runtime/sam/expr/cutter.go b/runtime/sam/expr/cutter.go index bc34cf0dfd..04346a2def 100644 --- a/runtime/sam/expr/cutter.go +++ b/runtime/sam/expr/cutter.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" ) type Cutter struct { diff --git a/runtime/sam/expr/dot.go b/runtime/sam/expr/dot.go index 869be65c70..b984906fa1 100644 --- a/runtime/sam/expr/dot.go +++ b/runtime/sam/expr/dot.go @@ -4,9 +4,9 @@ import ( "errors" "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/zcode" ) type This struct{} diff --git a/runtime/sam/expr/dropper.go b/runtime/sam/expr/dropper.go index 5286ac06c5..c14716ef4e 100644 --- a/runtime/sam/expr/dropper.go +++ b/runtime/sam/expr/dropper.go @@ -3,8 +3,8 @@ package expr import ( "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" ) type dropper struct { diff --git a/runtime/sam/expr/eval.go b/runtime/sam/expr/eval.go index 06060c9e65..adae37c6a8 100644 --- a/runtime/sam/expr/eval.go +++ b/runtime/sam/expr/eval.go @@ -8,10 +8,10 @@ import ( "math" "regexp" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) type Evaluator interface { diff --git a/runtime/sam/expr/expr_test.go b/runtime/sam/expr/expr_test.go index c0cd39d041..d15fc3cf99 100644 --- a/runtime/sam/expr/expr_test.go +++ b/runtime/sam/expr/expr_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/ztest" + "github.com/brimdata/super" + "github.com/brimdata/super/ztest" ) func testSuccessful(t *testing.T, e, input, expected string) { diff --git a/runtime/sam/expr/extent/span.go b/runtime/sam/expr/extent/span.go index e9dc79d8fa..0c30e586ce 100644 --- a/runtime/sam/expr/extent/span.go +++ b/runtime/sam/expr/extent/span.go @@ -3,10 +3,10 @@ package extent import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zson" ) // For now, we do slow-path stuff here but the interface will allow us diff --git a/runtime/sam/expr/fieldnamefinder.go b/runtime/sam/expr/fieldnamefinder.go index fe5856f58b..39c7be5d5c 100644 --- a/runtime/sam/expr/fieldnamefinder.go +++ b/runtime/sam/expr/fieldnamefinder.go @@ -4,10 +4,10 @@ import ( "encoding/binary" "math/big" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/pkg/stringsearch" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/pkg/stringsearch" + "github.com/brimdata/super/zcode" ) type FieldNameFinder struct { diff --git a/runtime/sam/expr/fieldnamefinder_test.go b/runtime/sam/expr/fieldnamefinder_test.go index df64069cd4..d476ef070e 100644 --- a/runtime/sam/expr/fieldnamefinder_test.go +++ b/runtime/sam/expr/fieldnamefinder_test.go @@ -3,8 +3,8 @@ package expr import ( "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/require" ) diff --git a/runtime/sam/expr/filter.go b/runtime/sam/expr/filter.go index 6b5427b86d..ff70304b61 100644 --- a/runtime/sam/expr/filter.go +++ b/runtime/sam/expr/filter.go @@ -6,9 +6,9 @@ import ( "net/netip" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/zcode" ) type searchByPred struct { diff --git a/runtime/sam/expr/filter_test.go b/runtime/sam/expr/filter_test.go index 387d5f765d..71d74ab24a 100644 --- a/runtime/sam/expr/filter_test.go +++ b/runtime/sam/expr/filter_test.go @@ -5,12 +5,12 @@ import ( "encoding/hex" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -197,8 +197,8 @@ func TestFilters(t *testing.T) { {`a == "S"`, false}, {`a == "s"`, false}, {`\u017F`, true}, - {`S`, false}, // Should be true; see https://github.com/brimdata/zed/issues/1207. - {`s`, false}, // Should be true; see https://github.com/brimdata/zed/issues/1207. + {`S`, false}, // Should be true; see https://github.com/brimdata/super/issues/1207. + {`s`, false}, // Should be true; see https://github.com/brimdata/super/issues/1207. }) // Test U+212A KELVIN SIGN. diff --git a/runtime/sam/expr/flattener.go b/runtime/sam/expr/flattener.go index eb890921ce..fa00fac07e 100644 --- a/runtime/sam/expr/flattener.go +++ b/runtime/sam/expr/flattener.go @@ -3,8 +3,8 @@ package expr import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Flattener struct { diff --git a/runtime/sam/expr/function/bytes.go b/runtime/sam/expr/function/bytes.go index 5454c244f2..93bd1f6893 100644 --- a/runtime/sam/expr/function/bytes.go +++ b/runtime/sam/expr/function/bytes.go @@ -4,10 +4,10 @@ import ( "encoding/base64" "encoding/hex" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#base64 +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#base64 type Base64 struct { zctx *zed.Context } @@ -34,7 +34,7 @@ func (b *Base64) Call(_ zed.Allocator, args []zed.Value) zed.Value { } } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#hex +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#hex type Hex struct { zctx *zed.Context } diff --git a/runtime/sam/expr/function/coalesce.go b/runtime/sam/expr/function/coalesce.go index a6df41b407..3ca5a9682f 100644 --- a/runtime/sam/expr/function/coalesce.go +++ b/runtime/sam/expr/function/coalesce.go @@ -1,8 +1,8 @@ package function -import "github.com/brimdata/zed" +import "github.com/brimdata/super" -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#coalesce +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#coalesce type Coalesce struct{} func (c *Coalesce) Call(_ zed.Allocator, args []zed.Value) zed.Value { diff --git a/runtime/sam/expr/function/compare.go b/runtime/sam/expr/function/compare.go index 97f6a5e643..2b6433f336 100644 --- a/runtime/sam/expr/function/compare.go +++ b/runtime/sam/expr/function/compare.go @@ -1,12 +1,12 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#compare +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#compare type Compare struct { nullsMax, nullsMin expr.CompareFn zctx *zed.Context diff --git a/runtime/sam/expr/function/fields.go b/runtime/sam/expr/function/fields.go index b1866d22ae..6139e17770 100644 --- a/runtime/sam/expr/function/fields.go +++ b/runtime/sam/expr/function/fields.go @@ -1,11 +1,11 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#fields +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#fields type Fields struct { zctx *zed.Context typ zed.Type diff --git a/runtime/sam/expr/function/flatten.go b/runtime/sam/expr/function/flatten.go index 470f68fd6f..457888bc65 100644 --- a/runtime/sam/expr/function/flatten.go +++ b/runtime/sam/expr/function/flatten.go @@ -1,12 +1,12 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/zcode" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#flatten +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#flatten type Flatten struct { zcode.Builder keyType zed.Type diff --git a/runtime/sam/expr/function/function.go b/runtime/sam/expr/function/function.go index 39a32ba049..d640576294 100644 --- a/runtime/sam/expr/function/function.go +++ b/runtime/sam/expr/function/function.go @@ -3,11 +3,11 @@ package function import ( "errors" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/anymath" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/anymath" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zson" ) var ( diff --git a/runtime/sam/expr/function/grep.go b/runtime/sam/expr/function/grep.go index c6b2c80b13..2ff9613591 100644 --- a/runtime/sam/expr/function/grep.go +++ b/runtime/sam/expr/function/grep.go @@ -1,8 +1,8 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" "golang.org/x/text/unicode/norm" ) diff --git a/runtime/sam/expr/function/grok.go b/runtime/sam/expr/function/grok.go index f6b5f9e7aa..db20dc6e3b 100644 --- a/runtime/sam/expr/function/grok.go +++ b/runtime/sam/expr/function/grok.go @@ -3,9 +3,9 @@ package function import ( "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/grok" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/grok" + "github.com/brimdata/super/zcode" ) type Grok struct { diff --git a/runtime/sam/expr/function/has.go b/runtime/sam/expr/function/has.go index 8ec011bd39..19deb01d90 100644 --- a/runtime/sam/expr/function/has.go +++ b/runtime/sam/expr/function/has.go @@ -1,8 +1,8 @@ package function -import "github.com/brimdata/zed" +import "github.com/brimdata/super" -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#has +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#has type Has struct{} func (h *Has) Call(_ zed.Allocator, args []zed.Value) zed.Value { @@ -17,7 +17,7 @@ func (h *Has) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.True } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#missing +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#missing type Missing struct { has Has } diff --git a/runtime/sam/expr/function/ip.go b/runtime/sam/expr/function/ip.go index 5041eca6ee..eea201bd0a 100644 --- a/runtime/sam/expr/function/ip.go +++ b/runtime/sam/expr/function/ip.go @@ -4,12 +4,12 @@ import ( "errors" "net/netip" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#network_of +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#network_of type NetworkOf struct { zctx *zed.Context } @@ -74,7 +74,7 @@ func addressAndMask(address, mask zed.Value) zed.Value { return val } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#cidr_match +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#cidr_match type CIDRMatch struct { zctx *zed.Context } diff --git a/runtime/sam/expr/function/ksuid.go b/runtime/sam/expr/function/ksuid.go index 1e91a144dc..07ed16b2e5 100644 --- a/runtime/sam/expr/function/ksuid.go +++ b/runtime/sam/expr/function/ksuid.go @@ -1,11 +1,11 @@ package function import ( - "github.com/brimdata/zed" + "github.com/brimdata/super" "github.com/segmentio/ksuid" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#ksuid +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#ksuid type KSUIDToString struct { zctx *zed.Context } diff --git a/runtime/sam/expr/function/len.go b/runtime/sam/expr/function/len.go index f18ded70df..62dd5b6553 100644 --- a/runtime/sam/expr/function/len.go +++ b/runtime/sam/expr/function/len.go @@ -1,10 +1,10 @@ package function import ( - "github.com/brimdata/zed" + "github.com/brimdata/super" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#len +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#len type LenFn struct { zctx *zed.Context } diff --git a/runtime/sam/expr/function/math.go b/runtime/sam/expr/function/math.go index 5bbcd62c87..0037115d26 100644 --- a/runtime/sam/expr/function/math.go +++ b/runtime/sam/expr/function/math.go @@ -3,12 +3,12 @@ package function import ( "math" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/anymath" - "github.com/brimdata/zed/runtime/sam/expr/coerce" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/anymath" + "github.com/brimdata/super/runtime/sam/expr/coerce" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#abs.md +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#abs.md type Abs struct { zctx *zed.Context } @@ -30,7 +30,7 @@ func (a *Abs) Call(_ zed.Allocator, args []zed.Value) zed.Value { return a.zctx.WrapError("abs: not a number", val) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#ceil +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#ceil type Ceil struct { zctx *zed.Context } @@ -46,7 +46,7 @@ func (c *Ceil) Call(_ zed.Allocator, args []zed.Value) zed.Value { return c.zctx.WrapError("ceil: not a number", val) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#floor +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#floor type Floor struct { zctx *zed.Context } @@ -62,7 +62,7 @@ func (f *Floor) Call(_ zed.Allocator, args []zed.Value) zed.Value { return f.zctx.WrapError("floor: not a number", val) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#log +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#log type Log struct { zctx *zed.Context } @@ -125,7 +125,7 @@ func (r *reducer) Call(_ zed.Allocator, args []zed.Value) zed.Value { return r.zctx.WrapError(r.name+": not a number", val0) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#round +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#round type Round struct { zctx *zed.Context } @@ -141,7 +141,7 @@ func (r *Round) Call(_ zed.Allocator, args []zed.Value) zed.Value { return r.zctx.WrapError("round: not a number", val) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#pow +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#pow type Pow struct { zctx *zed.Context } @@ -158,7 +158,7 @@ func (p *Pow) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewFloat64(math.Pow(x, y)) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#sqrt +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#sqrt type Sqrt struct { zctx *zed.Context } diff --git a/runtime/sam/expr/function/nestdotted.go b/runtime/sam/expr/function/nestdotted.go index 23f06d9668..5f41286a35 100644 --- a/runtime/sam/expr/function/nestdotted.go +++ b/runtime/sam/expr/function/nestdotted.go @@ -1,11 +1,11 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#nest_dotted.md +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#nest_dotted.md type NestDotted struct { zctx *zed.Context builders map[int]*zed.RecordBuilder diff --git a/runtime/sam/expr/function/parse.go b/runtime/sam/expr/function/parse.go index 0ab6d75067..90458add6e 100644 --- a/runtime/sam/expr/function/parse.go +++ b/runtime/sam/expr/function/parse.go @@ -5,12 +5,12 @@ import ( "strconv" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio/zsonio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio/zsonio" + "github.com/brimdata/super/zson" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#parse_uri +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#parse_uri type ParseURI struct { zctx *zed.Context marshaler *zson.MarshalZNGContext @@ -76,7 +76,7 @@ func (p *ParseURI) Call(_ zed.Allocator, args []zed.Value) zed.Value { return out } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#parse_zson +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#parse_zson type ParseZSON struct { zctx *zed.Context sr *strings.Reader diff --git a/runtime/sam/expr/function/regexp.go b/runtime/sam/expr/function/regexp.go index 3a117c1a9b..531a83796e 100644 --- a/runtime/sam/expr/function/regexp.go +++ b/runtime/sam/expr/function/regexp.go @@ -3,11 +3,11 @@ package function import ( "regexp" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#regexp +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#regexp type Regexp struct { builder zcode.Builder re *regexp.Regexp @@ -42,7 +42,7 @@ func (r *Regexp) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewValue(r.typ, r.builder.Bytes()) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#regexp_replace +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#regexp_replace type RegexpReplace struct { zctx *zed.Context re *regexp.Regexp diff --git a/runtime/sam/expr/function/string.go b/runtime/sam/expr/function/string.go index f33d879522..dcf364c804 100644 --- a/runtime/sam/expr/function/string.go +++ b/runtime/sam/expr/function/string.go @@ -5,11 +5,11 @@ import ( "unicode/utf8" "github.com/agnivade/levenshtein" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#replace +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#replace type Replace struct { zctx *zed.Context } @@ -36,7 +36,7 @@ func (r *Replace) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewString(strings.ReplaceAll(s, old, new)) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#run_len +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#run_len type RuneLen struct { zctx *zed.Context } @@ -53,7 +53,7 @@ func (r *RuneLen) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewInt64(int64(utf8.RuneCountInString(s))) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#lower +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#lower type ToLower struct { zctx *zed.Context } @@ -70,7 +70,7 @@ func (t *ToLower) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewString(strings.ToLower(s)) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#upper +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#upper type ToUpper struct { zctx *zed.Context } @@ -91,7 +91,7 @@ type Trim struct { zctx *zed.Context } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#trim +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#trim func (t *Trim) Call(_ zed.Allocator, args []zed.Value) zed.Value { val := args[0].Under() if !val.IsString() { @@ -104,7 +104,7 @@ func (t *Trim) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewString(strings.TrimSpace(s)) } -// // https://github.com/brimdata/zed/blob/main/docs/language/functions.md#split +// // https://github.com/brimdata/super/blob/main/docs/language/functions.md#split type Split struct { zctx *zed.Context typ zed.Type @@ -138,7 +138,7 @@ func (s *Split) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewValue(s.typ, b) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#join +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#join type Join struct { zctx *zed.Context builder strings.Builder @@ -171,7 +171,7 @@ func (j *Join) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewString(b.String()) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#levenshtein +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#levenshtein type Levenshtein struct { zctx *zed.Context } diff --git a/runtime/sam/expr/function/time.go b/runtime/sam/expr/function/time.go index bbdf11ecaa..27eafb03d4 100644 --- a/runtime/sam/expr/function/time.go +++ b/runtime/sam/expr/function/time.go @@ -1,20 +1,20 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/runtime/sam/expr/coerce" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/runtime/sam/expr/coerce" "github.com/lestrrat-go/strftime" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#now +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#now type Now struct{} func (n *Now) Call(_ zed.Allocator, _ []zed.Value) zed.Value { return zed.NewTime(nano.Now()) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#bucket +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#bucket type Bucket struct { name string zctx *zed.Context @@ -47,7 +47,7 @@ func (b *Bucket) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewTime(nano.Ts(v).Trunc(bin)) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#strftime +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#strftime type Strftime struct { zctx *zed.Context formatter *strftime.Strftime diff --git a/runtime/sam/expr/function/types.go b/runtime/sam/expr/function/types.go index ccf4b7e597..e6797ffef4 100644 --- a/runtime/sam/expr/function/types.go +++ b/runtime/sam/expr/function/types.go @@ -1,12 +1,12 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#typeof +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#typeof type TypeOf struct { zctx *zed.Context } @@ -24,7 +24,7 @@ func (t *typeUnder) Call(_ zed.Allocator, args []zed.Value) zed.Value { return t.zctx.LookupTypeValue(typ) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#nameof +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#nameof type NameOf struct { zctx *zed.Context } @@ -46,7 +46,7 @@ func (n *NameOf) Call(_ zed.Allocator, args []zed.Value) zed.Value { return n.zctx.Missing() } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#typename +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#typename type typeName struct { zctx *zed.Context } @@ -73,7 +73,7 @@ func (t *typeName) Call(_ zed.Allocator, args []zed.Value) zed.Value { return t.zctx.LookupTypeValue(typ) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#error +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#error type Error struct { zctx *zed.Context } @@ -82,14 +82,14 @@ func (e *Error) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewValue(e.zctx.LookupTypeError(args[0].Type()), args[0].Bytes()) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#iserr +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#iserr type IsErr struct{} func (*IsErr) Call(_ zed.Allocator, args []zed.Value) zed.Value { return zed.NewBool(args[0].IsError()) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#is +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#is type Is struct { zctx *zed.Context } @@ -185,7 +185,7 @@ func (h *HasError) hasError(t zed.Type, b zcode.Bytes) (bool, bool) { return hasErr, canCache } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#quiet +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#quiet type Quiet struct { zctx *zed.Context } @@ -198,7 +198,7 @@ func (q *Quiet) Call(_ zed.Allocator, args []zed.Value) zed.Value { return val } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#kind +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#kind type Kind struct { zctx *zed.Context } diff --git a/runtime/sam/expr/function/under.go b/runtime/sam/expr/function/under.go index 28920cb92f..261502cf74 100644 --- a/runtime/sam/expr/function/under.go +++ b/runtime/sam/expr/function/under.go @@ -1,10 +1,10 @@ package function import ( - "github.com/brimdata/zed" + "github.com/brimdata/super" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#under +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#under type Under struct { zctx *zed.Context } diff --git a/runtime/sam/expr/function/unflatten.go b/runtime/sam/expr/function/unflatten.go index ae81a348d8..b7e5b1537f 100644 --- a/runtime/sam/expr/function/unflatten.go +++ b/runtime/sam/expr/function/unflatten.go @@ -3,13 +3,13 @@ package function import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#unflatten +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#unflatten type Unflatten struct { zctx *zed.Context diff --git a/runtime/sam/expr/functions_test.go b/runtime/sam/expr/functions_test.go index 96905a0de6..724b92ebee 100644 --- a/runtime/sam/expr/functions_test.go +++ b/runtime/sam/expr/functions_test.go @@ -4,7 +4,7 @@ import ( "errors" "testing" - "github.com/brimdata/zed/runtime/sam/expr/function" + "github.com/brimdata/super/runtime/sam/expr/function" ) func TestBadFunction(t *testing.T) { diff --git a/runtime/sam/expr/literal.go b/runtime/sam/expr/literal.go index e9326557a5..e194584e5a 100644 --- a/runtime/sam/expr/literal.go +++ b/runtime/sam/expr/literal.go @@ -1,6 +1,6 @@ package expr -import "github.com/brimdata/zed" +import "github.com/brimdata/super" type Literal struct { val zed.Value diff --git a/runtime/sam/expr/lval.go b/runtime/sam/expr/lval.go index e1f60d3080..bb0314dcb4 100644 --- a/runtime/sam/expr/lval.go +++ b/runtime/sam/expr/lval.go @@ -3,9 +3,9 @@ package expr import ( "errors" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/zson" ) type Lval struct { diff --git a/runtime/sam/expr/map.go b/runtime/sam/expr/map.go index 4d15b557d3..b9a32e5d8c 100644 --- a/runtime/sam/expr/map.go +++ b/runtime/sam/expr/map.go @@ -1,8 +1,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type mapCall struct { diff --git a/runtime/sam/expr/putter.go b/runtime/sam/expr/putter.go index 3b3dc5250e..0dd2f36014 100644 --- a/runtime/sam/expr/putter.go +++ b/runtime/sam/expr/putter.go @@ -4,9 +4,9 @@ import ( "fmt" "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/zcode" ) // Putter is an Evaluator that modifies the record stream with computed values. diff --git a/runtime/sam/expr/renamer.go b/runtime/sam/expr/renamer.go index beb5233f71..443a2e5200 100644 --- a/runtime/sam/expr/renamer.go +++ b/runtime/sam/expr/renamer.go @@ -5,8 +5,8 @@ import ( "fmt" "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" ) // Renamer renames one or more fields in a record. A field can only be diff --git a/runtime/sam/expr/result/buffer.go b/runtime/sam/expr/result/buffer.go index 8186502a9d..7a15ea86e7 100644 --- a/runtime/sam/expr/result/buffer.go +++ b/runtime/sam/expr/result/buffer.go @@ -1,9 +1,9 @@ package result import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" ) type Buffer zcode.Bytes diff --git a/runtime/sam/expr/shaper.go b/runtime/sam/expr/shaper.go index e521ec5c0f..ff8843a56b 100644 --- a/runtime/sam/expr/shaper.go +++ b/runtime/sam/expr/shaper.go @@ -5,9 +5,9 @@ import ( "slices" "sort" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) // A ShaperTransform represents one of the different transforms that a diff --git a/runtime/sam/expr/shaper_test.go b/runtime/sam/expr/shaper_test.go index 5f39ab2dbf..32524bada0 100644 --- a/runtime/sam/expr/shaper_test.go +++ b/runtime/sam/expr/shaper_test.go @@ -3,7 +3,7 @@ package expr import ( "testing" - "github.com/brimdata/zed" + "github.com/brimdata/super" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/runtime/sam/expr/slice.go b/runtime/sam/expr/slice.go index 4f5af5e329..b9ca59257e 100644 --- a/runtime/sam/expr/slice.go +++ b/runtime/sam/expr/slice.go @@ -4,9 +4,9 @@ import ( "errors" "unicode/utf8" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/zcode" ) type Slice struct { diff --git a/runtime/sam/expr/sort.go b/runtime/sam/expr/sort.go index d17d6cf64f..1d9b1984f6 100644 --- a/runtime/sam/expr/sort.go +++ b/runtime/sam/expr/sort.go @@ -8,9 +8,9 @@ import ( "slices" "sort" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/zio" ) type SortEvaluator struct { diff --git a/runtime/sam/expr/sort_test.go b/runtime/sam/expr/sort_test.go index 3ace453484..6b782b983f 100644 --- a/runtime/sam/expr/sort_test.go +++ b/runtime/sam/expr/sort_test.go @@ -5,9 +5,9 @@ import ( "strconv" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/zson" ) func BenchmarkSort(b *testing.B) { diff --git a/runtime/sam/expr/udf.go b/runtime/sam/expr/udf.go index 1e51e96f48..9ea186e4e8 100644 --- a/runtime/sam/expr/udf.go +++ b/runtime/sam/expr/udf.go @@ -3,7 +3,7 @@ package expr import ( "slices" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) const maxStackDepth = 10_000 diff --git a/runtime/sam/expr/values.go b/runtime/sam/expr/values.go index 6e1870af4f..d8f33d2ca3 100644 --- a/runtime/sam/expr/values.go +++ b/runtime/sam/expr/values.go @@ -3,8 +3,8 @@ package expr import ( "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type recordExpr struct { diff --git a/runtime/sam/expr/var.go b/runtime/sam/expr/var.go index 7c0f189c54..8aee0bf43f 100644 --- a/runtime/sam/expr/var.go +++ b/runtime/sam/expr/var.go @@ -1,6 +1,6 @@ package expr -import "github.com/brimdata/zed" +import "github.com/brimdata/super" type Var int diff --git a/runtime/sam/expr/ztests/regexp-escapes.yaml b/runtime/sam/expr/ztests/regexp-escapes.yaml index a5c5e0769e..2b3db8577f 100644 --- a/runtime/sam/expr/ztests/regexp-escapes.yaml +++ b/runtime/sam/expr/ztests/regexp-escapes.yaml @@ -1,5 +1,5 @@ # Add \a and \v when they can be be represented in a ZSON string -# (https://github.com/brimdata/zed/issues/3041). +# (https://github.com/brimdata/super/issues/3041). zed: '/\f\t\n\r\(\)\*\+\.\/\?\[\]\{\}/' input: &input | diff --git a/runtime/sam/op/apply.go b/runtime/sam/op/apply.go index 472a89e024..d295ad2f4c 100644 --- a/runtime/sam/op/apply.go +++ b/runtime/sam/op/apply.go @@ -1,10 +1,10 @@ package op import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" ) type applier struct { diff --git a/runtime/sam/op/catcher.go b/runtime/sam/op/catcher.go index c77b3fc9cf..bd2bb84a9d 100644 --- a/runtime/sam/op/catcher.go +++ b/runtime/sam/op/catcher.go @@ -4,7 +4,7 @@ import ( "fmt" "runtime/debug" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/zbuf" ) // Catcher wraps an Interface with a Pull method that recovers panics diff --git a/runtime/sam/op/combine/combine.go b/runtime/sam/op/combine/combine.go index e90ef48229..9a9d08161e 100644 --- a/runtime/sam/op/combine/combine.go +++ b/runtime/sam/op/combine/combine.go @@ -5,9 +5,9 @@ import ( "context" "sync" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" "golang.org/x/sync/errgroup" ) diff --git a/runtime/sam/op/explode/explode.go b/runtime/sam/op/explode/explode.go index 9ca1485f30..6bb78f1d12 100644 --- a/runtime/sam/op/explode/explode.go +++ b/runtime/sam/op/explode/explode.go @@ -1,10 +1,10 @@ package explode import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" ) // A an explode Proc is a proc that, given an input record and a diff --git a/runtime/sam/op/exprswitch/exprswitch.go b/runtime/sam/op/exprswitch/exprswitch.go index bfb8f9cf4c..1fd5cbd78a 100644 --- a/runtime/sam/op/exprswitch/exprswitch.go +++ b/runtime/sam/op/exprswitch/exprswitch.go @@ -1,11 +1,11 @@ package exprswitch import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" ) type ExprSwitch struct { diff --git a/runtime/sam/op/fork/fork.go b/runtime/sam/op/fork/fork.go index a55772e5b0..0718e0a1c4 100644 --- a/runtime/sam/op/fork/fork.go +++ b/runtime/sam/op/fork/fork.go @@ -1,9 +1,9 @@ package fork import ( - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" ) type Op struct { diff --git a/runtime/sam/op/fuse/fuse.go b/runtime/sam/op/fuse/fuse.go index 793933b82d..c2c17d0b7a 100644 --- a/runtime/sam/op/fuse/fuse.go +++ b/runtime/sam/op/fuse/fuse.go @@ -3,9 +3,9 @@ package fuse import ( "sync" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" ) var MemMaxBytes = 128 * 1024 * 1024 diff --git a/runtime/sam/op/fuse/fuser.go b/runtime/sam/op/fuse/fuser.go index 8c82cc41e1..1c6b03b1ad 100644 --- a/runtime/sam/op/fuse/fuser.go +++ b/runtime/sam/op/fuse/fuser.go @@ -1,10 +1,10 @@ package fuse import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/expr/agg" - "github.com/brimdata/zed/runtime/sam/op/spill" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/expr/agg" + "github.com/brimdata/super/runtime/sam/op/spill" ) // Fuser buffers records written to it, assembling from them a unified schema of diff --git a/runtime/sam/op/groupby/groupby.go b/runtime/sam/op/groupby/groupby.go index c33b0aa1eb..4fa7993df3 100644 --- a/runtime/sam/op/groupby/groupby.go +++ b/runtime/sam/op/groupby/groupby.go @@ -7,15 +7,15 @@ import ( "slices" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/runtime/sam/op/spill" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/runtime/sam/op/spill" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" ) var DefaultLimit = 1000000 diff --git a/runtime/sam/op/groupby/groupby_test.go b/runtime/sam/op/groupby/groupby_test.go index 93724525f4..9fe6e1dbcc 100644 --- a/runtime/sam/op/groupby/groupby_test.go +++ b/runtime/sam/op/groupby/groupby_test.go @@ -9,18 +9,18 @@ import ( "sync" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/ast" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/op/groupby" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zsonio" - "github.com/brimdata/zed/ztest" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/ast" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/op/groupby" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zsonio" + "github.com/brimdata/super/ztest" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/runtime/sam/op/groupby/row.go b/runtime/sam/op/groupby/row.go index f49aa457f7..58c5dc532e 100644 --- a/runtime/sam/op/groupby/row.go +++ b/runtime/sam/op/groupby/row.go @@ -3,10 +3,10 @@ package groupby import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/expr/agg" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/expr/agg" + "github.com/brimdata/super/zson" ) type valRow []agg.Function diff --git a/runtime/sam/op/head/head.go b/runtime/sam/op/head/head.go index ee775ad5d1..ae0aff8fa2 100644 --- a/runtime/sam/op/head/head.go +++ b/runtime/sam/op/head/head.go @@ -1,7 +1,7 @@ package head import ( - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/zbuf" ) type Op struct { diff --git a/runtime/sam/op/join/join.go b/runtime/sam/op/join/join.go index 87d3367a06..e44e736fed 100644 --- a/runtime/sam/op/join/join.go +++ b/runtime/sam/op/join/join.go @@ -5,13 +5,13 @@ import ( "fmt" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op/sort" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op/sort" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" ) type Op struct { diff --git a/runtime/sam/op/join/puller.go b/runtime/sam/op/join/puller.go index 0497834d44..5ad1e01a29 100644 --- a/runtime/sam/op/join/puller.go +++ b/runtime/sam/op/join/puller.go @@ -3,9 +3,9 @@ package join import ( "context" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" ) type puller struct { diff --git a/runtime/sam/op/load/load.go b/runtime/sam/op/load/load.go index afa64dbbf2..b3b5bf3a42 100644 --- a/runtime/sam/op/load/load.go +++ b/runtime/sam/op/load/load.go @@ -1,10 +1,10 @@ package load import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zbuf" "github.com/segmentio/ksuid" ) diff --git a/runtime/sam/op/merge/merge.go b/runtime/sam/op/merge/merge.go index f54515a319..5cb5b442f6 100644 --- a/runtime/sam/op/merge/merge.go +++ b/runtime/sam/op/merge/merge.go @@ -5,11 +5,11 @@ import ( "context" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" ) // Proc merges multiple upstream Pullers into one downstream Puller. diff --git a/runtime/sam/op/merge/merge_test.go b/runtime/sam/op/merge/merge_test.go index 8f0ff5b29f..d92e78755e 100644 --- a/runtime/sam/op/merge/merge_test.go +++ b/runtime/sam/op/merge/merge_test.go @@ -6,14 +6,14 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op/merge" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op/merge" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zsonio" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/runtime/sam/op/meta/deleter.go b/runtime/sam/op/meta/deleter.go index abf6329456..0f5df2d63b 100644 --- a/runtime/sam/op/meta/deleter.go +++ b/runtime/sam/op/meta/deleter.go @@ -4,12 +4,12 @@ import ( "errors" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/runtime/sam/op/meta/lister.go b/runtime/sam/op/meta/lister.go index a5ee7d1a44..23a1b90090 100644 --- a/runtime/sam/op/meta/lister.go +++ b/runtime/sam/op/meta/lister.go @@ -6,14 +6,14 @@ import ( "sort" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" "golang.org/x/sync/errgroup" ) diff --git a/runtime/sam/op/meta/pruner.go b/runtime/sam/op/meta/pruner.go index 0cb22ebfa7..a09c605fba 100644 --- a/runtime/sam/op/meta/pruner.go +++ b/runtime/sam/op/meta/pruner.go @@ -1,8 +1,8 @@ package meta import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" ) type pruner struct { diff --git a/runtime/sam/op/meta/scanner.go b/runtime/sam/op/meta/scanner.go index 3ea86e14d8..8af89a8292 100644 --- a/runtime/sam/op/meta/scanner.go +++ b/runtime/sam/op/meta/scanner.go @@ -4,14 +4,14 @@ import ( "context" "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/runtime/sam/op/meta/sequence.go b/runtime/sam/op/meta/sequence.go index d788c7d50f..b44a3f0e78 100644 --- a/runtime/sam/op/meta/sequence.go +++ b/runtime/sam/op/meta/sequence.go @@ -5,17 +5,17 @@ import ( "errors" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/lake/seekindex" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op/merge" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/lake/seekindex" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op/merge" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) // SequenceScanner implements an op that pulls metadata partitions to scan diff --git a/runtime/sam/op/meta/slicer.go b/runtime/sam/op/meta/slicer.go index 4643552a9b..618220252f 100644 --- a/runtime/sam/op/meta/slicer.go +++ b/runtime/sam/op/meta/slicer.go @@ -5,13 +5,13 @@ import ( "fmt" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zson" ) // Slicer implements an op that pulls data objects and organizes diff --git a/runtime/sam/op/mirror/mirror.go b/runtime/sam/op/mirror/mirror.go index 96d2a1f03c..94bb7a038d 100644 --- a/runtime/sam/op/mirror/mirror.go +++ b/runtime/sam/op/mirror/mirror.go @@ -1,9 +1,9 @@ package mirror import ( - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" ) type Op struct { diff --git a/runtime/sam/op/mux.go b/runtime/sam/op/mux.go index 7841286108..79465949c1 100644 --- a/runtime/sam/op/mux.go +++ b/runtime/sam/op/mux.go @@ -4,8 +4,8 @@ import ( "context" "sync" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zbuf" ) // Mux implements the muxing of a set of parallel paths at the output of diff --git a/runtime/sam/op/op.go b/runtime/sam/op/op.go index f8b71f079e..bff18fb393 100644 --- a/runtime/sam/op/op.go +++ b/runtime/sam/op/op.go @@ -1,7 +1,7 @@ package op import ( - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/zbuf" ) const BatchLen = 100 diff --git a/runtime/sam/op/router.go b/runtime/sam/op/router.go index bfdef13147..368573cb2d 100644 --- a/runtime/sam/op/router.go +++ b/runtime/sam/op/router.go @@ -5,8 +5,8 @@ import ( "slices" "sync" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" ) type Selector interface { diff --git a/runtime/sam/op/shape/shape.go b/runtime/sam/op/shape/shape.go index e4e8ca9023..beebbe30ff 100644 --- a/runtime/sam/op/shape/shape.go +++ b/runtime/sam/op/shape/shape.go @@ -3,9 +3,9 @@ package shape import ( "sync" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" ) var MemMaxBytes = 128 * 1024 * 1024 diff --git a/runtime/sam/op/shape/shaper.go b/runtime/sam/op/shape/shaper.go index 06a115b512..fed6d8ff1a 100644 --- a/runtime/sam/op/shape/shaper.go +++ b/runtime/sam/op/shape/shaper.go @@ -4,9 +4,9 @@ import ( "errors" "hash/maphash" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/op/spill" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/op/spill" + "github.com/brimdata/super/zcode" ) type Shaper struct { diff --git a/runtime/sam/op/sort/sort.go b/runtime/sam/op/sort/sort.go index fdcca455b8..ff0220d34e 100644 --- a/runtime/sam/op/sort/sort.go +++ b/runtime/sam/op/sort/sort.go @@ -3,14 +3,14 @@ package sort import ( "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/runtime/sam/op/spill" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/runtime/sam/op/spill" + "github.com/brimdata/super/zbuf" ) // MemMaxBytes specifies the maximum amount of memory that each sort proc diff --git a/runtime/sam/op/sort/sort_test.go b/runtime/sam/op/sort/sort_test.go index b81f5cc50b..72889b0235 100644 --- a/runtime/sam/op/sort/sort_test.go +++ b/runtime/sam/op/sort/sort_test.go @@ -7,8 +7,8 @@ import ( "strings" "testing" - sortproc "github.com/brimdata/zed/runtime/sam/op/sort" - "github.com/brimdata/zed/ztest" + sortproc "github.com/brimdata/super/runtime/sam/op/sort" + "github.com/brimdata/super/ztest" ) // Data sets for tests: diff --git a/runtime/sam/op/spill/file.go b/runtime/sam/op/spill/file.go index a2b8b6dd55..f3eaa4b5be 100644 --- a/runtime/sam/op/spill/file.go +++ b/runtime/sam/op/spill/file.go @@ -4,11 +4,11 @@ import ( "bufio" "os" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/bufwriter" - "github.com/brimdata/zed/pkg/fs" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/bufwriter" + "github.com/brimdata/super/pkg/fs" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" ) // File provides a means to write a sequence of zng records to temporary diff --git a/runtime/sam/op/spill/merge.go b/runtime/sam/op/spill/merge.go index 8e8e756f62..f25efb9d6c 100644 --- a/runtime/sam/op/spill/merge.go +++ b/runtime/sam/op/spill/merge.go @@ -7,9 +7,9 @@ import ( "path/filepath" "strconv" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zio" ) // MergeSort manages "runs" (files of sorted zng records) that are spilled to diff --git a/runtime/sam/op/spill/peeker.go b/runtime/sam/op/spill/peeker.go index 1fdc3e64d1..0b085b786a 100644 --- a/runtime/sam/op/spill/peeker.go +++ b/runtime/sam/op/spill/peeker.go @@ -3,8 +3,8 @@ package spill import ( "context" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" ) type peeker struct { diff --git a/runtime/sam/op/switcher/switch.go b/runtime/sam/op/switcher/switch.go index 275d5a65f4..4f552e1310 100644 --- a/runtime/sam/op/switcher/switch.go +++ b/runtime/sam/op/switcher/switch.go @@ -1,11 +1,11 @@ package switcher import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" ) type Selector struct { diff --git a/runtime/sam/op/tail/tail.go b/runtime/sam/op/tail/tail.go index 7dd1eb26bf..738497ad8c 100644 --- a/runtime/sam/op/tail/tail.go +++ b/runtime/sam/op/tail/tail.go @@ -3,7 +3,7 @@ package tail import ( "slices" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/zbuf" ) type Op struct { diff --git a/runtime/sam/op/top/top.go b/runtime/sam/op/top/top.go index c8de058987..faab2d5698 100644 --- a/runtime/sam/op/top/top.go +++ b/runtime/sam/op/top/top.go @@ -3,10 +3,10 @@ package top import ( "container/heap" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op/sort" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op/sort" + "github.com/brimdata/super/zbuf" ) const defaultTopLimit = 100 diff --git a/runtime/sam/op/traverse/eval.go b/runtime/sam/op/traverse/eval.go index 7d1729c234..5ff12feab8 100644 --- a/runtime/sam/op/traverse/eval.go +++ b/runtime/sam/op/traverse/eval.go @@ -3,10 +3,10 @@ package traverse import ( "context" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" ) // Expr provides provides glue to run a traversal subquery in expression diff --git a/runtime/sam/op/traverse/over.go b/runtime/sam/op/traverse/over.go index dcbc9cfafc..7ce8f65b3a 100644 --- a/runtime/sam/op/traverse/over.go +++ b/runtime/sam/op/traverse/over.go @@ -3,11 +3,11 @@ package traverse import ( "context" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" ) type Over struct { diff --git a/runtime/sam/op/traverse/scope.go b/runtime/sam/op/traverse/scope.go index 55946ccacc..3d12c10c3f 100644 --- a/runtime/sam/op/traverse/scope.go +++ b/runtime/sam/op/traverse/scope.go @@ -4,10 +4,10 @@ import ( "context" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" ) type Scope struct { diff --git a/runtime/sam/op/uniq/uniq.go b/runtime/sam/op/uniq/uniq.go index 03f7eaeb17..dc79f18dcb 100644 --- a/runtime/sam/op/uniq/uniq.go +++ b/runtime/sam/op/uniq/uniq.go @@ -3,10 +3,10 @@ package uniq import ( "bytes" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" ) type Op struct { diff --git a/runtime/sam/op/yield/yield.go b/runtime/sam/op/yield/yield.go index 24da226f2b..61e26329e8 100644 --- a/runtime/sam/op/yield/yield.go +++ b/runtime/sam/op/yield/yield.go @@ -1,9 +1,9 @@ package yield import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" ) type Op struct { diff --git a/runtime/vam/expr/arith.go b/runtime/vam/expr/arith.go index 6787219609..f1d06e3e64 100644 --- a/runtime/vam/expr/arith.go +++ b/runtime/vam/expr/arith.go @@ -5,9 +5,9 @@ package expr import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/vector" ) type Arith struct { diff --git a/runtime/vam/expr/arith_test.go b/runtime/vam/expr/arith_test.go index 4eac9e30e4..bdfc801e00 100644 --- a/runtime/vam/expr/arith_test.go +++ b/runtime/vam/expr/arith_test.go @@ -3,8 +3,8 @@ package expr import ( "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" "github.com/stretchr/testify/assert" ) diff --git a/runtime/vam/expr/arithfuncs.go b/runtime/vam/expr/arithfuncs.go index 2c5ca45ebe..d9bbe49a5e 100644 --- a/runtime/vam/expr/arithfuncs.go +++ b/runtime/vam/expr/arithfuncs.go @@ -3,8 +3,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) func arithAddIntFlatFlat(lhs, rhs vector.Any) vector.Any { diff --git a/runtime/vam/expr/coerce.go b/runtime/vam/expr/coerce.go index c2da7450c4..77bb327e0d 100644 --- a/runtime/vam/expr/coerce.go +++ b/runtime/vam/expr/coerce.go @@ -3,10 +3,10 @@ package expr import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/vector" ) // coerceVals checks if a and b are type compatible for comparison diff --git a/runtime/vam/expr/compare.go b/runtime/vam/expr/compare.go index 7ac0a26908..faec542c65 100644 --- a/runtime/vam/expr/compare.go +++ b/runtime/vam/expr/compare.go @@ -3,9 +3,9 @@ package expr //go:generate go run gencomparefuncs.go import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/vector" ) type Compare struct { diff --git a/runtime/vam/expr/compare_test.go b/runtime/vam/expr/compare_test.go index 84840683b6..30d25ba774 100644 --- a/runtime/vam/expr/compare_test.go +++ b/runtime/vam/expr/compare_test.go @@ -3,8 +3,8 @@ package expr import ( "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" "github.com/stretchr/testify/assert" ) diff --git a/runtime/vam/expr/comparefuncs.go b/runtime/vam/expr/comparefuncs.go index cd3864e406..baed7e315b 100644 --- a/runtime/vam/expr/comparefuncs.go +++ b/runtime/vam/expr/comparefuncs.go @@ -3,8 +3,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) func compareEQIntFlatFlat(lhs, rhs vector.Any) vector.Any { diff --git a/runtime/vam/expr/dot.go b/runtime/vam/expr/dot.go index d90ae2a596..d998b78d44 100644 --- a/runtime/vam/expr/dot.go +++ b/runtime/vam/expr/dot.go @@ -1,9 +1,9 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/vector" ) type This struct{} diff --git a/runtime/vam/expr/dropper.go b/runtime/vam/expr/dropper.go index 2b48a8a960..fd25af4d7c 100644 --- a/runtime/vam/expr/dropper.go +++ b/runtime/vam/expr/dropper.go @@ -3,9 +3,9 @@ package expr import ( "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/vector" ) // Dropper drops one or more fields in a record. If it drops all fields of a diff --git a/runtime/vam/expr/eval.go b/runtime/vam/expr/eval.go index 4fad1b05f2..75aa42f7e5 100644 --- a/runtime/vam/expr/eval.go +++ b/runtime/vam/expr/eval.go @@ -1,7 +1,7 @@ package expr import ( - "github.com/brimdata/zed/vector" + "github.com/brimdata/super/vector" ) type Evaluator interface { diff --git a/runtime/vam/expr/function/bytes.go b/runtime/vam/expr/function/bytes.go index 7f1b19a89a..ac56d9c731 100644 --- a/runtime/vam/expr/function/bytes.go +++ b/runtime/vam/expr/function/bytes.go @@ -4,11 +4,11 @@ import ( "encoding/base64" "encoding/hex" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#base64 +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#base64 type Base64 struct { zctx *zed.Context } @@ -55,7 +55,7 @@ func (b *Base64) Call(args ...vector.Any) vector.Any { } } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#hex +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#hex type Hex struct { zctx *zed.Context } diff --git a/runtime/vam/expr/function/coalesce.go b/runtime/vam/expr/function/coalesce.go index d2f5c220b8..754d92b5b9 100644 --- a/runtime/vam/expr/function/coalesce.go +++ b/runtime/vam/expr/function/coalesce.go @@ -1,11 +1,11 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#coalesce +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#coalesce type Coalesce struct { tags []uint32 viewIndexes [][]uint32 diff --git a/runtime/vam/expr/function/errors.go b/runtime/vam/expr/function/errors.go index 5950cd4ed9..9401e38f7b 100644 --- a/runtime/vam/expr/function/errors.go +++ b/runtime/vam/expr/function/errors.go @@ -1,11 +1,11 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#quiet +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#quiet type Quiet struct { zctx *zed.Context } diff --git a/runtime/vam/expr/function/fields.go b/runtime/vam/expr/function/fields.go index 455e09918e..99f1f4bc49 100644 --- a/runtime/vam/expr/function/fields.go +++ b/runtime/vam/expr/function/fields.go @@ -1,11 +1,11 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#fields +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#fields type Fields struct { zctx *zed.Context innerTyp *zed.TypeArray diff --git a/runtime/vam/expr/function/function.go b/runtime/vam/expr/function/function.go index 98e025a90b..da7feea0a2 100644 --- a/runtime/vam/expr/function/function.go +++ b/runtime/vam/expr/function/function.go @@ -3,11 +3,11 @@ package function import ( "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime/sam/expr/function" - "github.com/brimdata/zed/runtime/vam/expr" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime/sam/expr/function" + "github.com/brimdata/super/runtime/vam/expr" + "github.com/brimdata/super/vector" ) func New(zctx *zed.Context, name string, narg int) (expr.Function, field.Path, error) { diff --git a/runtime/vam/expr/function/len.go b/runtime/vam/expr/function/len.go index afa6a684e1..1380b2f6f7 100644 --- a/runtime/vam/expr/function/len.go +++ b/runtime/vam/expr/function/len.go @@ -1,12 +1,12 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr/function" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr/function" + "github.com/brimdata/super/vector" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#len +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#len type Len struct { zctx *zed.Context } diff --git a/runtime/vam/expr/function/networkof.go b/runtime/vam/expr/function/networkof.go index a2b38f1145..c7ee1fd6a4 100644 --- a/runtime/vam/expr/function/networkof.go +++ b/runtime/vam/expr/function/networkof.go @@ -3,11 +3,11 @@ package function import ( "net/netip" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#network_of +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#network_of type NetworkOf struct { zctx *zed.Context } diff --git a/runtime/vam/expr/function/string.go b/runtime/vam/expr/function/string.go index 77e48fbab9..f7fe133575 100644 --- a/runtime/vam/expr/function/string.go +++ b/runtime/vam/expr/function/string.go @@ -5,11 +5,11 @@ import ( "unicode/utf8" "github.com/agnivade/levenshtein" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) -// // https://github.com/brimdata/zed/blob/main/docs/language/functions.md#join +// // https://github.com/brimdata/super/blob/main/docs/language/functions.md#join type Join struct { zctx *zed.Context builder strings.Builder @@ -52,7 +52,7 @@ func (j *Join) Call(args ...vector.Any) vector.Any { return out } -// // https://github.com/brimdata/zed/blob/main/docs/language/functions.md#levenshtein +// // https://github.com/brimdata/super/blob/main/docs/language/functions.md#levenshtein type Levenshtein struct { zctx *zed.Context } @@ -74,7 +74,7 @@ func (l *Levenshtein) Call(args ...vector.Any) vector.Any { return out } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#replace +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#replace type Replace struct { zctx *zed.Context } @@ -108,7 +108,7 @@ func (r *Replace) Call(args ...vector.Any) vector.Any { return vector.NewDynamic(tags, []vector.Any{out, errval}) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#run_len +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#run_len type RuneLen struct { zctx *zed.Context } @@ -129,7 +129,7 @@ func (r *RuneLen) Call(args ...vector.Any) vector.Any { return out } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#split +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#split type Split struct { zctx *zed.Context } @@ -165,7 +165,7 @@ func (s *Split) Call(args ...vector.Any) vector.Any { return vector.NewArray(s.zctx.LookupTypeArray(zed.TypeString), offsets, values, nulls) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#lower +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#lower type ToLower struct { zctx *zed.Context } @@ -186,7 +186,7 @@ func (t *ToLower) Call(args ...vector.Any) vector.Any { return out } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#upper +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#upper type ToUpper struct { zctx *zed.Context } @@ -207,7 +207,7 @@ func (t *ToUpper) Call(args ...vector.Any) vector.Any { return out } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#trim +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#trim type Trim struct { zctx *zed.Context } diff --git a/runtime/vam/expr/function/time.go b/runtime/vam/expr/function/time.go index 63a22f29b3..00f48a119a 100644 --- a/runtime/vam/expr/function/time.go +++ b/runtime/vam/expr/function/time.go @@ -1,13 +1,13 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/vector" "github.com/lestrrat-go/strftime" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#strftime +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#strftime type Strftime struct { zctx *zed.Context } diff --git a/runtime/vam/expr/function/types.go b/runtime/vam/expr/function/types.go index bd7a5feecc..1f9a9dae4d 100644 --- a/runtime/vam/expr/function/types.go +++ b/runtime/vam/expr/function/types.go @@ -1,11 +1,11 @@ package function import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#typeof +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#typeof type TypeOf struct { zctx *zed.Context } @@ -15,7 +15,7 @@ func (t *TypeOf) Call(args ...vector.Any) vector.Any { return vector.NewConst(val, args[0].Len(), nil) } -// https://github.com/brimdata/zed/blob/main/docs/language/functions.md#kind +// https://github.com/brimdata/super/blob/main/docs/language/functions.md#kind type Kind struct { zctx *zed.Context } diff --git a/runtime/vam/expr/genarithfuncs.go b/runtime/vam/expr/genarithfuncs.go index 12358bebae..1c3e237fb7 100644 --- a/runtime/vam/expr/genarithfuncs.go +++ b/runtime/vam/expr/genarithfuncs.go @@ -10,7 +10,7 @@ import ( "os" "strings" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super/vector" ) var opToAlpha = map[string]string{ @@ -27,8 +27,8 @@ func main() { fmt.Fprintln(&buf) fmt.Fprintln(&buf, "package expr") fmt.Fprintln(&buf, "import (") - fmt.Fprintln(&buf, `"github.com/brimdata/zed/vector"`) - fmt.Fprintln(&buf, `"github.com/brimdata/zed"`) + fmt.Fprintln(&buf, `"github.com/brimdata/super/vector"`) + fmt.Fprintln(&buf, `"github.com/brimdata/super"`) fmt.Fprintln(&buf, ")") var ents strings.Builder diff --git a/runtime/vam/expr/gencomparefuncs.go b/runtime/vam/expr/gencomparefuncs.go index b953f89563..bb18ad36b9 100644 --- a/runtime/vam/expr/gencomparefuncs.go +++ b/runtime/vam/expr/gencomparefuncs.go @@ -10,7 +10,7 @@ import ( "os" "strings" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super/vector" ) var opToAlpha = map[string]string{ @@ -28,8 +28,8 @@ func main() { fmt.Fprintln(&buf) fmt.Fprintln(&buf, "package expr") fmt.Fprintln(&buf, "import (") - fmt.Fprintln(&buf, `"github.com/brimdata/zed"`) - fmt.Fprintln(&buf, `"github.com/brimdata/zed/vector"`) + fmt.Fprintln(&buf, `"github.com/brimdata/super"`) + fmt.Fprintln(&buf, `"github.com/brimdata/super/vector"`) fmt.Fprintln(&buf, ")") var ents strings.Builder diff --git a/runtime/vam/expr/index.go b/runtime/vam/expr/index.go index ce81839031..d172c22904 100644 --- a/runtime/vam/expr/index.go +++ b/runtime/vam/expr/index.go @@ -1,8 +1,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) // Index represents an index operator "container[index]" where container is diff --git a/runtime/vam/expr/literal.go b/runtime/vam/expr/literal.go index 8bcde75b6e..bb443d370e 100644 --- a/runtime/vam/expr/literal.go +++ b/runtime/vam/expr/literal.go @@ -1,8 +1,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) type Literal struct { diff --git a/runtime/vam/expr/logic.go b/runtime/vam/expr/logic.go index 5a2fd120eb..d034bfd909 100644 --- a/runtime/vam/expr/logic.go +++ b/runtime/vam/expr/logic.go @@ -1,8 +1,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) type Not struct { diff --git a/runtime/vam/expr/putter.go b/runtime/vam/expr/putter.go index c5f91daf07..d8f0d2ddc4 100644 --- a/runtime/vam/expr/putter.go +++ b/runtime/vam/expr/putter.go @@ -1,8 +1,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) // Putter adapts the behavior of recordExpr (obtained from NewRecordExpr) to diff --git a/runtime/vam/expr/recordexpr.go b/runtime/vam/expr/recordexpr.go index c858129215..b5b7130d6a 100644 --- a/runtime/vam/expr/recordexpr.go +++ b/runtime/vam/expr/recordexpr.go @@ -1,8 +1,8 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) type RecordElem struct { diff --git a/runtime/vam/expr/renamer.go b/runtime/vam/expr/renamer.go index 42aeb815ad..460ccebd85 100644 --- a/runtime/vam/expr/renamer.go +++ b/runtime/vam/expr/renamer.go @@ -1,9 +1,9 @@ package expr import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/vector" ) // Renamer renames one or more fields in a record. See [expr.Renamer], on which diff --git a/runtime/vam/materialize.go b/runtime/vam/materialize.go index 3d44c924ba..aaad04d525 100644 --- a/runtime/vam/materialize.go +++ b/runtime/vam/materialize.go @@ -3,10 +3,10 @@ package vam import ( "bytes" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" ) type Materializer struct { diff --git a/runtime/vam/op/agg.go b/runtime/vam/op/agg.go index 4c2cbe26c5..9fedb96885 100644 --- a/runtime/vam/op/agg.go +++ b/runtime/vam/op/agg.go @@ -4,9 +4,9 @@ import ( "fmt" "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/vam/expr" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/vam/expr" + "github.com/brimdata/super/vector" ) //XXX need to make sure vam operator objects are returned to GC as they are finished diff --git a/runtime/vam/op/combine.go b/runtime/vam/op/combine.go index 73480972c8..6a6b707a5c 100644 --- a/runtime/vam/op/combine.go +++ b/runtime/vam/op/combine.go @@ -4,7 +4,7 @@ import ( "context" "sync" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super/vector" "golang.org/x/sync/errgroup" ) diff --git a/runtime/vam/op/filter.go b/runtime/vam/op/filter.go index 0ce8abf8ee..14ba684374 100644 --- a/runtime/vam/op/filter.go +++ b/runtime/vam/op/filter.go @@ -1,9 +1,9 @@ package op import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/vam/expr" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/vam/expr" + "github.com/brimdata/super/vector" ) type Filter struct { diff --git a/runtime/vam/op/fork.go b/runtime/vam/op/fork.go index 81c0382c25..5a2976776d 100644 --- a/runtime/vam/op/fork.go +++ b/runtime/vam/op/fork.go @@ -4,7 +4,7 @@ import ( "context" "sync" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super/vector" ) type Fork struct { diff --git a/runtime/vam/op/head.go b/runtime/vam/op/head.go index 7089b6af3a..8d34d2d434 100644 --- a/runtime/vam/op/head.go +++ b/runtime/vam/op/head.go @@ -1,7 +1,7 @@ package op import ( - "github.com/brimdata/zed/vector" + "github.com/brimdata/super/vector" ) type Head struct { diff --git a/runtime/vam/op/over.go b/runtime/vam/op/over.go index 344b929abd..e52376f065 100644 --- a/runtime/vam/op/over.go +++ b/runtime/vam/op/over.go @@ -1,9 +1,9 @@ package op import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/vam/expr" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/vam/expr" + "github.com/brimdata/super/vector" ) type Over struct { diff --git a/runtime/vam/op/scan.go b/runtime/vam/op/scan.go index 48ce5b1996..a43bfb66db 100644 --- a/runtime/vam/op/scan.go +++ b/runtime/vam/op/scan.go @@ -5,16 +5,16 @@ import ( "fmt" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zson" ) type Scanner struct { diff --git a/runtime/vam/op/searcher.go b/runtime/vam/op/searcher.go index dd097f3846..602d2b1046 100644 --- a/runtime/vam/op/searcher.go +++ b/runtime/vam/op/searcher.go @@ -4,14 +4,14 @@ import ( "errors" "sync" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/vam/expr" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/vam/expr" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/zbuf" ) type Searcher struct { diff --git a/runtime/vam/op/sort.go b/runtime/vam/op/sort.go index 7ba19c57af..ff9f7d8a2e 100644 --- a/runtime/vam/op/sort.go +++ b/runtime/vam/op/sort.go @@ -3,15 +3,15 @@ package op import ( "bytes" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op/sort" - "github.com/brimdata/zed/runtime/vam" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/vng" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op/sort" + "github.com/brimdata/super/runtime/vam" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/vng" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" ) type Sort struct { diff --git a/runtime/vam/op/tail.go b/runtime/vam/op/tail.go index 068943c5ce..080b103a89 100644 --- a/runtime/vam/op/tail.go +++ b/runtime/vam/op/tail.go @@ -3,7 +3,7 @@ package op import ( "slices" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super/vector" ) type Tail struct { diff --git a/runtime/vam/op/yield.go b/runtime/vam/op/yield.go index b8f0b67282..d807ab69c3 100644 --- a/runtime/vam/op/yield.go +++ b/runtime/vam/op/yield.go @@ -1,9 +1,9 @@ package op import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/vam/expr" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/vam/expr" + "github.com/brimdata/super/vector" ) type Yield struct { diff --git a/runtime/vam/projection.go b/runtime/vam/projection.go index b5e330315d..b2ec7ba6c4 100644 --- a/runtime/vam/projection.go +++ b/runtime/vam/projection.go @@ -1,11 +1,11 @@ package vam import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/zbuf" ) type Projection struct { diff --git a/runtime/vcache/cache.go b/runtime/vcache/cache.go index 49c8af5e9b..1b27d519ba 100644 --- a/runtime/vcache/cache.go +++ b/runtime/vcache/cache.go @@ -4,7 +4,7 @@ import ( "context" "sync" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super/pkg/storage" "github.com/segmentio/ksuid" ) diff --git a/runtime/vcache/loader.go b/runtime/vcache/loader.go index b3346f05dc..315695b8b2 100644 --- a/runtime/vcache/loader.go +++ b/runtime/vcache/loader.go @@ -7,11 +7,11 @@ import ( "slices" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/vng" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/vng" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" "golang.org/x/sync/errgroup" ) diff --git a/runtime/vcache/nulls.go b/runtime/vcache/nulls.go index a83cb82002..3563db00ae 100644 --- a/runtime/vcache/nulls.go +++ b/runtime/vcache/nulls.go @@ -4,8 +4,8 @@ import ( "io" "sync" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/vng" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/vng" "golang.org/x/sync/errgroup" ) diff --git a/runtime/vcache/object.go b/runtime/vcache/object.go index 31bbf980af..16cc40c70a 100644 --- a/runtime/vcache/object.go +++ b/runtime/vcache/object.go @@ -3,10 +3,10 @@ package vcache import ( "context" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/vng" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/vng" ) // Object is the interface to load a given VNG object from storage into diff --git a/runtime/vcache/path.go b/runtime/vcache/path.go index 46862f8e91..c22980e69c 100644 --- a/runtime/vcache/path.go +++ b/runtime/vcache/path.go @@ -3,7 +3,7 @@ package vcache import ( "fmt" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super/pkg/field" ) // A path is an array of string or Forks diff --git a/runtime/vcache/project.go b/runtime/vcache/project.go index f5587288e2..6a061facda 100644 --- a/runtime/vcache/project.go +++ b/runtime/vcache/project.go @@ -3,8 +3,8 @@ package vcache import ( "fmt" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" ) func project(zctx *zed.Context, paths Path, s shadow) vector.Any { diff --git a/runtime/vcache/shadow.go b/runtime/vcache/shadow.go index 6077c02bc6..7e07bf46aa 100644 --- a/runtime/vcache/shadow.go +++ b/runtime/vcache/shadow.go @@ -4,9 +4,9 @@ import ( "fmt" "sync" - "github.com/brimdata/zed" - "github.com/brimdata/zed/vector" - "github.com/brimdata/zed/vng" + "github.com/brimdata/super" + "github.com/brimdata/super/vector" + "github.com/brimdata/super/vng" ) // The shadow type mirrors the vector.Any implementations here with locks and diff --git a/service/auth.go b/service/auth.go index 1fd67cc035..2d9059d98d 100644 --- a/service/auth.go +++ b/service/auth.go @@ -5,8 +5,8 @@ import ( "errors" "flag" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/service/auth" + "github.com/brimdata/super/api" + "github.com/brimdata/super/service/auth" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/promauto" "go.uber.org/zap" diff --git a/service/auth/validator.go b/service/auth/validator.go index 86d0428a0b..7c8581c43e 100644 --- a/service/auth/validator.go +++ b/service/auth/validator.go @@ -8,8 +8,8 @@ import ( "net/url" "time" - "github.com/brimdata/zed/pkg/fs" - "github.com/brimdata/zed/service/srverr" + "github.com/brimdata/super/pkg/fs" + "github.com/brimdata/super/service/srverr" "github.com/golang-jwt/jwt/v4" "github.com/golang-jwt/jwt/v4/request" ) diff --git a/service/auth_test.go b/service/auth_test.go index a9cc5d95b3..0001ced203 100644 --- a/service/auth_test.go +++ b/service/auth_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/client" - "github.com/brimdata/zed/service" - "github.com/brimdata/zed/service/auth" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/client" + "github.com/brimdata/super/service" + "github.com/brimdata/super/service/auth" "github.com/stretchr/testify/require" ) diff --git a/service/client_test.go b/service/client_test.go index b9c2ea0433..0d45efbd07 100644 --- a/service/client_test.go +++ b/service/client_test.go @@ -6,18 +6,18 @@ import ( "io" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/client" - "github.com/brimdata/zed/lake" - lakeapi "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/lake/branches" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/runtime/exec" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zio/zsonio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/client" + "github.com/brimdata/super/lake" + lakeapi "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/lake/branches" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/runtime/exec" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zio/zsonio" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" "github.com/stretchr/testify/require" ) diff --git a/service/core.go b/service/core.go index 5eb886d602..dd04f88408 100644 --- a/service/core.go +++ b/service/core.go @@ -12,12 +12,12 @@ import ( "sync" "time" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/api" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zson" "github.com/gorilla/mux" "github.com/prometheus/client_golang/prometheus" "github.com/prometheus/client_golang/prometheus/collectors" diff --git a/service/eventstream.go b/service/eventstream.go index 8a46ee5878..10b4a5c2dc 100644 --- a/service/eventstream.go +++ b/service/eventstream.go @@ -5,9 +5,9 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" ) type event struct { diff --git a/service/handlers.go b/service/handlers.go index 5e6c84c138..7c8b16c72d 100644 --- a/service/handlers.go +++ b/service/handlers.go @@ -8,31 +8,31 @@ import ( "os" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/queryio" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/data" - "github.com/brimdata/zed/compiler/describe" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/lake" - lakeapi "github.com/brimdata/zed/lake/api" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/lake/journal" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/exec" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/service/auth" - "github.com/brimdata/zed/service/srverr" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" - "github.com/brimdata/zed/zio/csvio" - "github.com/brimdata/zed/zio/zngio" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/queryio" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/data" + "github.com/brimdata/super/compiler/describe" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/lake" + lakeapi "github.com/brimdata/super/lake/api" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/lake/journal" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/order" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/exec" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/service/auth" + "github.com/brimdata/super/service/srverr" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" + "github.com/brimdata/super/zio/csvio" + "github.com/brimdata/super/zio/zngio" "github.com/segmentio/ksuid" "go.uber.org/zap" ) diff --git a/service/handlers_test.go b/service/handlers_test.go index 592d41fbc4..653827a460 100644 --- a/service/handlers_test.go +++ b/service/handlers_test.go @@ -8,12 +8,12 @@ import ( "strings" "testing" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/api/client" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime/exec" - "github.com/brimdata/zed/service" + "github.com/brimdata/super/api" + "github.com/brimdata/super/api/client" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime/exec" + "github.com/brimdata/super/service" "github.com/prometheus/client_golang/prometheus" "github.com/segmentio/ksuid" "github.com/stretchr/testify/assert" diff --git a/service/logger/file.go b/service/logger/file.go index 1eb7f4b56d..1a5f768889 100644 --- a/service/logger/file.go +++ b/service/logger/file.go @@ -6,7 +6,7 @@ import ( "os" "path/filepath" - "github.com/brimdata/zed/pkg/fs" + "github.com/brimdata/super/pkg/fs" "go.uber.org/zap/zapcore" "gopkg.in/natefinch/lumberjack.v2" ) diff --git a/service/middleware.go b/service/middleware.go index 8ef3a63790..93504f9493 100644 --- a/service/middleware.go +++ b/service/middleware.go @@ -5,8 +5,8 @@ import ( "net/http" "time" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/service/srverr" + "github.com/brimdata/super/api" + "github.com/brimdata/super/service/srverr" "github.com/gorilla/mux" "github.com/rs/cors" "github.com/segmentio/ksuid" diff --git a/service/request.go b/service/request.go index a568b6af28..3e7b1f006d 100644 --- a/service/request.go +++ b/service/request.go @@ -11,20 +11,20 @@ import ( "strings" "sync/atomic" - "github.com/brimdata/zed" - "github.com/brimdata/zed/api" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/compiler/parser" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/branches" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/lake/journal" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/service/srverr" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/api" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/compiler/parser" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/branches" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/lake/journal" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/service/srverr" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" + "github.com/brimdata/super/zson" "github.com/gorilla/mux" "github.com/segmentio/ksuid" "go.uber.org/zap" diff --git a/type.go b/type.go index fc8c07722b..c9281100dd 100644 --- a/type.go +++ b/type.go @@ -17,7 +17,7 @@ import ( "sort" "strings" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" ) var ( diff --git a/value.go b/value.go index 8edee06576..39427e554e 100644 --- a/value.go +++ b/value.go @@ -9,9 +9,9 @@ import ( "runtime/debug" "unsafe" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" ) var ( diff --git a/value_test.go b/value_test.go index fea21ff3d4..933cf99b46 100644 --- a/value_test.go +++ b/value_test.go @@ -3,8 +3,8 @@ package zed_test import ( "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" "github.com/stretchr/testify/assert" ) diff --git a/vector/any.go b/vector/any.go index 20e0cf0e5d..5199b50e2c 100644 --- a/vector/any.go +++ b/vector/any.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Any interface { diff --git a/vector/array.go b/vector/array.go index f6e0e0295f..4d35135e6a 100644 --- a/vector/array.go +++ b/vector/array.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Array struct { diff --git a/vector/bool.go b/vector/bool.go index e7379db8b2..c5bc4ef0e1 100644 --- a/vector/bool.go +++ b/vector/bool.go @@ -3,8 +3,8 @@ package vector import ( "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Bool struct { diff --git a/vector/bytes.go b/vector/bytes.go index 15456ec9e4..9ba6a3c0f9 100644 --- a/vector/bytes.go +++ b/vector/bytes.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Bytes struct { diff --git a/vector/combine.go b/vector/combine.go index 56aa977d40..454ddcb914 100644 --- a/vector/combine.go +++ b/vector/combine.go @@ -1,6 +1,6 @@ package vector -import "github.com/brimdata/zed" +import "github.com/brimdata/super" func Combine(base Any, index []uint32, vec Any) Any { c := NewCombiner(base) diff --git a/vector/const.go b/vector/const.go index 787499fd04..f4cee2f5db 100644 --- a/vector/const.go +++ b/vector/const.go @@ -1,9 +1,9 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr/coerce" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr/coerce" + "github.com/brimdata/super/zcode" ) type Const struct { diff --git a/vector/dict.go b/vector/dict.go index 0ab460b51a..5f5730badc 100644 --- a/vector/dict.go +++ b/vector/dict.go @@ -1,7 +1,7 @@ package vector import ( - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" ) type Dict struct { diff --git a/vector/dict_test.go b/vector/dict_test.go index a4dbfc2a39..51a8dd4314 100644 --- a/vector/dict_test.go +++ b/vector/dict_test.go @@ -3,7 +3,7 @@ package vector_test import ( "testing" - "github.com/brimdata/zed/vector" + "github.com/brimdata/super/vector" "github.com/stretchr/testify/require" ) diff --git a/vector/dynamic.go b/vector/dynamic.go index 7c7205c55c..f380e4c212 100644 --- a/vector/dynamic.go +++ b/vector/dynamic.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) // Dynamic is an ordered sequence of values taken from one or more diff --git a/vector/error.go b/vector/error.go index 9acde6461a..bb32b57e25 100644 --- a/vector/error.go +++ b/vector/error.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Error struct { diff --git a/vector/float.go b/vector/float.go index c55f7344f8..19c8831e29 100644 --- a/vector/float.go +++ b/vector/float.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Float struct { diff --git a/vector/int.go b/vector/int.go index 039a657a15..f3ce4dc27a 100644 --- a/vector/int.go +++ b/vector/int.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Int struct { diff --git a/vector/ip.go b/vector/ip.go index 41bef40240..d670acba37 100644 --- a/vector/ip.go +++ b/vector/ip.go @@ -3,8 +3,8 @@ package vector import ( "net/netip" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type IP struct { diff --git a/vector/kind.go b/vector/kind.go index 3fb3705425..2ff0ef6291 100644 --- a/vector/kind.go +++ b/vector/kind.go @@ -3,7 +3,7 @@ package vector import ( "fmt" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type Kind int diff --git a/vector/map.go b/vector/map.go index bf46800728..472e9aa11a 100644 --- a/vector/map.go +++ b/vector/map.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Map struct { diff --git a/vector/named.go b/vector/named.go index 0a65b7f744..d9d1349d06 100644 --- a/vector/named.go +++ b/vector/named.go @@ -1,7 +1,7 @@ package vector import ( - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type Named struct { diff --git a/vector/net.go b/vector/net.go index b72c1d64ae..a1c074f48a 100644 --- a/vector/net.go +++ b/vector/net.go @@ -3,8 +3,8 @@ package vector import ( "net/netip" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Net struct { diff --git a/vector/record.go b/vector/record.go index e09e0357d3..ead703ee16 100644 --- a/vector/record.go +++ b/vector/record.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Record struct { diff --git a/vector/set.go b/vector/set.go index 1d3a653fa0..298420c5de 100644 --- a/vector/set.go +++ b/vector/set.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Set struct { diff --git a/vector/string.go b/vector/string.go index 9e0145f3fb..585e2d1813 100644 --- a/vector/string.go +++ b/vector/string.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type String struct { diff --git a/vector/type.go b/vector/type.go index c28a2c2858..f74409eb10 100644 --- a/vector/type.go +++ b/vector/type.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type TypeValue struct { diff --git a/vector/uint.go b/vector/uint.go index 4c7bf12d92..abe9ac449d 100644 --- a/vector/uint.go +++ b/vector/uint.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Uint struct { diff --git a/vector/union.go b/vector/union.go index 61a7abc718..ea37edbfbc 100644 --- a/vector/union.go +++ b/vector/union.go @@ -1,8 +1,8 @@ package vector import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type Union struct { diff --git a/vector/vector_test.go b/vector/vector_test.go index 3361580899..88a6409060 100644 --- a/vector/vector_test.go +++ b/vector/vector_test.go @@ -6,9 +6,9 @@ import ( "math/rand" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/fuzz" - "github.com/brimdata/zed/vng" + "github.com/brimdata/super" + "github.com/brimdata/super/fuzz" + "github.com/brimdata/super/vng" ) func FuzzQuery(f *testing.F) { diff --git a/vector/view.go b/vector/view.go index e2275f5f08..4d1932d43c 100644 --- a/vector/view.go +++ b/vector/view.go @@ -1,7 +1,7 @@ package vector import ( - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" ) type View struct { diff --git a/vng/array.go b/vng/array.go index d26ccc9c99..6f113a7f5d 100644 --- a/vng/array.go +++ b/vng/array.go @@ -3,8 +3,8 @@ package vng import ( "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" "golang.org/x/sync/errgroup" ) diff --git a/vng/builder.go b/vng/builder.go index 3e74f0f73f..7bc7a9bcbb 100644 --- a/vng/builder.go +++ b/vng/builder.go @@ -4,7 +4,7 @@ import ( "fmt" "io" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" ) type Builder interface { diff --git a/vng/dynamic.go b/vng/dynamic.go index c1e4f4289f..306611c7d4 100644 --- a/vng/dynamic.go +++ b/vng/dynamic.go @@ -4,9 +4,9 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zio" "golang.org/x/sync/errgroup" ) diff --git a/vng/encoder.go b/vng/encoder.go index 840375e5b4..446ab97528 100644 --- a/vng/encoder.go +++ b/vng/encoder.go @@ -4,8 +4,8 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" "golang.org/x/sync/errgroup" ) diff --git a/vng/field.go b/vng/field.go index d7422e50ee..bef0e013db 100644 --- a/vng/field.go +++ b/vng/field.go @@ -3,7 +3,7 @@ package vng import ( "io" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" "golang.org/x/sync/errgroup" ) diff --git a/vng/int.go b/vng/int.go index c3f7ed5f2a..aaaf92cfe0 100644 --- a/vng/int.go +++ b/vng/int.go @@ -3,7 +3,7 @@ package vng import ( "io" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type Int64Encoder struct { diff --git a/vng/map.go b/vng/map.go index 359c23c455..09854d816e 100644 --- a/vng/map.go +++ b/vng/map.go @@ -3,8 +3,8 @@ package vng import ( "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" "golang.org/x/sync/errgroup" ) diff --git a/vng/metadata.go b/vng/metadata.go index c755326059..6e39b6de57 100644 --- a/vng/metadata.go +++ b/vng/metadata.go @@ -1,8 +1,8 @@ package vng import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/field" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/field" ) type Metadata interface { diff --git a/vng/nulls.go b/vng/nulls.go index 41a81d045c..9e8108ee69 100644 --- a/vng/nulls.go +++ b/vng/nulls.go @@ -3,7 +3,7 @@ package vng import ( "io" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" "golang.org/x/sync/errgroup" ) diff --git a/vng/object.go b/vng/object.go index 4025eaa6ee..48ea621259 100644 --- a/vng/object.go +++ b/vng/object.go @@ -1,5 +1,5 @@ // Package vng implements the reading and writing of VNG serialization objects. -// The VNG format is described at https://github.com/brimdata/zed/blob/main/docs/formats/vng.md. +// The VNG format is described at https://github.com/brimdata/super/blob/main/docs/formats/vng.md. // // A VNG object is created by allocating an Encoder for any top-level Zed type // via NewEncoder, which recursively descends into the Zed type, allocating an Encoder @@ -28,10 +28,10 @@ import ( "errors" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) type Object struct { diff --git a/vng/primitive.go b/vng/primitive.go index e86e5616f0..152dd9566b 100644 --- a/vng/primitive.go +++ b/vng/primitive.go @@ -5,10 +5,10 @@ import ( "io" "sort" - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zcode" "golang.org/x/sync/errgroup" ) diff --git a/vng/record.go b/vng/record.go index 58b05eea4e..976d7d2356 100644 --- a/vng/record.go +++ b/vng/record.go @@ -3,8 +3,8 @@ package vng import ( "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" "golang.org/x/sync/errgroup" ) diff --git a/vng/union.go b/vng/union.go index 5f8491d9dd..1deb2ed84d 100644 --- a/vng/union.go +++ b/vng/union.go @@ -4,8 +4,8 @@ import ( "errors" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" "golang.org/x/sync/errgroup" ) diff --git a/vng/vng_test.go b/vng/vng_test.go index b6918e3235..4b0d11e7ea 100644 --- a/vng/vng_test.go +++ b/vng/vng_test.go @@ -4,9 +4,9 @@ import ( "bytes" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/fuzz" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/fuzz" "github.com/stretchr/testify/require" ) diff --git a/vng/writer.go b/vng/writer.go index 08701f3d71..ad9bddcf2d 100644 --- a/vng/writer.go +++ b/vng/writer.go @@ -5,10 +5,10 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) // Writer implements the zio.Writer interface. A Writer creates a vector diff --git a/walk.go b/walk.go index fca73b0275..bdadf7e112 100644 --- a/walk.go +++ b/walk.go @@ -3,7 +3,7 @@ package zed import ( "errors" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/zcode" ) // A Visitor is called for each value in a record encountered by diff --git a/zbuf/array.go b/zbuf/array.go index e72488be62..d6a9753464 100644 --- a/zbuf/array.go +++ b/zbuf/array.go @@ -1,8 +1,8 @@ package zbuf import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" ) // Array is a slice of of records that implements the Batch and diff --git a/zbuf/array_test.go b/zbuf/array_test.go index 33022adf57..575cd10a30 100644 --- a/zbuf/array_test.go +++ b/zbuf/array_test.go @@ -3,7 +3,7 @@ package zbuf import ( "testing" - "github.com/brimdata/zed" + "github.com/brimdata/super" "github.com/stretchr/testify/require" ) diff --git a/zbuf/batch.go b/zbuf/batch.go index e256b6af73..df9f2bb310 100644 --- a/zbuf/batch.go +++ b/zbuf/batch.go @@ -5,8 +5,8 @@ import ( "sync" "sync/atomic" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" ) // Batch is an interface to a bundle of values. Reference counting allows diff --git a/zbuf/file.go b/zbuf/file.go index 45af172511..e38f72ff3d 100644 --- a/zbuf/file.go +++ b/zbuf/file.go @@ -3,7 +3,7 @@ package zbuf import ( "io" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super/zio" ) type File struct { diff --git a/zbuf/merger.go b/zbuf/merger.go index 1ce0762df3..de434e3609 100644 --- a/zbuf/merger.go +++ b/zbuf/merger.go @@ -1,9 +1,9 @@ package zbuf import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/order" - "github.com/brimdata/zed/runtime/sam/expr" + "github.com/brimdata/super" + "github.com/brimdata/super/order" + "github.com/brimdata/super/runtime/sam/expr" ) func NewComparator(zctx *zed.Context, sortKeys []order.SortKey) *expr.Comparator { diff --git a/zbuf/mux.go b/zbuf/mux.go index 8aa3da03dc..ba7caebc20 100644 --- a/zbuf/mux.go +++ b/zbuf/mux.go @@ -1,8 +1,8 @@ package zbuf import ( - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" ) func Label(label string, batch Batch) Batch { diff --git a/zbuf/scanner.go b/zbuf/scanner.go index dd8ed3718b..3f703db00a 100644 --- a/zbuf/scanner.go +++ b/zbuf/scanner.go @@ -5,9 +5,9 @@ import ( "fmt" "sync/atomic" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zio" ) type Filter interface { diff --git a/zed_test.go b/zed_test.go index 7141a64def..d091f435b0 100644 --- a/zed_test.go +++ b/zed_test.go @@ -11,15 +11,15 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" - "github.com/brimdata/zed/zio/arrowio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/ztest" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" + "github.com/brimdata/super/zio/arrowio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/ztest" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/zfmt/ast.go b/zfmt/ast.go index 0941b9d3b6..e846a651bb 100644 --- a/zfmt/ast.go +++ b/zfmt/ast.go @@ -4,11 +4,11 @@ import ( "fmt" "slices" - "github.com/brimdata/zed/compiler/ast" - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/runtime/sam/expr/agg" - "github.com/brimdata/zed/runtime/sam/expr/function" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/compiler/ast" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/runtime/sam/expr/agg" + "github.com/brimdata/super/runtime/sam/expr/function" + "github.com/brimdata/super/zson" ) func AST(p ast.Seq) string { diff --git a/zfmt/dag.go b/zfmt/dag.go index 60de037bc9..3bc8489959 100644 --- a/zfmt/dag.go +++ b/zfmt/dag.go @@ -1,9 +1,9 @@ package zfmt import ( - "github.com/brimdata/zed/compiler/ast/dag" - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/compiler/ast/dag" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/zson" ) func DAG(seq dag.Seq) string { diff --git a/zfmt/zed.go b/zfmt/zed.go index fbb6800896..0b4d6a03bc 100644 --- a/zfmt/zed.go +++ b/zfmt/zed.go @@ -1,8 +1,8 @@ package zfmt import ( - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/zson" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/zson" ) type canonZed struct { diff --git a/zio/anyio/fifo_test.go b/zio/anyio/fifo_test.go index c3d903b088..0cea43692a 100644 --- a/zio/anyio/fifo_test.go +++ b/zio/anyio/fifo_test.go @@ -10,9 +10,9 @@ import ( "testing" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/pkg/storage" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/pkg/storage" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/zio/anyio/file.go b/zio/anyio/file.go index 75fcc67ba1..cd808f242d 100644 --- a/zio/anyio/file.go +++ b/zio/anyio/file.go @@ -4,10 +4,10 @@ import ( "context" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zbuf" ) // Open uses engine to open path for reading. path is a local file path or a diff --git a/zio/anyio/lookup.go b/zio/anyio/lookup.go index bc1cce2b51..f9ef4741be 100644 --- a/zio/anyio/lookup.go +++ b/zio/anyio/lookup.go @@ -4,19 +4,19 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/arrowio" - "github.com/brimdata/zed/zio/csvio" - "github.com/brimdata/zed/zio/jsonio" - "github.com/brimdata/zed/zio/lineio" - "github.com/brimdata/zed/zio/parquetio" - "github.com/brimdata/zed/zio/vngio" - "github.com/brimdata/zed/zio/zeekio" - "github.com/brimdata/zed/zio/zjsonio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/arrowio" + "github.com/brimdata/super/zio/csvio" + "github.com/brimdata/super/zio/jsonio" + "github.com/brimdata/super/zio/lineio" + "github.com/brimdata/super/zio/parquetio" + "github.com/brimdata/super/zio/vngio" + "github.com/brimdata/super/zio/zeekio" + "github.com/brimdata/super/zio/zjsonio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zio/zsonio" ) func lookupReader(zctx *zed.Context, r io.Reader, demandOut demand.Demand, opts ReaderOpts) (zio.ReadCloser, error) { diff --git a/zio/anyio/reader.go b/zio/anyio/reader.go index 90d61c3942..b09deb23a7 100644 --- a/zio/anyio/reader.go +++ b/zio/anyio/reader.go @@ -8,18 +8,18 @@ import ( "io" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/arrowio" - "github.com/brimdata/zed/zio/csvio" - "github.com/brimdata/zed/zio/jsonio" - "github.com/brimdata/zed/zio/parquetio" - "github.com/brimdata/zed/zio/vngio" - "github.com/brimdata/zed/zio/zeekio" - "github.com/brimdata/zed/zio/zjsonio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/arrowio" + "github.com/brimdata/super/zio/csvio" + "github.com/brimdata/super/zio/jsonio" + "github.com/brimdata/super/zio/parquetio" + "github.com/brimdata/super/zio/vngio" + "github.com/brimdata/super/zio/zeekio" + "github.com/brimdata/super/zio/zjsonio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zio/zsonio" ) type ReaderOpts struct { diff --git a/zio/anyio/writer.go b/zio/anyio/writer.go index 75bedcb67c..791b2b768c 100644 --- a/zio/anyio/writer.go +++ b/zio/anyio/writer.go @@ -4,20 +4,20 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/arrowio" - "github.com/brimdata/zed/zio/csvio" - "github.com/brimdata/zed/zio/jsonio" - "github.com/brimdata/zed/zio/lakeio" - "github.com/brimdata/zed/zio/parquetio" - "github.com/brimdata/zed/zio/tableio" - "github.com/brimdata/zed/zio/textio" - "github.com/brimdata/zed/zio/vngio" - "github.com/brimdata/zed/zio/zeekio" - "github.com/brimdata/zed/zio/zjsonio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/arrowio" + "github.com/brimdata/super/zio/csvio" + "github.com/brimdata/super/zio/jsonio" + "github.com/brimdata/super/zio/lakeio" + "github.com/brimdata/super/zio/parquetio" + "github.com/brimdata/super/zio/tableio" + "github.com/brimdata/super/zio/textio" + "github.com/brimdata/super/zio/vngio" + "github.com/brimdata/super/zio/zeekio" + "github.com/brimdata/super/zio/zjsonio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zio/zsonio" ) type WriterOpts struct { diff --git a/zio/anyio/ztests/tsv.yaml b/zio/anyio/ztests/tsv.yaml index b9ecdcc805..2d25754233 100644 --- a/zio/anyio/ztests/tsv.yaml +++ b/zio/anyio/ztests/tsv.yaml @@ -1,5 +1,5 @@ # This test purposely has two null values to test the issue found in -# brimdata/zed#4911. +# brimdata/super#4911. script: | zq - | zq -f tsv - diff --git a/zio/arrowio/reader.go b/zio/arrowio/reader.go index 1259ee4640..6f4b26bece 100644 --- a/zio/arrowio/reader.go +++ b/zio/arrowio/reader.go @@ -11,9 +11,9 @@ import ( "github.com/apache/arrow/go/v14/arrow/array" "github.com/apache/arrow/go/v14/arrow/ipc" "github.com/apache/arrow/go/v14/parquet/pqarrow" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" ) // Reader is a zio.Reader for the Arrow IPC stream format. diff --git a/zio/arrowio/writer.go b/zio/arrowio/writer.go index 769c993e22..9ce6b32ac7 100644 --- a/zio/arrowio/writer.go +++ b/zio/arrowio/writer.go @@ -17,10 +17,10 @@ import ( "github.com/apache/arrow/go/v14/arrow/float16" "github.com/apache/arrow/go/v14/arrow/ipc" "github.com/apache/arrow/go/v14/arrow/memory" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) var ( diff --git a/zio/csvio/reader.go b/zio/csvio/reader.go index bd69167e15..2654cabba5 100644 --- a/zio/csvio/reader.go +++ b/zio/csvio/reader.go @@ -8,8 +8,8 @@ import ( "strconv" "unicode" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zson" ) type Reader struct { diff --git a/zio/csvio/reader_test.go b/zio/csvio/reader_test.go index c474a01245..1aca6ee761 100644 --- a/zio/csvio/reader_test.go +++ b/zio/csvio/reader_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/brimdata/zed" + "github.com/brimdata/super" "github.com/stretchr/testify/require" ) diff --git a/zio/csvio/writer.go b/zio/csvio/writer.go index 07b51f7b4a..7837d283b0 100644 --- a/zio/csvio/writer.go +++ b/zio/csvio/writer.go @@ -8,10 +8,10 @@ import ( "slices" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) var ErrNotDataFrame = errors.New("CSV output requires uniform records but multiple types encountered (consider 'fuse')") diff --git a/zio/emitter/bytes.go b/zio/emitter/bytes.go index 274476238d..98711c8c7d 100644 --- a/zio/emitter/bytes.go +++ b/zio/emitter/bytes.go @@ -3,8 +3,8 @@ package emitter import ( "bytes" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" ) type Bytes struct { diff --git a/zio/emitter/file.go b/zio/emitter/file.go index c4aff89ce2..ee43e92c19 100644 --- a/zio/emitter/file.go +++ b/zio/emitter/file.go @@ -5,11 +5,11 @@ import ( "io" "os" - "github.com/brimdata/zed/pkg/bufwriter" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/pkg/terminal" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" + "github.com/brimdata/super/pkg/bufwriter" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/pkg/terminal" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" ) func NewFileFromPath(ctx context.Context, engine storage.Engine, path string, unbuffered bool, opts anyio.WriterOpts) (zio.WriteCloser, error) { diff --git a/zio/emitter/sizesplitter.go b/zio/emitter/sizesplitter.go index da78d02d61..8298d51dea 100644 --- a/zio/emitter/sizesplitter.go +++ b/zio/emitter/sizesplitter.go @@ -6,11 +6,11 @@ import ( "io" "strconv" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/bufwriter" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/bufwriter" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" ) type sizeSplitter struct { diff --git a/zio/emitter/split.go b/zio/emitter/split.go index ec9dd91c08..cf54e8b3d7 100644 --- a/zio/emitter/split.go +++ b/zio/emitter/split.go @@ -5,10 +5,10 @@ import ( "fmt" "strconv" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" ) type Split struct { diff --git a/zio/emitter/split_test.go b/zio/emitter/split_test.go index c9caa58de2..6f86a54688 100644 --- a/zio/emitter/split_test.go +++ b/zio/emitter/split_test.go @@ -6,12 +6,12 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/storage" - storagemock "github.com/brimdata/zed/pkg/storage/mock" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/storage" + storagemock "github.com/brimdata/super/pkg/storage/mock" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" + "github.com/brimdata/super/zio/zsonio" "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" ) diff --git a/zio/jsonio/arraywriter.go b/zio/jsonio/arraywriter.go index bcd912b950..bc04ae9a29 100644 --- a/zio/jsonio/arraywriter.go +++ b/zio/jsonio/arraywriter.go @@ -4,8 +4,8 @@ import ( "bytes" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" ) type ArrayWriter struct { diff --git a/zio/jsonio/builder.go b/zio/jsonio/builder.go index eeca026c4f..e1ddafedf4 100644 --- a/zio/jsonio/builder.go +++ b/zio/jsonio/builder.go @@ -5,8 +5,8 @@ import ( "slices" "sort" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" ) type builder struct { diff --git a/zio/jsonio/reader.go b/zio/jsonio/reader.go index de357e0554..efdc6c6d8f 100644 --- a/zio/jsonio/reader.go +++ b/zio/jsonio/reader.go @@ -6,9 +6,9 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/pkg/jsonlexer" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/pkg/jsonlexer" "golang.org/x/text/unicode/norm" ) diff --git a/zio/jsonio/writer.go b/zio/jsonio/writer.go index 82ea4ff0db..ae0e44ddd8 100644 --- a/zio/jsonio/writer.go +++ b/zio/jsonio/writer.go @@ -9,11 +9,11 @@ import ( "io" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/pkg/terminal/color" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/pkg/terminal/color" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) var ( diff --git a/zio/lakeio/unmarshal.go b/zio/lakeio/unmarshal.go index f0017f5a85..115b05c13c 100644 --- a/zio/lakeio/unmarshal.go +++ b/zio/lakeio/unmarshal.go @@ -1,13 +1,13 @@ package lakeio import ( - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/pkg/field" - "github.com/brimdata/zed/runtime/sam/op/meta" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/pkg/field" + "github.com/brimdata/super/runtime/sam/op/meta" + "github.com/brimdata/super/zson" ) var unmarshaler *zson.UnmarshalZNGContext diff --git a/zio/lakeio/writer.go b/zio/lakeio/writer.go index 68f8c9aa85..bce563eb8f 100644 --- a/zio/lakeio/writer.go +++ b/zio/lakeio/writer.go @@ -6,17 +6,17 @@ import ( "io" "strings" - "github.com/brimdata/zed" - "github.com/brimdata/zed/lake" - "github.com/brimdata/zed/lake/commits" - "github.com/brimdata/zed/lake/data" - "github.com/brimdata/zed/lake/pools" - "github.com/brimdata/zed/lakeparse" - "github.com/brimdata/zed/pkg/charm" - "github.com/brimdata/zed/pkg/terminal/color" - "github.com/brimdata/zed/pkg/units" - "github.com/brimdata/zed/runtime/sam/op/meta" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/lake" + "github.com/brimdata/super/lake/commits" + "github.com/brimdata/super/lake/data" + "github.com/brimdata/super/lake/pools" + "github.com/brimdata/super/lakeparse" + "github.com/brimdata/super/pkg/charm" + "github.com/brimdata/super/pkg/terminal/color" + "github.com/brimdata/super/pkg/units" + "github.com/brimdata/super/runtime/sam/op/meta" + "github.com/brimdata/super/zson" "github.com/segmentio/ksuid" ) diff --git a/zio/lineio/reader.go b/zio/lineio/reader.go index 3f217f09ea..2b7bf582ba 100644 --- a/zio/lineio/reader.go +++ b/zio/lineio/reader.go @@ -4,7 +4,7 @@ import ( "bufio" "io" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type Reader struct { diff --git a/zio/parquetio/reader.go b/zio/parquetio/reader.go index 2b091237da..1fdbbb49b2 100644 --- a/zio/parquetio/reader.go +++ b/zio/parquetio/reader.go @@ -9,8 +9,8 @@ import ( "github.com/apache/arrow/go/v14/parquet" "github.com/apache/arrow/go/v14/parquet/file" "github.com/apache/arrow/go/v14/parquet/pqarrow" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio/arrowio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio/arrowio" ) func NewReader(zctx *zed.Context, r io.Reader) (*arrowio.Reader, error) { diff --git a/zio/parquetio/writer.go b/zio/parquetio/writer.go index d24be478f8..4877374242 100644 --- a/zio/parquetio/writer.go +++ b/zio/parquetio/writer.go @@ -7,9 +7,9 @@ import ( "github.com/apache/arrow/go/v14/arrow" "github.com/apache/arrow/go/v14/parquet/pqarrow" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/arrowio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/arrowio" ) type Writer struct { diff --git a/zio/peeker.go b/zio/peeker.go index f63faa997b..6142c767c6 100644 --- a/zio/peeker.go +++ b/zio/peeker.go @@ -1,6 +1,6 @@ package zio -import "github.com/brimdata/zed" +import "github.com/brimdata/super" // Peeker wraps a Stream while adding a Peek method, which allows inspection // of the next item to be read without actually reading it. diff --git a/zio/peeker_test.go b/zio/peeker_test.go index fab3874a5f..e5a057a7b8 100644 --- a/zio/peeker_test.go +++ b/zio/peeker_test.go @@ -5,8 +5,8 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio/zsonio" ) func TestPeeker(t *testing.T) { diff --git a/zio/tableio/writer.go b/zio/tableio/writer.go index 039ab7cbb9..f834ff9ed4 100644 --- a/zio/tableio/writer.go +++ b/zio/tableio/writer.go @@ -7,10 +7,10 @@ import ( "text/tabwriter" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zio/zeekio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zio/zeekio" + "github.com/brimdata/super/zson" ) type Writer struct { diff --git a/zio/textio/writer.go b/zio/textio/writer.go index c1045a5584..b481c5787a 100644 --- a/zio/textio/writer.go +++ b/zio/textio/writer.go @@ -6,9 +6,9 @@ import ( "strings" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zio/zeekio" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zio/zeekio" ) type Writer struct { diff --git a/zio/vngio/reader.go b/zio/vngio/reader.go index 66bd2782bb..65692faad6 100644 --- a/zio/vngio/reader.go +++ b/zio/vngio/reader.go @@ -4,10 +4,10 @@ import ( "errors" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/vng" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/vng" + "github.com/brimdata/super/zio" ) func NewReader(zctx *zed.Context, r io.Reader, demandOut demand.Demand) (zio.Reader, error) { diff --git a/zio/vngio/writer.go b/zio/vngio/writer.go index f4d3692496..da5709124c 100644 --- a/zio/vngio/writer.go +++ b/zio/vngio/writer.go @@ -3,7 +3,7 @@ package vngio import ( "io" - "github.com/brimdata/zed/vng" + "github.com/brimdata/super/vng" ) // NewWriter returns a writer to w. diff --git a/zio/zeekio/builder.go b/zio/zeekio/builder.go index ed522db762..16f971be26 100644 --- a/zio/zeekio/builder.go +++ b/zio/zeekio/builder.go @@ -6,10 +6,10 @@ import ( "net/netip" "unicode/utf8" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" "golang.org/x/text/unicode/norm" ) diff --git a/zio/zeekio/escape.go b/zio/zeekio/escape.go index cf8e930fa1..dd1591eb99 100644 --- a/zio/zeekio/escape.go +++ b/zio/zeekio/escape.go @@ -5,7 +5,7 @@ import ( "unicode" "unicode/utf8" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/zson" ) // shouldEscape determines if the given code point at the given position diff --git a/zio/zeekio/format.go b/zio/zeekio/format.go index cc30784487..9a30f75cbf 100644 --- a/zio/zeekio/format.go +++ b/zio/zeekio/format.go @@ -9,10 +9,10 @@ import ( "unicode" "unicode/utf8" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) func formatAny(val zed.Value, inContainer bool) string { diff --git a/zio/zeekio/parser.go b/zio/zeekio/parser.go index ad7112cb0c..656efb04d3 100644 --- a/zio/zeekio/parser.go +++ b/zio/zeekio/parser.go @@ -5,7 +5,7 @@ import ( "fmt" "strings" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type header struct { diff --git a/zio/zeekio/parser_test.go b/zio/zeekio/parser_test.go index b56b40c60f..9cea520ae3 100644 --- a/zio/zeekio/parser_test.go +++ b/zio/zeekio/parser_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/brimdata/zed" + "github.com/brimdata/super" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/zio/zeekio/reader.go b/zio/zeekio/reader.go index ddf8e53f2f..5dfc884d82 100644 --- a/zio/zeekio/reader.go +++ b/zio/zeekio/reader.go @@ -5,8 +5,8 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/skim" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/skim" ) const ( diff --git a/zio/zeekio/reader_test.go b/zio/zeekio/reader_test.go index 9d42ca17c9..7f3efebd42 100644 --- a/zio/zeekio/reader_test.go +++ b/zio/zeekio/reader_test.go @@ -5,8 +5,8 @@ import ( "testing" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/zio/zeekio/time.go b/zio/zeekio/time.go index 48ee8eb64d..a4a00d3bb9 100644 --- a/zio/zeekio/time.go +++ b/zio/zeekio/time.go @@ -5,8 +5,8 @@ import ( "math" "strconv" - "github.com/brimdata/zed/pkg/byteconv" - "github.com/brimdata/zed/pkg/nano" + "github.com/brimdata/super/pkg/byteconv" + "github.com/brimdata/super/pkg/nano" ) // formatTime formats ts as a Zeek time value. A Zeek time value is a diff --git a/zio/zeekio/time_test.go b/zio/zeekio/time_test.go index 68e96adf07..c6ee773e28 100644 --- a/zio/zeekio/time_test.go +++ b/zio/zeekio/time_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/brimdata/zed/pkg/nano" + "github.com/brimdata/super/pkg/nano" "github.com/stretchr/testify/assert" ) diff --git a/zio/zeekio/types.go b/zio/zeekio/types.go index 39b49a2062..b30d2815fa 100644 --- a/zio/zeekio/types.go +++ b/zio/zeekio/types.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) var ErrIncompatibleZeekType = errors.New("type cannot be represented in zeek format") diff --git a/zio/zeekio/writer.go b/zio/zeekio/writer.go index 5cf0ba8ea6..e3c476d8ec 100644 --- a/zio/zeekio/writer.go +++ b/zio/zeekio/writer.go @@ -5,8 +5,8 @@ import ( "fmt" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/runtime/sam/expr" + "github.com/brimdata/super" + "github.com/brimdata/super/runtime/sam/expr" ) type Writer struct { diff --git a/zio/zio.go b/zio/zio.go index 8c0a9f407a..64c51165c3 100644 --- a/zio/zio.go +++ b/zio/zio.go @@ -5,7 +5,7 @@ import ( "io" "slices" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) func Extension(format string) string { diff --git a/zio/zjsonio/ast.go b/zio/zjsonio/ast.go index 5c8884d4d5..81ae0a502a 100644 --- a/zio/zjsonio/ast.go +++ b/zio/zjsonio/ast.go @@ -1,7 +1,7 @@ package zjsonio import ( - "github.com/brimdata/zed/pkg/unpack" + "github.com/brimdata/super/pkg/unpack" ) var unpacker = make(unpack.Reflector) diff --git a/zio/zjsonio/reader.go b/zio/zjsonio/reader.go index 45a7a76e4d..89bbda48d6 100644 --- a/zio/zjsonio/reader.go +++ b/zio/zjsonio/reader.go @@ -6,10 +6,10 @@ import ( "io" "strconv" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/skim" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/skim" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) const ( diff --git a/zio/zjsonio/types.go b/zio/zjsonio/types.go index fea0d426cf..d737596653 100644 --- a/zio/zjsonio/types.go +++ b/zio/zjsonio/types.go @@ -4,7 +4,7 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) type zType interface { diff --git a/zio/zjsonio/writer.go b/zio/zjsonio/writer.go index 832e21269d..b678d0c32e 100644 --- a/zio/zjsonio/writer.go +++ b/zio/zjsonio/writer.go @@ -7,9 +7,9 @@ import ( "io" "strconv" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) type Object struct { diff --git a/zio/zng_test.go b/zio/zng_test.go index 32c5bdcfd4..3a3fb75486 100644 --- a/zio/zng_test.go +++ b/zio/zng_test.go @@ -8,11 +8,11 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zjsonio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zjsonio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zio/zsonio" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/zio/zngio/batch.go b/zio/zngio/batch.go index d15508e4ae..0f05ba7790 100644 --- a/zio/zngio/batch.go +++ b/zio/zngio/batch.go @@ -5,8 +5,8 @@ import ( "sync" "sync/atomic" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/zbuf" ) type batch struct { diff --git a/zio/zngio/parser.go b/zio/zngio/parser.go index 641579375b..7b5c68decb 100644 --- a/zio/zngio/parser.go +++ b/zio/zngio/parser.go @@ -6,9 +6,9 @@ import ( "io" "slices" - "github.com/brimdata/zed/pkg/peeker" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super/pkg/peeker" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" ) var errBadFormat = errors.New("malformed zng record") diff --git a/zio/zngio/reader.go b/zio/zngio/reader.go index a1d67d8214..3786ce7a6e 100644 --- a/zio/zngio/reader.go +++ b/zio/zngio/reader.go @@ -7,9 +7,9 @@ import ( "io" "runtime" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" + "github.com/brimdata/super" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" ) const ( diff --git a/zio/zngio/scanner.go b/zio/zngio/scanner.go index 3c29e65173..0c2ae8c6ab 100644 --- a/zio/zngio/scanner.go +++ b/zio/zngio/scanner.go @@ -7,12 +7,12 @@ import ( "sync" "sync/atomic" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/peeker" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/runtime/sam/op" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/peeker" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/runtime/sam/op" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zcode" ) type scanner struct { diff --git a/zio/zngio/scanner_test.go b/zio/zngio/scanner_test.go index 8dcb7486a9..0e7b973977 100644 --- a/zio/zngio/scanner_test.go +++ b/zio/zngio/scanner_test.go @@ -8,9 +8,9 @@ import ( "strconv" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/require" ) diff --git a/zio/zngio/sync.go b/zio/zngio/sync.go index ea1bd328c2..6971b2e540 100644 --- a/zio/zngio/sync.go +++ b/zio/zngio/sync.go @@ -4,10 +4,10 @@ import ( "context" "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/peeker" - "github.com/brimdata/zed/runtime/sam/expr" - "github.com/brimdata/zed/zbuf" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/peeker" + "github.com/brimdata/super/runtime/sam/expr" + "github.com/brimdata/super/zbuf" ) type scannerSync struct { diff --git a/zio/zngio/types.go b/zio/zngio/types.go index de3944cf95..c7e19a04aa 100644 --- a/zio/zngio/types.go +++ b/zio/zngio/types.go @@ -5,7 +5,7 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" + "github.com/brimdata/super" ) const ( diff --git a/zio/zngio/writer.go b/zio/zngio/writer.go index a000301965..3fb390cea6 100644 --- a/zio/zngio/writer.go +++ b/zio/zngio/writer.go @@ -5,8 +5,8 @@ import ( "io" "slices" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" "github.com/pierrec/lz4/v4" ) diff --git a/zio/zngio/writer_test.go b/zio/zngio/writer_test.go index b722a5f718..0e390e2306 100644 --- a/zio/zngio/writer_test.go +++ b/zio/zngio/writer_test.go @@ -7,9 +7,9 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zsonio" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/zio/zsonio/reader.go b/zio/zsonio/reader.go index 0709ea7e38..ea07dd4994 100644 --- a/zio/zsonio/reader.go +++ b/zio/zsonio/reader.go @@ -3,9 +3,9 @@ package zsonio import ( "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" ) type Reader struct { diff --git a/zio/zsonio/reader_test.go b/zio/zsonio/reader_test.go index 87b8e6b278..7ce91b1c19 100644 --- a/zio/zsonio/reader_test.go +++ b/zio/zsonio/reader_test.go @@ -5,9 +5,9 @@ import ( "testing" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio/zsonio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio/zsonio" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/zio/zsonio/writer.go b/zio/zsonio/writer.go index f8cf366fe9..9c61136d0d 100644 --- a/zio/zsonio/writer.go +++ b/zio/zsonio/writer.go @@ -4,8 +4,8 @@ import ( "io" "regexp" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zson" ) type Writer struct { diff --git a/zngbytes/deserializer.go b/zngbytes/deserializer.go index 52bd1e1a8f..1bfac7eb71 100644 --- a/zngbytes/deserializer.go +++ b/zngbytes/deserializer.go @@ -3,9 +3,9 @@ package zngbytes import ( "io" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) type Deserializer struct { diff --git a/zngbytes/serializer.go b/zngbytes/serializer.go index 88919f8301..8b5d82c253 100644 --- a/zngbytes/serializer.go +++ b/zngbytes/serializer.go @@ -3,9 +3,9 @@ package zngbytes import ( "bytes" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" ) type Serializer struct { diff --git a/zson/analyzer.go b/zson/analyzer.go index 4d8ae14f3c..a4c646f574 100644 --- a/zson/analyzer.go +++ b/zson/analyzer.go @@ -4,8 +4,8 @@ import ( "errors" "fmt" - "github.com/brimdata/zed" - astzed "github.com/brimdata/zed/compiler/ast/zed" + "github.com/brimdata/super" + astzed "github.com/brimdata/super/compiler/ast/zed" ) type Value interface { diff --git a/zson/builder.go b/zson/builder.go index fa536f18cc..ed4e078fb0 100644 --- a/zson/builder.go +++ b/zson/builder.go @@ -9,9 +9,9 @@ import ( "time" "unicode/utf8" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" "golang.org/x/text/unicode/norm" ) diff --git a/zson/escape.go b/zson/escape.go index 6757e27669..72a4926c8e 100644 --- a/zson/escape.go +++ b/zson/escape.go @@ -22,7 +22,7 @@ func QuotedTypeName(name string) string { const hexdigits = "0123456789abcdef" // QuotedString quotes and escapes a ZSON string for serialization in accordance -// with the ZSON spec. It was copied and modified [with attribution](https://github.com/brimdata/zed/blob/main/acknowledgments.txt) +// with the ZSON spec. It was copied and modified [with attribution](https://github.com/brimdata/super/blob/main/acknowledgments.txt) // from the encoding/json package in the Go source code. func QuotedString(s []byte) string { var b strings.Builder @@ -90,7 +90,7 @@ func Unhex(b byte) byte { // All values are true except for the ASCII control characters (0-31), the // double quote ("), and the backslash character ("\"). // -// This code was copied [with attribution](https://github.com/brimdata/zed/blob/main/acknowledgments.txt) +// This code was copied [with attribution](https://github.com/brimdata/super/blob/main/acknowledgments.txt) // from the encoding/json package in the Go source code. var safeSet = [utf8.RuneSelf]bool{ ' ': true, diff --git a/zson/formatter.go b/zson/formatter.go index aa46e63a15..e4a3e0ee33 100644 --- a/zson/formatter.go +++ b/zson/formatter.go @@ -8,9 +8,9 @@ import ( "strings" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/terminal/color" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/terminal/color" + "github.com/brimdata/super/zcode" ) type Formatter struct { diff --git a/zson/lexer.go b/zson/lexer.go index 07db9d0c74..306aafabb9 100644 --- a/zson/lexer.go +++ b/zson/lexer.go @@ -343,7 +343,7 @@ func (l *Lexer) scanToCloseQuote(b []byte) ([]byte, error) { } // parseStringBytes parse unicode escapes and converts utf-16 surrogage pairs -// into utf-8 sequences. It was copied and modified [with attribution](https://github.com/brimdata/zed/blob/main/acknowledgments.txt) +// into utf-8 sequences. It was copied and modified [with attribution](https://github.com/brimdata/super/blob/main/acknowledgments.txt) // from the encoding/json package in the Go source code. func parseStringBytes(b *strings.Builder, bytes []byte) (string, error) { k := 0 diff --git a/zson/marshal.go b/zson/marshal.go index 2f411fd30f..81f718f5d5 100644 --- a/zson/marshal.go +++ b/zson/marshal.go @@ -10,9 +10,9 @@ import ( "strings" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" "github.com/x448/float16" ) diff --git a/zson/marshal_test.go b/zson/marshal_test.go index f4a771b144..abe558106f 100644 --- a/zson/marshal_test.go +++ b/zson/marshal_test.go @@ -7,10 +7,10 @@ import ( "testing" "time" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/zson/marshal_zng_test.go b/zson/marshal_zng_test.go index 8980e92398..0c762c75cd 100644 --- a/zson/marshal_zng_test.go +++ b/zson/marshal_zng_test.go @@ -8,11 +8,11 @@ import ( "strings" "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/zngio" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/zngio" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "github.com/x448/float16" @@ -456,7 +456,7 @@ func TestInterfaceZNGMarshal(t *testing.T) { m.Decorate(zson.StyleFull) zv, err = m.Marshal(rolls) require.NoError(t, err) - assert.Equal(t, `"github.com/brimdata/zed/zson_test.Rolls"=[int64]`, zson.String(zv.Type())) + assert.Equal(t, `"github.com/brimdata/super/zson_test.Rolls"=[int64]`, zson.String(zv.Type())) plain := []int32{1, 2, 3} zv, err = m.Marshal(plain) diff --git a/zson/parser-types.go b/zson/parser-types.go index 816783fe04..464500bc45 100644 --- a/zson/parser-types.go +++ b/zson/parser-types.go @@ -3,8 +3,8 @@ package zson import ( "errors" - "github.com/brimdata/zed" - astzed "github.com/brimdata/zed/compiler/ast/zed" + "github.com/brimdata/super" + astzed "github.com/brimdata/super/compiler/ast/zed" ) func (p *Parser) parseType() (astzed.Type, error) { diff --git a/zson/parser-values.go b/zson/parser-values.go index e4a9c0a373..38e163dfca 100644 --- a/zson/parser-values.go +++ b/zson/parser-values.go @@ -9,10 +9,10 @@ import ( "strconv" "time" - "github.com/brimdata/zed" - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/pkg/nano" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/pkg/nano" + "github.com/brimdata/super/zcode" ) func (p *Parser) ParseValue() (astzed.Value, error) { diff --git a/zson/typeval_test.go b/zson/typeval_test.go index 59f568925f..ba9d3f676b 100644 --- a/zson/typeval_test.go +++ b/zson/typeval_test.go @@ -3,8 +3,8 @@ package zson_test import ( "testing" - "github.com/brimdata/zed" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/require" ) diff --git a/zson/zson.go b/zson/zson.go index b85b05743d..82f775fd4d 100644 --- a/zson/zson.go +++ b/zson/zson.go @@ -10,9 +10,9 @@ import ( "slices" "strings" - "github.com/brimdata/zed" - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/zcode" + "github.com/brimdata/super" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/zcode" ) // Implied returns true for primitive types whose type can be inferred diff --git a/zson/zson_test.go b/zson/zson_test.go index 6421626dc3..1547638b9d 100644 --- a/zson/zson_test.go +++ b/zson/zson_test.go @@ -4,11 +4,11 @@ import ( "encoding/json" "testing" - "github.com/brimdata/zed" - astzed "github.com/brimdata/zed/compiler/ast/zed" - "github.com/brimdata/zed/pkg/fs" - "github.com/brimdata/zed/zcode" - "github.com/brimdata/zed/zson" + "github.com/brimdata/super" + astzed "github.com/brimdata/super/compiler/ast/zed" + "github.com/brimdata/super/pkg/fs" + "github.com/brimdata/super/zcode" + "github.com/brimdata/super/zson" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/ztest/ztest.go b/ztest/ztest.go index 68da84deb4..ebafa076ee 100644 --- a/ztest/ztest.go +++ b/ztest/ztest.go @@ -133,19 +133,19 @@ import ( "testing" "unicode/utf8" - "github.com/brimdata/zed" - "github.com/brimdata/zed/cli/inputflags" - "github.com/brimdata/zed/cli/outputflags" - "github.com/brimdata/zed/compiler" - "github.com/brimdata/zed/compiler/optimizer/demand" - "github.com/brimdata/zed/pkg/storage" - "github.com/brimdata/zed/runtime" - "github.com/brimdata/zed/runtime/vcache" - "github.com/brimdata/zed/zbuf" - "github.com/brimdata/zed/zio" - "github.com/brimdata/zed/zio/anyio" - "github.com/brimdata/zed/zio/vngio" - "github.com/brimdata/zed/zio/zsonio" + "github.com/brimdata/super" + "github.com/brimdata/super/cli/inputflags" + "github.com/brimdata/super/cli/outputflags" + "github.com/brimdata/super/compiler" + "github.com/brimdata/super/compiler/optimizer/demand" + "github.com/brimdata/super/pkg/storage" + "github.com/brimdata/super/runtime" + "github.com/brimdata/super/runtime/vcache" + "github.com/brimdata/super/zbuf" + "github.com/brimdata/super/zio" + "github.com/brimdata/super/zio/anyio" + "github.com/brimdata/super/zio/vngio" + "github.com/brimdata/super/zio/zsonio" "github.com/pmezard/go-difflib/difflib" "github.com/segmentio/ksuid" "gopkg.in/yaml.v3"