Skip to content

Commit

Permalink
bugfix: use the proper interface for comment directives (#14267)
Browse files Browse the repository at this point in the history
  • Loading branch information
systay authored Oct 14, 2023
1 parent 74b1380 commit 314ebcf
Show file tree
Hide file tree
Showing 13 changed files with 227 additions and 100 deletions.
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) {
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"
}
]
}
}
}
16 changes: 3 additions & 13 deletions go/vt/sqlparser/analyzer.go
Original file line number Diff line number Diff line change
Expand Up @@ -145,22 +145,12 @@ 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
switch stmt.(type) {
case *Select, *Insert, *Update, *Delete, *Union, *Stream:
return !checkDirective(stmt, DirectiveSkipQueryPlanCache)
default:
return false
}
return !comments.Directives().IsSet(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 @@ -1388,6 +1388,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
71 changes: 12 additions & 59 deletions go/vt/sqlparser/comments.go
Original file line number Diff line number Diff line change
Expand Up @@ -322,86 +322,39 @@ 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)
}

// 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, DirectiveMultiShardAutocommit)
}

// 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
20 changes: 5 additions & 15 deletions go/vt/sqlparser/comments_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -394,29 +394,19 @@ func TestExtractCommentDirectives(t *testing.T) {

func TestSkipQueryPlanCacheDirective(t *testing.T) {
stmt, _ := Parse("insert /*vt+ SKIP_QUERY_PLAN_CACHE=1 */ into user(id) values (1), (2)")
if !SkipQueryPlanCacheDirective(stmt) {
t.Errorf("d.SkipQueryPlanCacheDirective(stmt) should be true")
}
assert.False(t, CachePlan(stmt))

stmt, _ = Parse("insert into user(id) values (1), (2)")
if SkipQueryPlanCacheDirective(stmt) {
t.Errorf("d.SkipQueryPlanCacheDirective(stmt) should be false")
}
assert.True(t, CachePlan(stmt))

stmt, _ = Parse("update /*vt+ SKIP_QUERY_PLAN_CACHE=1 */ users set name=1")
if !SkipQueryPlanCacheDirective(stmt) {
t.Errorf("d.SkipQueryPlanCacheDirective(stmt) should be true")
}
assert.False(t, CachePlan(stmt))

stmt, _ = Parse("select /*vt+ SKIP_QUERY_PLAN_CACHE=1 */ * from users")
if !SkipQueryPlanCacheDirective(stmt) {
t.Errorf("d.SkipQueryPlanCacheDirective(stmt) should be true")
}
assert.False(t, CachePlan(stmt))

stmt, _ = Parse("delete /*vt+ SKIP_QUERY_PLAN_CACHE=1 */ from users")
if !SkipQueryPlanCacheDirective(stmt) {
t.Errorf("d.SkipQueryPlanCacheDirective(stmt) should be true")
}
assert.False(t, CachePlan(stmt))
}

func TestIgnoreMaxPayloadSizeDirective(t *testing.T) {
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
_, 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 @@ -1371,8 +1371,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 @@ -1382,6 +1380,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)
sbc.ExecCount.Store(0)
foreignKeyMode = fkMode
_, err := executor.Execute(ctx, nil, mName, NewSafeSession(&vtgatepb.Session{TargetString: KsTestUnsharded}), stmt, nil)
Expand Down
Loading

0 comments on commit 314ebcf

Please sign in to comment.