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

[release-20.0] Fix panic in user defined aggregation functions planning (#16398) #16404

Merged
merged 1 commit into from
Jul 16, 2024
Merged
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
3 changes: 3 additions & 0 deletions go/vt/vtgate/planbuilder/operators/aggregator.go
Original file line number Diff line number Diff line change
Expand Up @@ -411,6 +411,9 @@ func (aggr Aggr) getPushColumnExprs() sqlparser.Exprs {
return sqlparser.Exprs{aggr.Original.Expr}
case opcode.AggregateCountStar:
return sqlparser.Exprs{sqlparser.NewIntLiteral("1")}
case opcode.AggregateUDF:
// AggregateUDFs can't be evaluated on the vtgate. So either we are able to push everything down, or we will have to fail the query.
return nil
default:
return aggr.Func.GetArgs()
}
Expand Down
2 changes: 1 addition & 1 deletion go/vt/vtgate/planbuilder/operators/queryprojection.go
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ type (
// Aggr encodes all information needed for aggregation functions
Aggr struct {
Original *sqlparser.AliasedExpr
Func sqlparser.AggrFunc // if we are missing a Func, it means this is a AggregateAnyValue
Func sqlparser.AggrFunc // if we are missing a Func, it means this is a AggregateAnyValue or AggregateUDF
OpCode opcode.AggregateOpcode

// OriginalOpCode will contain opcode.AggregateUnassigned unless we are changing opcode while pushing them down
Expand Down
48 changes: 48 additions & 0 deletions go/vt/vtgate/planbuilder/testdata/aggr_cases.json
Original file line number Diff line number Diff line change
Expand Up @@ -2158,6 +2158,54 @@
]
}
},
{
"comment": "User defined aggregation expression being used in order by of a query that is single sharded",
"query": "select col1, udf_aggr( col2 ) r from user where id = 1 group by col1 having r >= 0.3",
"plan": {
"QueryType": "SELECT",
"Original": "select col1, udf_aggr( col2 ) r from user where id = 1 group by col1 having r >= 0.3",
"Instructions": {
"OperatorType": "Route",
"Variant": "EqualUnique",
"Keyspace": {
"Name": "user",
"Sharded": true
},
"FieldQuery": "select col1, udf_aggr(col2) as r from `user` where 1 != 1 group by col1",
"Query": "select col1, udf_aggr(col2) as r from `user` where id = 1 group by col1 having udf_aggr(`user`.col2) >= 0.3",
"Table": "`user`",
"Values": [
"1"
],
"Vindex": "user_index"
},
"TablesUsed": [
"user.user"
]
}
},
{
"comment": "user defined aggregation such that it can pushed to mysql in a scatter route",
"query": "select id, udf_aggr( col2 ) r from user group by id",
"plan": {
"QueryType": "SELECT",
"Original": "select id, udf_aggr( col2 ) r from user group by id",
"Instructions": {
"OperatorType": "Route",
"Variant": "Scatter",
"Keyspace": {
"Name": "user",
"Sharded": true
},
"FieldQuery": "select id, udf_aggr(col2) as r from `user` where 1 != 1 group by id",
"Query": "select id, udf_aggr(col2) as r from `user` group by id",
"Table": "`user`"
},
"TablesUsed": [
"user.user"
]
}
},
{
"comment": "distinct on text column with collation",
"query": "select col, count(distinct textcol1) from user group by col",
Expand Down
5 changes: 5 additions & 0 deletions go/vt/vtgate/planbuilder/testdata/unsupported_cases.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
"query": "select id from user group by id, (select id from user_extra)",
"plan": "VT12001: unsupported: subqueries in GROUP BY"
},
{
"comment": "user defined functions used in having clause that needs evaluation on vtgate",
"query": "select col1, udf_aggr( col2 ) r from user group by col1 having r >= 0.3",
"plan": "VT12001: unsupported: Aggregate UDF 'udf_aggr(col2)' must be pushed down to MySQL"
},
{
"comment": "update changes primary vindex column",
"query": "update user set id = 1 where id = 1",
Expand Down
Loading