Skip to content

Commit 2a55cd9

Browse files
committed
Merge branch 'support-clickhouse-v2' of github.com:kokizzu/migrate into support-clickhouse-v2
2 parents b90713b + 4dfeff2 commit 2a55cd9

Some content is hidden

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

42 files changed

+19
-48
lines changed

.golangci.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,14 @@ linters:
1313
- unparam
1414
- nakedret
1515
- prealloc
16+
- revive
1617
#- gosec
1718
linters-settings:
1819
misspell:
1920
locale: US
21+
revive:
22+
rules:
23+
- name: redundant-build-tag
2024
issues:
2125
max-same-issues: 0
2226
max-issues-per-linter: 0

cmd/migrate/README.md

Lines changed: 10 additions & 6 deletions

database/firebird/firebird.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build go1.9
2-
// +build go1.9
32

43
package firebird
54

database/mysql/mysql.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build go1.9
2-
// +build go1.9
32

43
package mysql
54

database/pgx/pgx.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build go1.9
2-
// +build go1.9
32

43
package pgx
54

database/pgx/v5/pgx.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build go1.9
2-
// +build go1.9
32

43
package pgx
54

database/postgres/postgres.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build go1.9
2-
// +build go1.9
32

43
package postgres
54

database/redshift/redshift.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
//go:build go1.9
2-
// +build go1.9
32

43
package redshift
54

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ require (
1010
github.com/aws/aws-sdk-go v1.49.6
1111
github.com/cenkalti/backoff/v4 v4.3.0
1212
github.com/cockroachdb/cockroach-go/v2 v2.1.1
13-
github.com/dhui/dktest v0.4.4
13+
github.com/dhui/dktest v0.4.5
1414
github.com/docker/docker v28.0.1+incompatible
1515
github.com/fsouza/fake-gcs-server v1.17.0
1616
github.com/go-sql-driver/mysql v1.5.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,8 +150,8 @@ github.com/danieljoos/wincred v1.1.2/go.mod h1:GijpziifJoIBfYh+S7BbkdUTU4LfM+QnG
150150
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
151151
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
152152
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
153-
github.com/dhui/dktest v0.4.4 h1:+I4s6JRE1yGuqflzwqG+aIaMdgXIorCf5P98JnaAWa8=
154-
github.com/dhui/dktest v0.4.4/go.mod h1:4+22R4lgsdAXrDyaH4Nqx2JEz2hLp49MqQmm9HLCQhM=
153+
github.com/dhui/dktest v0.4.5 h1:uUfYBIVREmj/Rw6MvgmqNAYzTiKOHJak+enB5Di73MM=
154+
github.com/dhui/dktest v0.4.5/go.mod h1:tmcyeHDKagvlDrz7gDKq4UAJOLIfVZYkfD5OnHDwcCo=
155155
github.com/distribution/reference v0.6.0 h1:0IXCQ5g4/QMHHkarYzh5l+u8T3t73zM5QvfrDyIgxBk=
156156
github.com/distribution/reference v0.6.0/go.mod h1:BbU0aIcezP1/5jX/8MP0YiH4SdvB5Y4f/wlDRiLyi3E=
157157
github.com/dnaeon/go-vcr v1.1.0/go.mod h1:M7tiix8f0r6mKKJ3Yq/kqU1OYf3MnfmBWVbPx/yU9ko=

0 commit comments

Comments
 (0)