This is an automated email from the ASF dual-hosted git repository.
hellostephen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/master by this push:
new 8ecc2491032 [env](case) fix error case without order by (#38483)
8ecc2491032 is described below
commit 8ecc24910326b8caabede09ef0c0ed40cd621613
Author: Mryange <[email protected]>
AuthorDate: Tue Jul 30 10:24:33 2024 +0800
[env](case) fix error case without order by (#38483)
## Proposed changes
Issue Number: close #xxx
<!--Describe your changes.-->
---
.../suites/datatype_p0/time_type/test_time_in_runtimepredicate.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/regression-test/suites/datatype_p0/time_type/test_time_in_runtimepredicate.groovy
b/regression-test/suites/datatype_p0/time_type/test_time_in_runtimepredicate.groovy
index 3c051593c02..0496192963c 100644
---
a/regression-test/suites/datatype_p0/time_type/test_time_in_runtimepredicate.groovy
+++
b/regression-test/suites/datatype_p0/time_type/test_time_in_runtimepredicate.groovy
@@ -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;"
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]