Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
kazegusuri committed Jun 3, 2023
2 parents 3b75d77 + 8c10084 commit 7d02417
Show file tree
Hide file tree
Showing 20 changed files with 286 additions and 646 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version: 2
jobs:
test:
docker:
- image: golang:1.17.12-buster
- image: golang:1.18-buster
environment:
GO111MODULE: 'on'
working_directory: /go/src/handy-spanner
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17.12-alpine3.16 AS builder
FROM golang:1.18-alpine3.16 AS builder

RUN set -eux \
&& apk --no-cache add \
Expand Down
2 changes: 1 addition & 1 deletion fake/example_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,9 +21,9 @@ import (

"cloud.google.com/go/spanner"
admindatabasev1 "cloud.google.com/go/spanner/admin/database/apiv1"
databasepb "cloud.google.com/go/spanner/admin/database/apiv1/databasepb"
"github.com/gcpug/handy-spanner/fake"
"google.golang.org/api/option"
databasepb "google.golang.org/genproto/googleapis/spanner/admin/database/v1"
)

func ExampleSpannerClient() {
Expand Down
2 changes: 1 addition & 1 deletion fake/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,9 @@ import (
"cloud.google.com/go/civil"
"cloud.google.com/go/spanner"
admindatabasev1 "cloud.google.com/go/spanner/admin/database/apiv1"
databasepb "cloud.google.com/go/spanner/admin/database/apiv1/databasepb"
cmp "github.com/google/go-cmp/cmp"
"google.golang.org/api/option"
databasepb "google.golang.org/genproto/googleapis/spanner/admin/database/v1"
"google.golang.org/grpc/codes"
"google.golang.org/grpc/status"
)
Expand Down
12 changes: 6 additions & 6 deletions fake/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ import (
"net"
"time"

"github.com/MakeNowJust/memefish/pkg/ast"
"github.com/MakeNowJust/memefish/pkg/parser"
"github.com/MakeNowJust/memefish/pkg/token"
lropb "cloud.google.com/go/longrunning/autogen/longrunningpb"
adminv1pb "cloud.google.com/go/spanner/admin/database/apiv1/databasepb"
spannerpb "cloud.google.com/go/spanner/apiv1/spannerpb"
"github.com/cloudspannerecosystem/memefish/pkg/ast"
"github.com/cloudspannerecosystem/memefish/pkg/parser"
"github.com/cloudspannerecosystem/memefish/pkg/token"
"github.com/gcpug/handy-spanner/server"
lropb "google.golang.org/genproto/googleapis/longrunning"
adminv1pb "google.golang.org/genproto/googleapis/spanner/admin/database/v1"
spannerpb "google.golang.org/genproto/googleapis/spanner/v1"
"google.golang.org/grpc"
channelzsvc "google.golang.org/grpc/channelz/service"
"google.golang.org/grpc/reflection"
Expand Down
57 changes: 32 additions & 25 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,39 +1,46 @@
module github.com/gcpug/handy-spanner

go 1.17
go 1.18

require (
cloud.google.com/go v0.103.0
cloud.google.com/go/spanner v1.36.0
github.com/MakeNowJust/memefish v0.0.0-20211014154734-dbfb8b28907d
cloud.google.com/go v0.110.2
cloud.google.com/go/iam v0.13.0
cloud.google.com/go/longrunning v0.5.0
cloud.google.com/go/spanner v1.46.0
github.com/cloudspannerecosystem/memefish v0.0.0-20230403015737-24c8a514b9e7
github.com/dgryski/go-farm v0.0.0-20200201041132-a6ae2369ad13
github.com/golang/protobuf v1.5.2
github.com/google/go-cmp v0.5.8
github.com/google/go-cmp v0.5.9
github.com/google/uuid v1.3.0
github.com/mattn/go-sqlite3 v1.14.10
golang.org/x/sync v0.0.0-20220601150217-0de741cfad7f
google.golang.org/api v0.90.0
google.golang.org/genproto v0.0.0-20220728213248-dd149ef739b9
google.golang.org/grpc v1.48.0
google.golang.org/protobuf v1.28.1
golang.org/x/sync v0.2.0
google.golang.org/api v0.125.0
google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc
google.golang.org/grpc v1.55.0
google.golang.org/protobuf v1.30.0
)

require (
cloud.google.com/go/compute v1.7.0 // indirect
github.com/census-instrumentation/opencensus-proto v0.3.0 // indirect
github.com/cespare/xxhash/v2 v2.1.2 // indirect
cloud.google.com/go/compute v1.19.3 // indirect
cloud.google.com/go/compute/metadata v0.2.3 // indirect
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect
github.com/cncf/xds/go v0.0.0-20220520190051-1e77728a1eaa // indirect
github.com/envoyproxy/go-control-plane v0.10.3 // indirect
github.com/envoyproxy/protoc-gen-validate v0.6.7 // indirect
github.com/cncf/xds/go v0.0.0-20230310173818-32f1caf87195 // indirect
github.com/envoyproxy/go-control-plane v0.11.0 // indirect
github.com/envoyproxy/protoc-gen-validate v0.10.0 // indirect
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/googleapis/enterprise-certificate-proxy v0.1.0 // indirect
github.com/googleapis/gax-go/v2 v2.4.0 // indirect
go.opencensus.io v0.23.0 // indirect
golang.org/x/net v0.0.0-20220728211354-c7608f3a8462 // indirect
golang.org/x/oauth2 v0.0.0-20220722155238-128564f6959c // indirect
golang.org/x/sys v0.0.0-20220731174439-a90be440212d // indirect
golang.org/x/text v0.3.7 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
github.com/golang/protobuf v1.5.3 // indirect
github.com/google/s2a-go v0.1.4 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.10.0 // indirect
go.opencensus.io v0.24.0 // indirect
golang.org/x/crypto v0.9.0 // indirect
golang.org/x/net v0.10.0 // indirect
golang.org/x/oauth2 v0.8.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect
)
Loading

0 comments on commit 7d02417

Please sign in to comment.