File tree Expand file tree Collapse file tree 6 files changed +7
-6
lines changed
Expand file tree Collapse file tree 6 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ require (
1515 github.com/jackc/pgx/v5 v5.9.2
1616 github.com/jinzhu/inflection v1.0.0
1717 github.com/lib/pq v1.12.3
18- github.com/ncruces/go-sqlite3 v0.33.3
18+ github.com/ncruces/go-sqlite3 v0.32.0
1919 github.com/pganalyze/pg_query_go/v6 v6.2.2
2020 github.com/pingcap/tidb/pkg/parser v0.0.0-20260418072757-ce92298d1124
2121 github.com/riza-io/grpc-go v0.2.0
@@ -39,7 +39,6 @@ require (
3939 github.com/jackc/pgpassfile v1.0.0 // indirect
4040 github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
4141 github.com/jackc/puddle/v2 v2.2.2 // indirect
42- github.com/ncruces/go-sqlite3-wasm v1.1.1-0.20260409221933-87e4b35a38d0 // indirect
4342 github.com/ncruces/julianday v1.0.0 // indirect
4443 github.com/pingcap/errors v0.11.5-0.20250523034308-74f78ae071ee // indirect
4544 github.com/pingcap/failpoint v0.0.0-20240528011301-b51a646c7c86 // indirect
Original file line number Diff line number Diff line change @@ -51,10 +51,8 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
5151github.com/kr/text v0.2.0 /go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE =
5252github.com/lib/pq v1.12.3 h1:tTWxr2YLKwIvK90ZXEw8GP7UFHtcbTtty8zsI+YjrfQ =
5353github.com/lib/pq v1.12.3 /go.mod h1:/p+8NSbOcwzAEI7wiMXFlgydTwcgTr3OSKMsD2BitpA =
54- github.com/ncruces/go-sqlite3 v0.33.3 h1:6jCR3KuGvJSEwhaQrkHDGeIe2qCQ6nOUDNsPz7ZIotw =
55- github.com/ncruces/go-sqlite3 v0.33.3 /go.mod h1:t2Osfw0wcKzJTgv2EvrkTtVLqlbKTA5Yvwb2ypAlBcY =
56- github.com/ncruces/go-sqlite3-wasm v1.1.1-0.20260409221933-87e4b35a38d0 h1:ymE9H30x1AyW5VfMNkJC9teuI2W1jjMsQS7kc6zl6Tg =
57- github.com/ncruces/go-sqlite3-wasm v1.1.1-0.20260409221933-87e4b35a38d0 /go.mod h1:/H3+JykPsfSlvKbOxNSx9kKwm3ecqQGzyCs1e9KkNsU =
54+ github.com/ncruces/go-sqlite3 v0.32.0 h1:hNBUXp88LrfQCsuyXLqWTbTUG35sUuktDsqhhgHvU20 =
55+ github.com/ncruces/go-sqlite3 v0.32.0 /go.mod h1:MIWTK60ONDl0oVY073zYvJP21C3Dly6P9bxVpgkLwdQ =
5856github.com/ncruces/julianday v1.0.0 h1:fH0OKwa7NWvniGQtxdJRxAgkBMolni2BjDHaWTxqt7M =
5957github.com/ncruces/julianday v1.0.0 /go.mod h1:Dusn2KvZrrovOMJuOt0TNXL6tB7U2E8kvza5fFc9G7g =
6058github.com/pganalyze/pg_query_go/v6 v6.2.2 h1:O0L6zMC226R82RF3X5n0Ki6HjytDsoAzuzp4ATVAHNo =
Original file line number Diff line number Diff line change @@ -2,4 +2,5 @@ package cmd
22
33import (
44 _ "github.com/ncruces/go-sqlite3/driver"
5+ _ "github.com/ncruces/go-sqlite3/embed"
56)
Original file line number Diff line number Diff line change 77 "sync"
88
99 "github.com/ncruces/go-sqlite3"
10+ _ "github.com/ncruces/go-sqlite3/embed"
1011
1112 core "github.com/sqlc-dev/sqlc/internal/analysis"
1213 "github.com/sqlc-dev/sqlc/internal/config"
Original file line number Diff line number Diff line change 77 "testing"
88
99 _ "github.com/ncruces/go-sqlite3/driver"
10+ _ "github.com/ncruces/go-sqlite3/embed"
1011
1112 "github.com/sqlc-dev/sqlc/internal/sql/sqlpath"
1213)
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ import (
1111 "github.com/go-sql-driver/mysql"
1212 "github.com/jackc/pgx/v5/pgxpool"
1313 "github.com/ncruces/go-sqlite3"
14+ _ "github.com/ncruces/go-sqlite3/embed"
1415
1516 "github.com/sqlc-dev/sqlc/internal/engine/dolphin"
1617 "github.com/sqlc-dev/sqlc/internal/engine/postgresql"
You can’t perform that action at this time.
0 commit comments