Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into ui-test-framework
Browse files Browse the repository at this point in the history
  • Loading branch information
shreyakhajanchi committed Oct 18, 2023
2 parents 6cb194a + 998c8fe commit 0e5f33a
Show file tree
Hide file tree
Showing 7 changed files with 5,615 additions and 5,628 deletions.
4 changes: 2 additions & 2 deletions docs/data-types/mysql.md
Original file line number Diff line number Diff line change
Expand Up @@ -139,8 +139,8 @@ and `ON UPDATE` actions, we drop them.

## Default Values

Spanner does not currently support default values. We drop these
MySQL features during conversion.
While Spanner supports default values, Spanner migration tool currently does not support translating source `DEFAULT` constraints to Spanner `DEFAULT` constraints. We drop the `DEFAULT` MySQL constraint during conversion.
It can be manually added to the DDL via an `ALTER TABLE` command.

## Secondary Indexes

Expand Down
4 changes: 2 additions & 2 deletions docs/data-types/postgres.md
Original file line number Diff line number Diff line change
Expand Up @@ -141,8 +141,8 @@ Spanner doesn't support `ON DELETE` and `ON UPDATE` actions, so we drop these.

## Default Values

Spanner does not currently support default values. We drop these
PostgreSQL features during conversion.
While Spanner supports default values, Spanner migration tool currently does not support translating source `DEFAULT` constraints to Spanner `DEFAULT` constraints. We drop the `DEFAULT` MySQL constraint during conversion.
It can be manually added to the DDL via an `ALTER TABLE` command.

## Secondary Indexes

Expand Down
4 changes: 2 additions & 2 deletions docs/data-types/sqlserver.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ and `UPDATE CASCADE` actions, we drop them.

## Default Values

Spanner does not currently support default values. We drop these
SQL Server features during conversion.
While Spanner supports default values, Spanner migration tool currently does not support translating source `DEFAULT` constraints to Spanner `DEFAULT` constraints. We drop the `DEFAULT` MySQL constraint during conversion.
It can be manually added to the DDL via an `ALTER TABLE` command.

## Secondary Indexes

Expand Down
53 changes: 32 additions & 21 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
cloud.google.com/go/spanner v1.45.0
cloud.google.com/go/storage v1.29.0
github.com/DATA-DOG/go-sqlmock v1.5.0
github.com/aws/aws-sdk-go v1.35.3
github.com/aws/aws-sdk-go v1.44.259
github.com/basgys/goxml2json v1.1.0
github.com/denisenkom/go-mssqldb v0.11.0
github.com/go-sql-driver/mysql v1.6.0
Expand All @@ -21,14 +21,15 @@ require (
github.com/gorilla/mux v1.8.0
github.com/lib/pq v1.9.0
github.com/pganalyze/pg_query_go/v2 v2.2.0
github.com/pingcap/tidb v1.1.0-beta.0.20221126021158-6b02a5d8ba7d
github.com/pingcap/tidb/parser v0.0.0-20221126021158-6b02a5d8ba7d
github.com/pingcap/tidb v1.1.0-beta.0.20230918090611-71bcc44f77a3
github.com/pingcap/tidb/parser v0.0.0-20230918090611-71bcc44f77a3
github.com/pkg/browser v0.0.0-20210911075715-681adbf594b8
github.com/sijms/go-ora/v2 v2.2.17
github.com/stretchr/testify v1.8.2
go.uber.org/zap v1.21.0
golang.org/x/crypto v0.7.0
golang.org/x/net v0.10.0
go.uber.org/zap v1.23.0
golang.org/x/crypto v0.14.0
golang.org/x/exp v0.0.0-20221023144134-a1e5550cf13e
golang.org/x/net v0.17.0
google.golang.org/api v0.124.0
google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1
google.golang.org/grpc v1.55.0
Expand All @@ -40,14 +41,19 @@ require (
cloud.google.com/go/compute/metadata v0.2.3 // indirect
cloud.google.com/go/iam v1.0.1 // indirect
cloud.google.com/go/longrunning v0.4.1 // indirect
github.com/BurntSushi/toml v0.4.1 // indirect
github.com/BurntSushi/toml v1.2.1 // indirect
github.com/benbjohnson/clock v1.3.0 // indirect
github.com/beorn7/perks v1.0.1 // indirect
github.com/bitly/go-simplejson v0.5.0 // 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-20230310173818-32f1caf87195 // indirect
github.com/cockroachdb/errors v1.8.1 // indirect
github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f // indirect
github.com/cockroachdb/redact v1.0.8 // indirect
github.com/cockroachdb/sentry-go v0.6.1-cockroachdb.2 // indirect
github.com/cznic/mathutil v0.0.0-20181122101859-297441e03548 // indirect
github.com/danjacques/gofslock v0.0.0-20191023191349-0a45f885bc37 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/envoyproxy/go-control-plane v0.11.0 // indirect
Expand All @@ -62,38 +68,43 @@ require (
github.com/googleapis/enterprise-certificate-proxy v0.2.3 // indirect
github.com/googleapis/gax-go/v2 v2.9.1 // indirect
github.com/grpc-ecosystem/go-grpc-middleware v1.3.0 // indirect
github.com/influxdata/tdigest v0.0.1 // indirect
github.com/jmespath/go-jmespath v0.4.0 // indirect
github.com/kr/pretty v0.3.0 // indirect
github.com/kr/text v0.2.0 // indirect
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect
github.com/opentracing/basictracer-go v1.0.0 // indirect
github.com/opentracing/opentracing-go v1.2.0 // indirect
github.com/pingcap/errors v0.11.5-0.20211224045212-9687c2b0f87c // indirect
github.com/pingcap/errors v0.11.5-0.20220729040631-518f63d66278 // indirect
github.com/pingcap/failpoint v0.0.0-20220423142525-ae43b7f4e5c3 // indirect
github.com/pingcap/kvproto v0.0.0-20220517085838-12e2f5a9d167 // indirect
github.com/pingcap/kvproto v0.0.0-20230726063044-73d6d7f3756b // indirect
github.com/pingcap/log v1.1.1-0.20221116035753-734d527bc87c // indirect
github.com/pingcap/tipb v0.0.0-20220314125451-bfb5c2c55188 // indirect
github.com/pingcap/tipb v0.0.0-20221123081521-2fb828910813 // indirect
github.com/pkg/errors v0.9.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect
github.com/prometheus/client_golang v1.11.1 // indirect
github.com/prometheus/client_golang v1.13.0 // indirect
github.com/prometheus/client_model v0.3.0 // indirect
github.com/prometheus/common v0.32.1 // indirect
github.com/prometheus/procfs v0.6.0 // indirect
github.com/shirou/gopsutil/v3 v3.21.12 // indirect
github.com/tikv/client-go/v2 v2.0.1-0.20221012074928-624e0ed3cc67 // indirect
github.com/tikv/pd/client v0.0.0-20220307081149-841fa61e9710 // indirect
github.com/prometheus/common v0.37.0 // indirect
github.com/prometheus/procfs v0.8.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20200410134404-eec4a21b6bb0 // indirect
github.com/rogpeppe/go-internal v1.6.1 // indirect
github.com/shirou/gopsutil/v3 v3.22.9 // indirect
github.com/spf13/pflag v1.0.5 // indirect
github.com/tikv/client-go/v2 v2.0.4-0.20230912041415-9c163cc8574b // indirect
github.com/tikv/pd/client v0.0.0-20230904040343-947701a32c05 // indirect
github.com/uber/jaeger-client-go v2.22.1+incompatible // indirect
github.com/uber/jaeger-lib v2.4.1+incompatible // indirect
github.com/yusufpapurcu/wmi v1.2.2 // indirect
go.opencensus.io v0.24.0 // indirect
go.uber.org/atomic v1.9.0 // indirect
go.uber.org/atomic v1.10.0 // indirect
go.uber.org/multierr v1.8.0 // indirect
golang.org/x/exp v0.0.0-20220426173459-3bcf042a4bf5 // indirect
golang.org/x/oauth2 v0.8.0 // indirect
golang.org/x/sync v0.2.0 // indirect
golang.org/x/sys v0.8.0 // indirect
golang.org/x/term v0.8.0 // indirect
golang.org/x/text v0.9.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/term v0.13.0 // indirect
golang.org/x/text v0.13.0 // indirect
golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
google.golang.org/appengine v1.6.7 // indirect
gopkg.in/natefinch/lumberjack.v2 v2.0.0 // indirect
Expand Down
Loading

0 comments on commit 0e5f33a

Please sign in to comment.