mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-24 10:30:48 -06:00
* [no-release-notes] Pushdown refactor, deprecate sql.FilteredTable, ColumnDiffTable correctness Pushdown splitting into two phases uncovered bugs. sql.FilteredTable is now deprecated. ColumnDiffTable correctness tests were never run through the indexing path before, which are broken. This disables the indexing path and runs the proper test suites. * [ga-format-pr] Run go/utils/repofmt/format_repo.sh and go/Godeps/update.sh * bump * tidy * missing interface method * mod tidy * formatter --------- Co-authored-by: max-hoffman <max-hoffman@users.noreply.github.com>
21 lines
510 B
Modula-2
21 lines
510 B
Modula-2
module github.com/dolthub/dolt/integration-tests/go-sql-server-driver
|
|
|
|
go 1.19
|
|
|
|
require (
|
|
github.com/dolthub/dolt/go v0.40.4
|
|
github.com/stretchr/testify v1.8.2
|
|
golang.org/x/sync v0.1.0
|
|
gopkg.in/yaml.v3 v3.0.1
|
|
)
|
|
|
|
require (
|
|
github.com/creasty/defaults v1.6.0 // indirect
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
github.com/go-sql-driver/mysql v1.6.0 // indirect
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
golang.org/x/sys v0.6.0 // indirect
|
|
)
|
|
|
|
replace github.com/dolthub/dolt/go => ../../go/
|