Skip to content

Commit

Permalink
Merge pull request #45 from mackee/feature/supports-sql-null-t
Browse files Browse the repository at this point in the history
Support sql.Null[T]
  • Loading branch information
mackee authored Jul 11, 2024
2 parents 1260a14 + 3bfc52f commit 99dda07
Show file tree
Hide file tree
Showing 37 changed files with 2,393 additions and 350 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
runs-on: ubuntu-latest
steps:

- name: Set up Go 1.17
- name: Set up Go 1.22
uses: actions/setup-go@v2
with:
go-version: 1.17.x
go-version: 1.22.x
id: go

- name: Check out code into the Go module directory
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,4 @@ _bin
vendor/
_artifacts
_gobin
go.work
17 changes: 10 additions & 7 deletions _example/go.mod
Original file line number Diff line number Diff line change
@@ -1,19 +1,22 @@
module github.com/mackee/go-sqlla/_example

go 1.17
go 1.22

toolchain go1.22.4

replace github.com/mackee/go-sqlla/v2 => ../

require (
github.com/go-sql-driver/mysql v1.6.0
github.com/mackee/go-genddl v0.0.0-20220809061459-645eadea7290
github.com/mackee/go-genddl v0.0.0-20240709095411-bc59661f6bd5
github.com/mackee/go-sqlla/v2 v2.11.0
github.com/mattn/go-sqlite3 v1.14.9
github.com/ory/dockertest/v3 v3.9.1
)

require (
github.com/Azure/go-ansiterm v0.0.0-20170929234023-d6e3b3328b78 // indirect
github.com/Masterminds/goutils v1.1.1 // indirect
github.com/Microsoft/go-winio v0.5.2 // indirect
github.com/Nvveen/Gotty v0.0.0-20120604004816-cd527374f1e5 // indirect
github.com/cenkalti/backoff/v4 v4.1.3 // indirect
Expand All @@ -37,10 +40,10 @@ require (
github.com/xeipuuv/gojsonpointer v0.0.0-20180127040702-4e3ac2762d5f // indirect
github.com/xeipuuv/gojsonreference v0.0.0-20180127040603-bd5ef7bd5415 // indirect
github.com/xeipuuv/gojsonschema v1.2.0 // indirect
golang.org/x/mod v0.16.0 // indirect
golang.org/x/net v0.17.0 // indirect
golang.org/x/sys v0.13.0 // indirect
golang.org/x/tools v0.13.0 // indirect
golang.org/x/xerrors v0.0.0-20220609144429-65e65417b02f // indirect
golang.org/x/mod v0.19.0 // indirect
golang.org/x/net v0.27.0 // indirect
golang.org/x/sync v0.7.0 // indirect
golang.org/x/sys v0.22.0 // indirect
golang.org/x/tools v0.23.0 // indirect
gopkg.in/yaml.v2 v2.4.0 // indirect
)
166 changes: 22 additions & 144 deletions _example/go.sum

Large diffs are not rendered by default.

Loading

0 comments on commit 99dda07

Please sign in to comment.