File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
fe/fe-core/src/test/java/com/starrocks/sql/plan Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -649,6 +649,8 @@ private static Stream<Arguments> successToStrictSql() {
649
649
list .add (Arguments .of ("select distinct * from t0 order by 1" , "order by: <slot 1> 1: v1 ASC" ));
650
650
list .add (Arguments .of ("select * from t0 order by v1" , "order by: <slot 1> 1: v1 ASC" ));
651
651
list .add (Arguments .of ("select t0.* from t0 order by t0.v1" , "order by: <slot 1> 1: v1 ASC" ));
652
+ list .add (Arguments .of ("select distinct t0.* from t0 order by t0.v1" , "order by: <slot 1> 1: v1 ASC" ));
653
+
652
654
653
655
list .add (Arguments .of ("select *, v1 from t0 order by v1" , "order by: <slot 1> 1: v1 ASC" ));
654
656
list .add (Arguments .of ("select *, v1 from t0 order by abs(v1)" , "order by: <slot 4> 4: abs ASC" ));
You can’t perform that action at this time.
0 commit comments