Skip to content

Commit fd2905e

Browse files
committed
chore(endtoend): Update testdata with new import path
1 parent 2abaaa5 commit fd2905e

File tree

15 files changed

+18
-18
lines changed

15 files changed

+18
-18
lines changed

internal/endtoend/testdata/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/jackc/pgtype v1.6.2
1010
github.com/jackc/pgx/v4 v4.6.1-0.20200606145419-4e5062306904
1111
github.com/jackc/pgx/v5 v5.0.1
12-
github.com/kyleconroy/sqlc-testdata v0.0.0-20200512000015-15313bc43553
12+
github.com/sqlc-dev/sqlc-testdata v0.0.0-20200512000015-15313bc43553
1313
github.com/lib/pq v1.9.0
1414
github.com/sqlc-dev/pqtype v0.2.0
1515
github.com/volatiletech/null/v8 v8.1.2

internal/endtoend/testdata/go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,8 @@ github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORN
7171
github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
7272
github.com/kr/pty v1.1.8/go.mod h1:O1sed60cT9XZ5uDucP5qwvh+TE3NnUj51EiZO/lmSfw=
7373
github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
74-
github.com/kyleconroy/sqlc-testdata v0.0.0-20200512000015-15313bc43553 h1:IlnX6Ga5wEbn5Ejey9S6GTSzoAJuCnmxYjYZa6nUbsE=
75-
github.com/kyleconroy/sqlc-testdata v0.0.0-20200512000015-15313bc43553/go.mod h1:F2aHHOnBI1Big/J6ffYQnyyUXxcZ1vI9IXPaA0noK8c=
74+
github.com/sqlc-dev/sqlc-testdata v0.0.0-20200512000015-15313bc43553 h1:IlnX6Ga5wEbn5Ejey9S6GTSzoAJuCnmxYjYZa6nUbsE=
75+
github.com/sqlc-dev/sqlc-testdata v0.0.0-20200512000015-15313bc43553/go.mod h1:F2aHHOnBI1Big/J6ffYQnyyUXxcZ1vI9IXPaA0noK8c=
7676
github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
7777
github.com/lib/pq v1.1.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
7878
github.com/lib/pq v1.2.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=

internal/endtoend/testdata/overrides/mysql/sqlc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"queries": "query.sql",
1010
"overrides": [
1111
{
12-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
12+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1313
"column": "foo.retyped"
1414
}
1515
]

internal/endtoend/testdata/overrides/postgresql/pgx/v4/go/models.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/overrides/postgresql/pgx/v4/sqlc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"queries": "query.sql",
1111
"overrides": [
1212
{
13-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
13+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1414
"column": "foo.retyped"
1515
},
1616
{

internal/endtoend/testdata/overrides/postgresql/pgx/v5/go/models.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/overrides/postgresql/pgx/v5/sqlc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"queries": "query.sql",
1111
"overrides": [
1212
{
13-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
13+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1414
"column": "foo.retyped"
1515
},
1616
{

internal/endtoend/testdata/overrides/postgresql/stdlib/go/models.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/overrides/postgresql/stdlib/sqlc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"queries": "query.sql",
1010
"overrides": [
1111
{
12-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
12+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1313
"column": "foo.retyped"
1414
},
1515
{

internal/endtoend/testdata/overrides/sqlite/sqlc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
"queries": "query.sql",
1010
"overrides": [
1111
{
12-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
12+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1313
"column": "foo.retyped"
1414
}
1515
]

internal/endtoend/testdata/overrides_go_types/mysql/sqlc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"queries": "query.sql",
1010
"overrides": [
1111
{
12-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
12+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1313
"column": "foo.retyped"
1414
},
1515
{
16-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
16+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1717
"column": "*.also_retyped"
1818
}
1919
]

internal/endtoend/testdata/overrides_go_types/sqlite/sqlc.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@
99
"queries": "query.sql",
1010
"overrides": [
1111
{
12-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
12+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1313
"column": "foo.retyped"
1414
},
1515
{
16-
"go_type": "github.com/kyleconroy/sqlc-testdata/pkg.CustomType",
16+
"go_type": "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType",
1717
"column": "*.also_retyped"
1818
}
1919
]

internal/endtoend/testdata/sqlc_slice/mysql/sqlc.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"overrides": [
1313
{
1414
"column": "foo.mystr",
15-
"go_type": "github.com/kyleconroy/sqlc-testdata/mysql.ID"
15+
"go_type": "github.com/sqlc-dev/sqlc-testdata/mysql.ID"
1616
}
1717
]
1818
}

internal/endtoend/testdata/yaml_overrides/go/models.go

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

internal/endtoend/testdata/yaml_overrides/sqlc.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ packages:
55
schema: "sql/"
66
queries: "sql/"
77
overrides:
8-
- go_type: "github.com/kyleconroy/sqlc-testdata/pkg.CustomType"
8+
- go_type: "github.com/sqlc-dev/sqlc-testdata/pkg.CustomType"
99
column: "foo.retyped"
1010
- go_type: "github.com/lib/pq.StringArray"
1111
column: "foo.langs"

0 commit comments

Comments
 (0)