This repository was archived by the owner on Jan 28, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 110
Support ON/OFF for SET autocommit #383
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Support ON/OFF for SET autocommit
Signed-off-by: kuba-- <kuba@sourced.tech> Add more parser tests. Handle also true/false. Signed-off-by: kuba-- <kuba@sourced.tech>
- Loading branch information
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,19 @@ | ||
module gopkg.in/src-d/go-mysql-server.v0 | ||
|
||
require ( | ||
github.com/BurntSushi/toml v0.3.0 // indirect | ||
github.com/CAFxX/gcnotifier v0.0.0-20170518020117-39b0596a2da3 // indirect | ||
github.com/DataDog/datadog-go v0.0.0-20180822151419-281ae9f2d895 // indirect | ||
github.com/OneOfOne/xxhash v1.2.2 // indirect | ||
github.com/StackExchange/wmi v0.0.0-20180725035823-b12b22c5341f // indirect | ||
github.com/armon/go-metrics v0.0.0-20180917152333-f0300d1749da // indirect | ||
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect | ||
github.com/boltdb/bolt v1.3.1 | ||
github.com/cespare/xxhash v1.0.0 // indirect | ||
github.com/circonus-labs/circonus-gometrics v2.2.1+incompatible // indirect | ||
github.com/circonus-labs/circonusllhist v0.0.0-20180430145027-5eb751da55c6 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/go-ole/go-ole v1.2.1 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/gogo/protobuf v1.1.1 // indirect | ||
github.com/google/go-cmp v0.2.0 // indirect | ||
github.com/gorilla/context v1.1.1 // indirect | ||
github.com/gorilla/handlers v1.4.0 // indirect | ||
github.com/gorilla/mux v1.6.2 // indirect | ||
github.com/hashicorp/consul v1.2.3 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.0 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.0.0 // indirect | ||
github.com/hashicorp/go-msgpack v0.0.0-20150518234257-fa3f63826f7c // indirect | ||
github.com/hashicorp/go-multierror v1.0.0 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.0.0-20180718195005-e651d75abec6 // indirect | ||
github.com/hashicorp/go-sockaddr v0.0.0-20180320115054-6d291a969b86 // indirect | ||
github.com/hashicorp/memberlist v0.1.0 // indirect | ||
github.com/hashicorp/serf v0.8.1 // indirect | ||
github.com/hashicorp/yamux v0.0.0-20180917205041-7221087c3d28 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/miekg/dns v1.0.9 // indirect | ||
github.com/mitchellh/hashstructure v0.0.0-20170609045927-2bca23e0e452 | ||
github.com/onsi/gomega v1.4.2 // indirect | ||
github.com/mitchellh/hashstructure v1.0.0 | ||
github.com/opentracing/opentracing-go v1.0.2 | ||
github.com/pascaldekloe/goe v0.0.0-20180627143212-57f6aae5913c // indirect | ||
github.com/pelletier/go-toml v1.2.0 // indirect | ||
github.com/pilosa/pilosa v1.1.0 | ||
github.com/pkg/errors v0.8.0 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v0.8.0 // indirect | ||
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 // indirect | ||
github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e // indirect | ||
github.com/prometheus/procfs v0.0.0-20180920065004-418d78d0b9a7 // indirect | ||
github.com/satori/go.uuid v1.2.0 | ||
github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect | ||
github.com/shirou/gopsutil v2.17.12+incompatible // indirect | ||
github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4 // indirect | ||
github.com/sirupsen/logrus v1.0.6 | ||
github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72 // indirect | ||
github.com/satori/go.uuid v1.2.0 // indirect | ||
github.com/sirupsen/logrus v1.1.0 | ||
github.com/spf13/cast v1.2.0 | ||
github.com/stretchr/testify v1.2.2 | ||
github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926 // indirect | ||
golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac // indirect | ||
google.golang.org/appengine v1.2.0 // indirect | ||
google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8 // indirect | ||
google.golang.org/grpc v1.14.0 // indirect | ||
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect | ||
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect | ||
golang.org/x/net v0.0.0-20180926154720-4dfa2610cdf3 // indirect | ||
google.golang.org/grpc v1.15.0 // indirect | ||
gopkg.in/src-d/go-errors.v1 v1.0.0 | ||
gopkg.in/src-d/go-vitess.v0 v0.0.0-20180222154500-2cb632cdef3c | ||
gopkg.in/vmihailenco/msgpack.v2 v2.9.1 // indirect | ||
gopkg.in/src-d/go-vitess.v1 v1.1.0 | ||
gopkg.in/yaml.v2 v2.2.1 | ||
) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is it normal that all that dependencies disappear?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure how vgo builds this dependency graph, but as you see everything what disappeared are indirect deps. The good thing is that it still builds.