Skip to content

Commit

Permalink
upgrade Zed to e0683b108af423d0e69bc70ff1fec335bef981ce (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
nwt authored Jul 14, 2022
1 parent 2c0ed0b commit 8387674
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion connectjson/connectjson.go
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ func NewDecoder(zctx *zed.Context) *Decoder {

buf: buf,
ectx: expr.NewContext(),
jsonioReader: jsonio.NewReader(buf, zctx),
jsonioReader: jsonio.NewReader(zctx, buf),
shapers: map[zed.Type]*expr.ConstShaper{},
}
}
Expand Down
2 changes: 1 addition & 1 deletion etl/pipeline.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func insertOffsets(ctx context.Context, zctx *zed.Context, doneType zed.Type, ba
if err != nil {
return nil, err
}
reader := zsonio.NewReader(strings.NewReader(zsons.String()), zctx)
reader := zsonio.NewReader(zctx, strings.NewReader(zsons.String()))
q, err := runtime.CompileQuery(ctx, zctx, comp, program, []zio.Reader{reader})
if err != nil {
return nil, err
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module github.com/brimdata/zync
go 1.18

require (
github.com/brimdata/zed v1.1.1-0.20220617194348-ccabb55b2bc9
github.com/brimdata/zed v1.1.1-0.20220712185418-e0683b108af4
github.com/go-avro/avro v0.0.0-20171219232920-444163702c11
github.com/riferrei/srclient v0.4.0
github.com/segmentio/ksuid v1.0.2
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ github.com/aws/aws-sdk-go v1.36.17 h1:8zTvseyGhgs3uQAzkgnFy7dvTo+ZnZLYmrhnopFxYM
github.com/aws/aws-sdk-go v1.36.17/go.mod h1:hcU610XS61/+aQV88ixoOzUoG7v3b31pl2zKMmprdro=
github.com/axiomhq/hyperloglog v0.0.0-20191112132149-a4c4c47bc57f h1:y06x6vGnFYfXUoVMbrcP1Uzpj4JG01eB5vRps9G8agM=
github.com/axiomhq/hyperloglog v0.0.0-20191112132149-a4c4c47bc57f/go.mod h1:2stgcRjl6QmW+gU2h5E7BQXg4HU0gzxKWDuT5HviN9s=
github.com/brimdata/zed v1.1.1-0.20220617194348-ccabb55b2bc9 h1:wRq7J4l7RTimVx9nU/3XnjeauhOUWOst4agia6OTlUI=
github.com/brimdata/zed v1.1.1-0.20220617194348-ccabb55b2bc9/go.mod h1:HAAkiXG5honjnAPkVow2FtZW9w6Jbz60nyj22I3n+fA=
github.com/brimdata/zed v1.1.1-0.20220712185418-e0683b108af4 h1:pFvcUP+QjC8z49+8SctZ3VxBvo5N04hilZ6MElOH3Hs=
github.com/brimdata/zed v1.1.1-0.20220712185418-e0683b108af4/go.mod h1:HAAkiXG5honjnAPkVow2FtZW9w6Jbz60nyj22I3n+fA=
github.com/cespare/xxhash v1.1.0/go.mod h1:XrSqR1VqqWfGrhpAt58auRo0WTKS1nRRg3ghfAqPWnc=
github.com/coreos/etcd v3.3.10+incompatible/go.mod h1:uF7uidLiAD3TWHmW31ZFd/JWoc32PjwdhPthX9715RE=
github.com/coreos/go-etcd v2.0.0+incompatible/go.mod h1:Jez6KQU2B/sWsbdaef3ED8NzMklzPG4d5KIOhIy30Tk=
Expand Down

0 comments on commit 8387674

Please sign in to comment.