-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[release-20.0-rc] feat: add a LIMIT 1 on EXISTS subqueries to limit n…
…etwork overhead (#16153) (#16192) Signed-off-by: Andres Taylor <andres@planetscale.com> Co-authored-by: vitess-bot[bot] <108069721+vitess-bot[bot]@users.noreply.github.com>
- Loading branch information
1 parent
1f308de
commit 6986d74
Showing
9 changed files
with
485 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
185 changes: 185 additions & 0 deletions
185
go/vt/vtgate/planbuilder/operators/query_planning_test.go
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,185 @@ | ||
/* | ||
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 operators | ||
|
||
import ( | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
|
||
"vitess.io/vitess/go/vt/sqlparser" | ||
) | ||
|
||
func TestMergeOffsetExpressions(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
offset1 sqlparser.Expr | ||
offset2 sqlparser.Expr | ||
expectedExpr sqlparser.Expr | ||
expectedFailed bool | ||
}{ | ||
{ | ||
name: "both offsets are integers", | ||
offset1: sqlparser.NewIntLiteral("5"), | ||
offset2: sqlparser.NewIntLiteral("3"), | ||
expectedExpr: sqlparser.NewIntLiteral("8"), | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "first offset is nil", | ||
offset1: nil, | ||
offset2: sqlparser.NewIntLiteral("3"), | ||
expectedExpr: sqlparser.NewIntLiteral("3"), | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "second offset is nil", | ||
offset1: sqlparser.NewIntLiteral("5"), | ||
offset2: nil, | ||
expectedExpr: sqlparser.NewIntLiteral("5"), | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "both offsets are nil", | ||
offset1: nil, | ||
offset2: nil, | ||
expectedExpr: nil, | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "first offset is argument", | ||
offset1: sqlparser.NewArgument("offset1"), | ||
offset2: sqlparser.NewIntLiteral("3"), | ||
expectedExpr: nil, | ||
expectedFailed: true, | ||
}, | ||
{ | ||
name: "second offset is argument", | ||
offset1: sqlparser.NewIntLiteral("5"), | ||
offset2: sqlparser.NewArgument("offset2"), | ||
expectedExpr: nil, | ||
expectedFailed: true, | ||
}, | ||
{ | ||
name: "both offsets are arguments", | ||
offset1: sqlparser.NewArgument("offset1"), | ||
offset2: sqlparser.NewArgument("offset2"), | ||
expectedExpr: nil, | ||
expectedFailed: true, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
expr, failed := mergeOffsetExpressions(tt.offset1, tt.offset2) | ||
assert.Equal(t, tt.expectedExpr, expr) | ||
assert.Equal(t, tt.expectedFailed, failed, "failed") | ||
}) | ||
} | ||
} | ||
|
||
func TestMergeLimitExpressions(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
limit1 sqlparser.Expr | ||
limit2 sqlparser.Expr | ||
offset2 sqlparser.Expr | ||
expectedExpr sqlparser.Expr | ||
expectedFailed bool | ||
}{ | ||
{ | ||
name: "valid limits and offset", | ||
limit1: sqlparser.NewIntLiteral("10"), | ||
limit2: sqlparser.NewIntLiteral("7"), | ||
offset2: sqlparser.NewIntLiteral("3"), | ||
expectedExpr: sqlparser.NewIntLiteral("7"), | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "remaining rows after offset2 is zero", | ||
limit1: sqlparser.NewIntLiteral("3"), | ||
limit2: sqlparser.NewIntLiteral("7"), | ||
offset2: sqlparser.NewIntLiteral("5"), | ||
expectedExpr: sqlparser.NewIntLiteral("0"), | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "first limit is nil", | ||
limit1: nil, | ||
limit2: sqlparser.NewIntLiteral("7"), | ||
offset2: sqlparser.NewIntLiteral("3"), | ||
expectedExpr: sqlparser.NewIntLiteral("7"), | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "second limit is nil", | ||
limit1: sqlparser.NewIntLiteral("10"), | ||
limit2: nil, | ||
offset2: sqlparser.NewIntLiteral("3"), | ||
expectedExpr: sqlparser.NewIntLiteral("7"), | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "offset2 is nil", | ||
limit1: sqlparser.NewIntLiteral("10"), | ||
limit2: sqlparser.NewIntLiteral("7"), | ||
offset2: nil, | ||
expectedExpr: sqlparser.NewIntLiteral("7"), | ||
expectedFailed: false, | ||
}, | ||
{ | ||
name: "first limit is argument", | ||
limit1: sqlparser.NewArgument("limit1"), | ||
limit2: sqlparser.NewIntLiteral("7"), | ||
offset2: sqlparser.NewIntLiteral("3"), | ||
expectedExpr: nil, | ||
expectedFailed: true, | ||
}, | ||
{ | ||
name: "second limit is argument", | ||
limit1: sqlparser.NewIntLiteral("10"), | ||
limit2: sqlparser.NewArgument("limit2"), | ||
offset2: sqlparser.NewIntLiteral("3"), | ||
expectedExpr: nil, | ||
expectedFailed: true, | ||
}, | ||
{ | ||
name: "offset2 is argument", | ||
limit1: sqlparser.NewIntLiteral("10"), | ||
limit2: sqlparser.NewIntLiteral("7"), | ||
offset2: sqlparser.NewArgument("offset2"), | ||
expectedExpr: nil, | ||
expectedFailed: true, | ||
}, | ||
{ | ||
name: "all are arguments", | ||
limit1: sqlparser.NewArgument("limit1"), | ||
limit2: sqlparser.NewArgument("limit2"), | ||
offset2: sqlparser.NewArgument("offset2"), | ||
expectedExpr: nil, | ||
expectedFailed: true, | ||
}, | ||
} | ||
|
||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
expr, failed := mergeLimitExpressions(tt.limit1, tt.limit2, tt.offset2) | ||
assert.Equal(t, tt.expectedExpr, expr) | ||
assert.Equal(t, tt.expectedFailed, failed, "failed") | ||
}) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.