提交 afe6728a authored 作者: noelgrandin's avatar noelgrandin

fix NPE when running TestFuzzOptimisations

上级 c1022e87
......@@ -234,6 +234,9 @@ public class SortOrder implements Comparator<Value[]> {
}
SelectOrderBy order = orderList.get(index);
Expression expr = order.expression;
if (expr == null) {
return null;
}
expr = expr.getNonAliasExpression();
if (expr.isConstant()) {
return null;
......
Markdown 格式
0%
您添加了 0 到此讨论。请谨慎行事。
请先完成此评论的编辑!
注册 或者 后发表评论