Skip to content

Commit

Permalink
fix: route engine to handle column truncation for execute after lookup (
Browse files Browse the repository at this point in the history
#16981)

Signed-off-by: Harshit Gangal <[email protected]>
  • Loading branch information
harshit-gangal authored Oct 17, 2024
1 parent da49d08 commit 0fa7e58
Show file tree
Hide file tree
Showing 2 changed files with 147 additions and 23 deletions.
35 changes: 12 additions & 23 deletions go/vt/vtgate/engine/route.go
Original file line number Diff line number Diff line change
Expand Up @@ -130,11 +130,12 @@ func (route *Route) GetTableName() string {

// TryExecute performs a non-streaming exec.
func (route *Route) TryExecute(ctx context.Context, vcursor VCursor, bindVars map[string]*querypb.BindVariable, wantfields bool) (*sqltypes.Result, error) {
qr, err := route.executeInternal(ctx, vcursor, bindVars, wantfields)
rss, bvs, err := route.findRoute(ctx, vcursor, bindVars)
if err != nil {
return nil, err
}
return qr.Truncate(route.TruncateColumnCount), nil

return route.executeShards(ctx, vcursor, bindVars, wantfields, rss, bvs)
}

type cxtKey int
Expand All @@ -143,20 +144,6 @@ const (
IgnoreReserveTxn cxtKey = iota
)

func (route *Route) executeInternal(
ctx context.Context,
vcursor VCursor,
bindVars map[string]*querypb.BindVariable,
wantfields bool,
) (*sqltypes.Result, error) {
rss, bvs, err := route.findRoute(ctx, vcursor, bindVars)
if err != nil {
return nil, err
}

return route.executeShards(ctx, vcursor, bindVars, wantfields, rss, bvs)
}

func (route *Route) executeShards(
ctx context.Context,
vcursor VCursor,
Expand Down Expand Up @@ -212,11 +199,15 @@ func (route *Route) executeShards(
}
}

if len(route.OrderBy) == 0 {
return result, nil
if len(route.OrderBy) != 0 {
var err error
result, err = route.sort(result)
if err != nil {
return nil, err
}
}

return route.sort(result)
return result.Truncate(route.TruncateColumnCount), nil
}

func filterOutNilErrors(errs []error) []error {
Expand Down Expand Up @@ -373,10 +364,8 @@ func (route *Route) sort(in *sqltypes.Result) (*sqltypes.Result, error) {
// the contents of any row.
out := in.ShallowCopy()

if err := route.OrderBy.SortResult(out); err != nil {
return nil, err
}
return out.Truncate(route.TruncateColumnCount), nil
err := route.OrderBy.SortResult(out)
return out, err
}

func (route *Route) description() PrimitiveDescription {
Expand Down
135 changes: 135 additions & 0 deletions go/vt/vtgate/engine/vindex_lookup_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,135 @@
/*
Copyright 2024 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 engine

import (
"context"
"testing"

"github.com/stretchr/testify/require"

"vitess.io/vitess/go/sqltypes"
querypb "vitess.io/vitess/go/vt/proto/query"
"vitess.io/vitess/go/vt/vtgate/evalengine"
"vitess.io/vitess/go/vt/vtgate/vindexes"
)

var (
vindex, _ = vindexes.CreateVindex("lookup_unique", "", map[string]string{
"table": "lkp",
"from": "from",
"to": "toc",
"write_only": "true",
})
ks = &vindexes.Keyspace{Name: "ks", Sharded: true}
)

func TestVindexLookup(t *testing.T) {
planableVindex, ok := vindex.(vindexes.LookupPlanable)
require.True(t, ok, "not a lookup vindex")
_, args := planableVindex.Query()

fp := &fakePrimitive{
results: []*sqltypes.Result{
sqltypes.MakeTestResult(
sqltypes.MakeTestFields("id|keyspace_id", "int64|varbinary"),
"1|\x10"),
},
}
route := NewRoute(ByDestination, ks, "dummy_select", "dummy_select_field")
vdxLookup := &VindexLookup{
Opcode: EqualUnique,
Keyspace: ks,
Vindex: planableVindex,
Arguments: args,
Values: []evalengine.Expr{evalengine.NewLiteralInt(1)},
Lookup: fp,
SendTo: route,
}

vc := &loggingVCursor{results: []*sqltypes.Result{defaultSelectResult}}

result, err := vdxLookup.TryExecute(context.Background(), vc, map[string]*querypb.BindVariable{}, false)
require.NoError(t, err)
fp.ExpectLog(t, []string{`Execute from: type:TUPLE values:{type:INT64 value:"1"} false`})
vc.ExpectLog(t, []string{
`ResolveDestinations ks [type:INT64 value:"1"] Destinations:DestinationKeyspaceID(10)`,
`ExecuteMultiShard ks.-20: dummy_select {} false false`,
})
expectResult(t, result, defaultSelectResult)

fp.rewind()
vc.Rewind()
result, err = wrapStreamExecute(vdxLookup, vc, map[string]*querypb.BindVariable{}, false)
require.NoError(t, err)
vc.ExpectLog(t, []string{
`ResolveDestinations ks [type:INT64 value:"1"] Destinations:DestinationKeyspaceID(10)`,
`StreamExecuteMulti dummy_select ks.-20: {} `,
})
expectResult(t, result, defaultSelectResult)
}

func TestVindexLookupTruncate(t *testing.T) {
planableVindex, ok := vindex.(vindexes.LookupPlanable)
require.True(t, ok, "not a lookup vindex")
_, args := planableVindex.Query()

fp := &fakePrimitive{
results: []*sqltypes.Result{
sqltypes.MakeTestResult(
sqltypes.MakeTestFields("id|keyspace_id", "int64|varbinary"),
"1|\x10"),
},
}
route := NewRoute(ByDestination, ks, "dummy_select", "dummy_select_field")
route.TruncateColumnCount = 1
vdxLookup := &VindexLookup{
Opcode: EqualUnique,
Keyspace: ks,
Vindex: planableVindex,
Arguments: args,
Values: []evalengine.Expr{evalengine.NewLiteralInt(1)},
Lookup: fp,
SendTo: route,
}

vc := &loggingVCursor{results: []*sqltypes.Result{
sqltypes.MakeTestResult(sqltypes.MakeTestFields("name|morecol", "varchar|int64"),
"foo|1", "bar|2", "baz|3"),
}}

wantRes := sqltypes.MakeTestResult(sqltypes.MakeTestFields("name", "varchar"),
"foo", "bar", "baz")
result, err := vdxLookup.TryExecute(context.Background(), vc, map[string]*querypb.BindVariable{}, false)
require.NoError(t, err)
fp.ExpectLog(t, []string{`Execute from: type:TUPLE values:{type:INT64 value:"1"} false`})
vc.ExpectLog(t, []string{
`ResolveDestinations ks [type:INT64 value:"1"] Destinations:DestinationKeyspaceID(10)`,
`ExecuteMultiShard ks.-20: dummy_select {} false false`,
})
expectResult(t, result, wantRes)

fp.rewind()
vc.Rewind()
result, err = wrapStreamExecute(vdxLookup, vc, map[string]*querypb.BindVariable{}, false)
require.NoError(t, err)
vc.ExpectLog(t, []string{
`ResolveDestinations ks [type:INT64 value:"1"] Destinations:DestinationKeyspaceID(10)`,
`StreamExecuteMulti dummy_select ks.-20: {} `,
})
expectResult(t, result, wantRes)
}

0 comments on commit 0fa7e58

Please sign in to comment.