Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

slack-15.0: backport vitessio/vitess#16106 #413

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions go/test/endtoend/utils/cmp.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ package utils
import (
"context"
"fmt"
"testing"

"github.com/google/go-cmp/cmp"
"github.com/stretchr/testify/assert"
Expand All @@ -30,12 +29,17 @@ import (
"vitess.io/vitess/go/test/utils"
)

type TestingT interface {
require.TestingT
Helper()
}

type MySQLCompare struct {
t *testing.T
t TestingT
MySQLConn, VtConn *mysql.Conn
}

func NewMySQLCompare(t *testing.T, vtParams, mysqlParams mysql.ConnParams) (MySQLCompare, error) {
func NewMySQLCompare(t TestingT, vtParams, mysqlParams mysql.ConnParams) (MySQLCompare, error) {
ctx := context.Background()
vtConn, err := mysql.Connect(ctx, &vtParams)
if err != nil {
Expand Down
5 changes: 2 additions & 3 deletions go/test/endtoend/utils/mysql.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
"fmt"
"os"
"path"
"testing"

"github.com/stretchr/testify/assert"

Expand Down Expand Up @@ -132,16 +131,16 @@
return nil
}

func compareVitessAndMySQLResults(t *testing.T, query string, vtQr, mysqlQr *sqltypes.Result, compareColumns bool) {
func compareVitessAndMySQLResults(t TestingT, query string, vtQr, mysqlQr *sqltypes.Result, compareColumns bool) {
if vtQr == nil && mysqlQr == nil {
return
}
if vtQr == nil {
t.Error("Vitess result is 'nil' while MySQL's is not.")

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old Vtctl

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 139 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old Vtctl

t.Error undefined (type TestingT has no field or method Error)
return
}
if mysqlQr == nil {
t.Error("MySQL result is 'nil' while Vitess' is not.")

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old Vtctl

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 143 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old Vtctl

t.Error undefined (type TestingT has no field or method Error)
return
}
if compareColumns {
Expand All @@ -163,7 +162,7 @@
}
stmt, err := sqlparser.Parse(query)
if err != nil {
t.Error(err)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old Vtctl

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 165 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old Vtctl

t.Error undefined (type TestingT has no field or method Error)
return
}
orderBy := false
Expand All @@ -185,13 +184,13 @@
for _, row := range mysqlQr.Rows {
errStr += fmt.Sprintf("%s\n", row)
}
t.Error(errStr)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 187 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old Vtctl

t.Error undefined (type TestingT has no field or method Error)
}

func compareVitessAndMySQLErrors(t *testing.T, vtErr, mysqlErr error) {
func compareVitessAndMySQLErrors(t TestingT, vtErr, mysqlErr error) {
if vtErr != nil && mysqlErr != nil || vtErr == nil && mysqlErr == nil {
return
}
out := fmt.Sprintf("Vitess and MySQL are not erroring the same way.\nVitess error: %v\nMySQL error: %v", vtErr, mysqlErr)
t.Error(out)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)) (typecheck)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Static Code Checks Etc

t.Error undefined (type TestingT has no field or method Error)) (typecheck)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_readafterwrite)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_unsharded)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_concurrentdml)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vttablet_prscomplex)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (mysql80)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vschema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / End-to-End Test (Race)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_transaction)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_gen4)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_topo_etcd)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_general_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_vindex_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_partial_keyspace)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (tabletmanager_consul)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_reservedconn)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (vtgate_schema_tracker)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (15)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (13)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (18)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Queries)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (12)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Query Serving (Schema)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Docker Test Cluster 25

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run endtoend tests on Cluster (ers_prs_newfeatures_heavy)

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old VTTablet

t.Error undefined (type TestingT has no field or method Error)

Check failure on line 195 in go/test/endtoend/utils/mysql.go

View workflow job for this annotation

GitHub Actions / Run Upgrade Downgrade Test - Reparent Old Vtctl

t.Error undefined (type TestingT has no field or method Error)
}
12 changes: 12 additions & 0 deletions go/test/endtoend/vtgate/gen4/gen4_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -495,3 +495,15 @@ func TestFilterOnLeftOuterJoin(t *testing.T) {

mcmp.AssertMatches(query, "[[INT32(22)] [INT32(33)]]")
}

func BenchmarkCountStar(b *testing.B) {
mcmp, closer := start(b)
defer closer()

// insert some data.
mcmp.Exec(`insert into t2(id, tcol1, tcol2) values (1, 'A%B', 'A%B'),(2, 'C_D', 'E'),(3, 'AB', 'C1D'),(4, 'E', 'A%B'),(5, 'A%B', 'AB'),(6, 'C1D', 'E'),(7, 'C_D', 'A%B'),(8, 'E', 'C_D')`)

for i := 0; i < b.N; i++ {
mcmp.Exec(`select Count(*) from t2`)
}
}
2 changes: 1 addition & 1 deletion go/test/endtoend/vtgate/gen4/main_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func TestMain(m *testing.M) {
os.Exit(exitCode)
}

func start(t *testing.T) (utils.MySQLCompare, func()) {
func start(t testing.TB) (utils.MySQLCompare, func()) {
mcmp, err := utils.NewMySQLCompare(t, vtParams, mysqlParams)
require.NoError(t, err)
deleteAll := func() {
Expand Down
18 changes: 18 additions & 0 deletions go/vt/sqlparser/ast_funcs.go
Original file line number Diff line number Diff line change
Expand Up @@ -654,6 +654,24 @@ func NewColNameWithQualifier(identifier string, table TableName) *ColName {
}
}

func createAliasForEmpty(selectExpr SelectExpr, alias string) {
switch node := selectExpr.(type) {
case *AliasedExpr:
// The check here to see if the select expression printed as a string matches the alias exactly
// is an optimization to remove the aliases that are not required.
// That being said, removing this optimization will actually fix a few more queries that give incorrect column names,
// like `SELECT 1`. With this optimization the parser doesn't add an alias, so vtgate runs this query after normalization
// as `SELECT :vtg1` and therefore produces the wrong column name. If the column name is required to be correct, then there are
// 2 possible fixes -
// 1. Remove this check, so that parser changes the query to `SELECT 1 as `1`` and even after normalizing, it will remain `SELECT :vtg1 as `1``
// so the alias would be correct.
// 2. The other fix is to prevent the normalization of literals in select expressions altogether, in which case this optimization can be kept.
if node.As.IsEmpty() && String(selectExpr) != strings.TrimSpace(alias) {
node.As = NewIdentifierCI(strings.TrimSpace(alias))
}
}
}

// NewSelect is used to create a select statement
func NewSelect(comments Comments, exprs SelectExprs, selectOptions []string, into *SelectInto, from TableExprs, where *Where, groupBy GroupBy, having *Where, windows NamedWindows) *Select {
var cache *bool
Expand Down
4 changes: 2 additions & 2 deletions go/vt/sqlparser/parse_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5294,8 +5294,8 @@ func TestOne(t *testing.T) {
testOne := struct {
input, output string
}{
input: "",
output: "",
input: "select cOlUmN_NaME, 1+ 2, 1, CoUnT ( * ) from t1",
output: "select cOlUmN_NaME, 1 + 2 as `1+ 2`, 1, count(*) as `CoUnT ( * )` from t1",
}
if testOne.input == "" {
return
Expand Down
Loading
Loading