Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Upgrade from upstream 497b522583131b5a1ed0c2471663df9d7e24d71d
Signed-off-by: kuba-- <kuba@sourced.tech>
- Loading branch information
Showing
with
404 additions
and 82 deletions.
- +2 −4 mysql/server.go
- +13 −0 streamlog/streamlog.go
- +1 −1 vt/dbconfigs/dbconfigs.go
- +59 −8 vt/logutil/logutil_test.go
- +31 −13 vt/logutil/purge.go
- +2 −0 vt/mysqlctl/reparent.go
- +1 −1 vt/vterrors/vterrors.go
- +4 −0 vt/vtgate/logstats.go
- +29 −0 vt/vtgate/logstats_test.go
- +45 −18 vt/vtgate/planbuilder/symtab.go
- +116 −30 vt/vtgate/planbuilder/symtab_test.go
- +12 −0 vt/vtgate/querylogz_test.go
- +32 −0 vt/vtgate/vindexes/lookup_internal.go
- +1 −1 vt/vtgate/vindexes/lookup_test.go
- +6 −6 vt/vtgate/vindexes/lookup_unicodeloosemd5_hash_test.go
- +11 −0 vt/vttablet/tabletserver/querylogz_test.go
- +4 −0 vt/vttablet/tabletserver/tabletenv/logstats.go
- +35 −0 vt/vttablet/tabletserver/tabletenv/logstats_test.go
There are no files selected for viewing
This file contains 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 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 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 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 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 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 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
@@ -83,7 +83,7 @@ import ( | ||
var LogErrStacks bool | ||
|
||
func init() { | ||
flag.BoolVar(&LogErrStacks, "log_err_stacks", false, "log stack traces for errors") | ||
} | ||
|
||
// New returns an error with the supplied message. | ||
This file contains 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 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.