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

bugfix: use the proper interface for comment directives #14267

Merged
merged 3 commits into from
Oct 14, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
78 changes: 78 additions & 0 deletions go/test/endtoend/vtgate/queries/no_scatter/main_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
/*
Copyright 2023 The Vitess Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package aggregation

import (
_ "embed"
"flag"
"os"
"testing"

"vitess.io/vitess/go/mysql"
"vitess.io/vitess/go/test/endtoend/cluster"
)

var (
clusterInstance *cluster.LocalProcessCluster
vtParams mysql.ConnParams
keyspaceName = "ks"
cell = "test"

//go:embed schema.sql
schemaSQL string

//go:embed vschema.json
vschema string
)

func TestMain(m *testing.M) {
defer cluster.PanicHandler(nil)
flag.Parse()

exitCode := func() int {
clusterInstance = cluster.NewCluster(cell, "localhost")
defer clusterInstance.Teardown()

// Start topo server
err := clusterInstance.StartTopo()
if err != nil {
return 1
}

// Start keyspace
keyspace := &cluster.Keyspace{
Name: keyspaceName,
SchemaSQL: schemaSQL,
VSchema: vschema,
}
clusterInstance.VtGateExtraArgs = []string{"--no_scatter=true"}
err = clusterInstance.StartKeyspace(*keyspace, []string{"-80", "80-"}, 0, false)
if err != nil {
return 1
}
// Start vtgate
err = clusterInstance.StartVtgate()
if err != nil {
return 1
}

vtParams = clusterInstance.GetVTParams(keyspaceName)

return m.Run()
}()
os.Exit(exitCode)
}
62 changes: 62 additions & 0 deletions go/test/endtoend/vtgate/queries/no_scatter/queries_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
/*
Copyright 2023 The Vitess Authors.

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/

package aggregation

import (
"context"
"testing"

"github.com/stretchr/testify/require"

"vitess.io/vitess/go/mysql"
"vitess.io/vitess/go/test/endtoend/cluster"
"vitess.io/vitess/go/test/endtoend/utils"
)

func start(t *testing.T) (*mysql.Conn, func()) {
vtConn, err := mysql.Connect(context.Background(), &vtParams)
require.NoError(t, err)

deleteAll := func() {
tables := []string{"music", "user"}
for _, table := range tables {
utils.Exec(t, vtConn, "delete from "+table)
}
}

deleteAll()

return vtConn, func() {
deleteAll()
vtConn.Close()
cluster.PanicHandler(t)
}
}

func TestFailsWhenForcedToScatter(t *testing.T) {
systay marked this conversation as resolved.
Show resolved Hide resolved
vtconn, closer := start(t)
defer closer()

utils.Exec(t, vtconn, "insert into music(id, user_id) values(1,1), (2,5), (3,1), (4,2), (5,3), (6,4), (7,5)")
utils.Exec(t, vtconn, "insert into user(id, name) values(1,'toto'), (2,'tata'), (3,'titi'), (4,'tete'), (5,'foo')")

_, err := utils.ExecAllowError(t, vtconn, "select * from user") // fails since we have disallowed scatter
require.ErrorContains(t, err, "plan includes scatter, which is disallowed")

_ = utils.Exec(t, vtconn, "select /*vt+ ALLOW_SCATTER */ * from user") // passes thanks to the comment directive
_ = utils.Exec(t, vtconn, "vexplain select /*vt+ ALLOW_SCATTER */ * from user") // passes thanks to the comment directive
}
13 changes: 13 additions & 0 deletions go/test/endtoend/vtgate/queries/no_scatter/schema.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
create table user
(
id bigint,
name varchar(255),
primary key (id)
) Engine = InnoDB;

create table music
(
id bigint,
user_id bigint,
primary key (id)
) Engine = InnoDB;
26 changes: 26 additions & 0 deletions go/test/endtoend/vtgate/queries/no_scatter/vschema.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"sharded": true,
"vindexes": {
"user_index": {
"type": "hash"
}
},
"tables": {
"user": {
"column_vindexes": [
{
"column": "id",
"name": "user_index"
}
]
},
"music": {
"column_vindexes": [
{
"column": "user_id",
"name": "user_index"
}
]
}
}
}
17 changes: 1 addition & 16 deletions go/vt/sqlparser/analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -142,22 +142,7 @@ func CanNormalize(stmt Statement) bool {

// CachePlan takes Statement and returns true if the query plan should be cached
func CachePlan(stmt Statement) bool {
var comments *ParsedComments
switch stmt := stmt.(type) {
case *Select:
comments = stmt.Comments
case *Insert:
comments = stmt.Comments
case *Update:
comments = stmt.Comments
case *Delete:
comments = stmt.Comments
case *Union, *Stream:
return true
default:
return false
}
return !comments.Directives().IsSet(DirectiveSkipQueryPlanCache)
return !checkDirective(stmt, DirectiveSkipQueryPlanCache)
}

// MustRewriteAST takes Statement and returns true if RewriteAST must run on it for correct execution irrespective of user flags.
Expand Down
8 changes: 8 additions & 0 deletions go/vt/sqlparser/ast.go
Original file line number Diff line number Diff line change
Expand Up @@ -1387,6 +1387,14 @@ func (node *ExplainStmt) GetParsedComments() *ParsedComments {

// GetParsedComments implements Commented interface.
func (node *VExplainStmt) GetParsedComments() *ParsedComments {
if node.Comments == nil {
cmt, ok := node.Statement.(Commented)
if !ok {
return nil
}
return cmt.GetParsedComments()
}

return node.Comments
}

Expand Down
68 changes: 13 additions & 55 deletions go/vt/sqlparser/comments.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,86 +322,44 @@ func (d *CommentDirectives) GetString(key string, defaultVal string) (string, bo

// MultiShardAutocommitDirective returns true if multishard autocommit directive is set to true in query.
func MultiShardAutocommitDirective(stmt Statement) bool {
var comments *ParsedComments
switch stmt := stmt.(type) {
case *Insert:
comments = stmt.Comments
case *Update:
comments = stmt.Comments
case *Delete:
comments = stmt.Comments
}
return comments != nil && comments.Directives().IsSet(DirectiveMultiShardAutocommit)
return checkDirective(stmt, DirectiveMultiShardAutocommit)
}

// SkipQueryPlanCacheDirective returns true if skip query plan cache directive is set to true in query.
func SkipQueryPlanCacheDirective(stmt Statement) bool {
var comments *ParsedComments
switch stmt := stmt.(type) {
case *Select:
comments = stmt.Comments
case *Insert:
comments = stmt.Comments
case *Update:
comments = stmt.Comments
case *Delete:
comments = stmt.Comments
}
return comments != nil && comments.Directives().IsSet(DirectiveSkipQueryPlanCache)
return checkDirective(stmt, DirectiveSkipQueryPlanCache)
systay marked this conversation as resolved.
Show resolved Hide resolved
}

// IgnoreMaxPayloadSizeDirective returns true if the max payload size override
// directive is set to true.
func IgnoreMaxPayloadSizeDirective(stmt Statement) bool {
var comments *ParsedComments
switch stmt := stmt.(type) {
// For transactional statements, they should always be passed down and
// should not come into max payload size requirement.
case *Begin, *Commit, *Rollback, *Savepoint, *SRollback, *Release:
return true
case *Select:
comments = stmt.Comments
case *Insert:
comments = stmt.Comments
case *Update:
comments = stmt.Comments
case *Delete:
comments = stmt.Comments
default:
return checkDirective(stmt, DirectiveIgnoreMaxPayloadSize)
}
return comments != nil && comments.Directives().IsSet(DirectiveIgnoreMaxPayloadSize)
}

// IgnoreMaxMaxMemoryRowsDirective returns true if the max memory rows override
// directive is set to true.
func IgnoreMaxMaxMemoryRowsDirective(stmt Statement) bool {
var comments *ParsedComments
switch stmt := stmt.(type) {
case *Select:
comments = stmt.Comments
case *Insert:
comments = stmt.Comments
case *Update:
comments = stmt.Comments
case *Delete:
comments = stmt.Comments
}
return comments != nil && comments.Directives().IsSet(DirectiveIgnoreMaxMemoryRows)
return checkDirective(stmt, DirectiveIgnoreMaxMemoryRows)
}

// AllowScatterDirective returns true if the allow scatter override is set to true
func AllowScatterDirective(stmt Statement) bool {
var comments *ParsedComments
switch stmt := stmt.(type) {
case *Select:
comments = stmt.Comments
case *Insert:
comments = stmt.Comments
case *Update:
comments = stmt.Comments
case *Delete:
comments = stmt.Comments
return checkDirective(stmt, DirectiveAllowScatter)
}

func checkDirective(stmt Statement, key string) bool {
cmt, ok := stmt.(Commented)
if ok {
return cmt.GetParsedComments().Directives().IsSet(key)
}
return comments != nil && comments.Directives().IsSet(DirectiveAllowScatter)
return false
}

// GetPriorityFromStatement gets the priority from the provided Statement, using DirectivePriority
Expand Down
4 changes: 2 additions & 2 deletions go/vt/vtgate/executor_ddl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,6 @@ import (
)

func TestDDLFlags(t *testing.T) {
executor, _, _, _, ctx := createExecutorEnv(t)
session := NewSafeSession(&vtgatepb.Session{TargetString: KsTestUnsharded})
defer func() {
enableOnlineDDL = true
enableDirectDDL = true
Expand Down Expand Up @@ -57,6 +55,8 @@ func TestDDLFlags(t *testing.T) {
}
for _, testcase := range testcases {
t.Run(fmt.Sprintf("%s-%v-%v", testcase.sql, testcase.enableDirectDDL, testcase.enableOnlineDDL), func(t *testing.T) {
executor, _, _, _, ctx := createExecutorEnv(t)
session := NewSafeSession(&vtgatepb.Session{TargetString: KsTestUnsharded})
enableDirectDDL = testcase.enableDirectDDL
enableOnlineDDL = testcase.enableOnlineDDL
Comment on lines +58 to 61
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

this change is not required anymore, correct?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not really, but I still like it. cleaner to not re-use between tests

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

executor is expected to be reused. This also helped in realising the caching issue with other statements.

_, err := executor.Execute(ctx, nil, "TestDDLFlags", session, testcase.sql, nil)
Expand Down
3 changes: 1 addition & 2 deletions go/vt/vtgate/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -1372,8 +1372,6 @@ func TestExecutorDDL(t *testing.T) {
}

func TestExecutorDDLFk(t *testing.T) {
executor, _, _, sbc, ctx := createExecutorEnv(t)

mName := "TestExecutorDDLFk"
stmts := []string{
"create table t1(id bigint primary key, foreign key (id) references t2(id))",
Expand All @@ -1383,6 +1381,7 @@ func TestExecutorDDLFk(t *testing.T) {
for _, stmt := range stmts {
for _, fkMode := range []string{"allow", "disallow"} {
t.Run(stmt+fkMode, func(t *testing.T) {
executor, _, _, sbc, ctx := createExecutorEnv(t)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

same comment as before

sbc.ExecCount.Store(0)
foreignKeyMode = fkMode
_, err := executor.Execute(ctx, nil, mName, NewSafeSession(&vtgatepb.Session{TargetString: KsTestUnsharded}), stmt, nil)
Expand Down
5 changes: 2 additions & 3 deletions go/vt/vtgate/planbuilder/vexplain.go
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,9 @@ func buildVExplainLoggingPlan(ctx context.Context, explain *sqlparser.VExplainSt
switch input.primitive.(type) {
case *engine.Insert, *engine.Delete, *engine.Update:
directives := explain.GetParsedComments().Directives()
if directives.IsSet(sqlparser.DirectiveVExplainRunDMLQueries) {
break
if !directives.IsSet(sqlparser.DirectiveVExplainRunDMLQueries) {
return nil, vterrors.VT09008()
}
return nil, vterrors.VT09008()
}

return &planResult{primitive: &engine.VExplain{Input: input.primitive, Type: explain.Type}, tables: input.tables}, nil
Expand Down
Loading