
* Implement Generics API * Add more generics tests * Add more tests and Take method * use delayed‑ops pipeline for generics API * fix generics tests for mysql * Support SubQuery for Generics * Add clause.JoinTable helper method * Fix golangci-lint error * Complete the design and implementation of generic version Join * improve generics version Joins support * allow configuring select/omit columns for joins via subqueries * finish generic version Preload * handle error of generics Joins/Preload * fix tests * Add LimitPerRecord for generic version Preload * fix tests for mysql 5.7 * test for nested generic version Join/Preload * Add WithResult support for generics API * test reuse generics db conditions * fix data race * remove ExampleLRU test * Add default transaction timeout support * fix test
42 lines
1.3 KiB
Modula-2
42 lines
1.3 KiB
Modula-2
module gorm.io/gorm/tests
|
|
|
|
go 1.23.0
|
|
|
|
require (
|
|
github.com/google/uuid v1.6.0
|
|
github.com/jinzhu/now v1.1.5
|
|
github.com/lib/pq v1.10.9
|
|
github.com/stretchr/testify v1.10.0
|
|
gorm.io/driver/mysql v1.5.7
|
|
gorm.io/driver/postgres v1.5.11
|
|
gorm.io/driver/sqlite v1.5.7
|
|
gorm.io/driver/sqlserver v1.5.4
|
|
gorm.io/gorm v1.26.1
|
|
)
|
|
|
|
require (
|
|
filippo.io/edwards25519 v1.1.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-sql-driver/mysql v1.9.2 // indirect
|
|
github.com/golang-sql/civil v0.0.0-20220223132316-b832511892a9 // indirect
|
|
github.com/golang-sql/sqlexp v0.1.0 // indirect
|
|
github.com/jackc/pgpassfile v1.0.0 // indirect
|
|
github.com/jackc/pgservicefile v0.0.0-20240606120523-5a60cdf6a761 // indirect
|
|
github.com/jackc/pgx/v5 v5.7.5 // indirect
|
|
github.com/jinzhu/inflection v1.0.0 // indirect
|
|
github.com/kr/text v0.2.0 // indirect
|
|
github.com/mattn/go-sqlite3 v1.14.28 // indirect
|
|
github.com/microsoft/go-mssqldb v1.8.1 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
github.com/rogpeppe/go-internal v1.12.0 // indirect
|
|
golang.org/x/crypto v0.38.0 // indirect
|
|
golang.org/x/text v0.25.0 // indirect
|
|
gopkg.in/yaml.v3 v3.0.1 // indirect
|
|
)
|
|
|
|
replace gorm.io/gorm => ../
|
|
|
|
replace github.com/jackc/pgx/v5 => github.com/jackc/pgx/v5 v5.4.3
|
|
|
|
replace github.com/microsoft/go-mssqldb => github.com/microsoft/go-mssqldb v1.7.0
|