Skip to content

Commit

Permalink
[env](case) fix error case without order by (apache#38483)
Browse files Browse the repository at this point in the history
## Proposed changes

Issue Number: close #xxx

<!--Describe your changes.-->
  • Loading branch information
Mryange authored Jul 30, 2024
1 parent 34dd69d commit 8ecc249
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@ suite("test_time_in_runtimepredicate") {


qt_sql1 "select timediff(a, b) as t, count(c) from test_time_in_runtimepredicate group by t order by t;"
qt_sql2 "select timediff(a, b) as t, count(c) from test_time_in_runtimepredicate group by t limit 3"
qt_sql2 "select timediff(a, b) as t, count(c) from test_time_in_runtimepredicate group by t order by t limit 3;"
}

0 comments on commit 8ecc249

Please sign in to comment.