Merge pull request #5258 from tanjunchen/fix-up-code-bug

avoid having to escape twice in go/vt/vtgate/plugin_mysql_server.go file
This commit is contained in:
Andres Taylor 2019-10-07 15:17:08 +02:00 коммит произвёл GitHub
Родитель 8ab3311ecf d78c433980
Коммит f645c11a39
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -118,7 +118,7 @@ func (vh *vtgateHandler) ConnectionClosed(c *mysql.Conn) {
}
// Regexp to extract parent span id over the sql query
var r = regexp.MustCompile("/\\*VT_SPAN_CONTEXT=(.*)\\*/")
var r = regexp.MustCompile(`/\*VT_SPAN_CONTEXT=(.*)\*/`)
// this function is here to make this logic easy to test by decoupling the logic from the `trace.NewSpan` and `trace.NewFromString` functions
func startSpanTestable(ctx context.Context, query, label string,