Skip to content

Commit 0a5a8df

Browse files
committed
Fixed go.mod && go.sum
1 parent 71de72f commit 0a5a8df

File tree

8 files changed

+152
-4
lines changed

8 files changed

+152
-4
lines changed

internal/endtoend/testdata/go.mod

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
11
module github.com/sqlc-dev/sqlc/endtoend
22

3-
go 1.18
3+
go 1.22.5
4+
5+
toolchain go1.24.6
46

57
require (
68
github.com/go-sql-driver/mysql v1.7.0
79
github.com/gofrs/uuid v4.0.0+incompatible
8-
github.com/google/uuid v1.3.0
10+
github.com/google/uuid v1.6.0
911
github.com/hexon/mysqltsv v0.1.0
1012
github.com/jackc/pgconn v1.5.1-0.20200601181101-fa742c524853
1113
github.com/jackc/pgtype v1.6.2
@@ -20,16 +22,26 @@ require (
2022

2123
require (
2224
github.com/friendsofgo/errors v0.9.2 // indirect
25+
github.com/golang-jwt/jwt/v4 v4.5.2 // indirect
2326
github.com/jackc/chunkreader/v2 v2.0.1 // indirect
2427
github.com/jackc/pgio v1.0.0 // indirect
2528
github.com/jackc/pgpassfile v1.0.0 // indirect
2629
github.com/jackc/pgproto3/v2 v2.0.1 // indirect
2730
github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect
31+
github.com/jonboulle/clockwork v0.5.0 // indirect
2832
github.com/pgvector/pgvector-go v0.1.1 // indirect
2933
github.com/volatiletech/inflect v0.0.1 // indirect
3034
github.com/volatiletech/randomize v0.0.1 // indirect
3135
github.com/volatiletech/strmangle v0.0.1 // indirect
32-
golang.org/x/crypto v0.9.0 // indirect
33-
golang.org/x/text v0.9.0 // indirect
36+
github.com/ydb-platform/ydb-go-genproto v0.0.0-20250911135631-b3beddd517d9 // indirect
37+
github.com/ydb-platform/ydb-go-sdk/v3 v3.117.1 // indirect
38+
golang.org/x/crypto v0.33.0 // indirect
39+
golang.org/x/net v0.35.0 // indirect
40+
golang.org/x/sync v0.11.0 // indirect
41+
golang.org/x/sys v0.30.0 // indirect
42+
golang.org/x/text v0.22.0 // indirect
3443
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
44+
google.golang.org/genproto/googleapis/rpc v0.0.0-20241015192408-796eee8c2d53 // indirect
45+
google.golang.org/grpc v1.69.4 // indirect
46+
google.golang.org/protobuf v1.35.1 // indirect
3547
)

internal/endtoend/testdata/go.sum

Lines changed: 124 additions & 0 deletions
Large diffs are not rendered by default.

internal/endtoend/testdata/params_location/ydb/stdlib/query.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@ LIMIT $limit;
4141

4242

4343

44+
45+

internal/endtoend/testdata/params_location/ydb/stdlib/schema.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ CREATE TABLE orders (
2323

2424

2525

26+
27+

internal/endtoend/testdata/params_location/ydb/stdlib/sqlc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,5 @@
2020

2121

2222

23+
24+

internal/endtoend/testdata/params_location/ydb/ydb-go-sdk/query.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,3 +41,5 @@ LIMIT $limit;
4141

4242

4343

44+
45+

internal/endtoend/testdata/params_location/ydb/ydb-go-sdk/schema.sql

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,5 @@ CREATE TABLE orders (
2323

2424

2525

26+
27+

internal/endtoend/testdata/params_location/ydb/ydb-go-sdk/sqlc.json

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,3 +21,5 @@
2121

2222

2323

24+
25+

0 commit comments

Comments
 (0)