Skip to content

Commit af0bfba

Browse files
authored
Merge pull request ClickHouse#80629 from ClickHouse/flaky-00938_dataset_test
Fix flaky 00938_dataset_test
2 parents aa604bc + d27e4ba commit af0bfba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/queries/0_stateless/00938_dataset_test.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ DROP TABLE IF EXISTS model;
1313
create table model engine = Memory as select stochasticLinearRegressionState(0.03, 0.00001, 2, 'Momentum')(target, param1, param2) as state from defaults;
1414

1515
select ans > -67.0 and ans < -66.9 from
16-
(with (select state + state + state from model) as model select evalMLMethod(model, predict1, predict2) as ans from defaults limit 1);
16+
(with (select state + state + state from model) as model select evalMLMethod(model, predict1, predict2) as ans from defaults order by all limit 1);
1717

1818
DROP TABLE defaults;
1919
DROP TABLE model;

0 commit comments

Comments
 (0)