From 04e5fb3809cc9bf9acefe68bdd150333a5a8ea5d Mon Sep 17 00:00:00 2001 From: zhiqiang Date: Mon, 16 Oct 2023 01:32:51 -0500 Subject: [PATCH] [fix](regression test) fix mysql tuple convert test result not ordered #25455 --- .../suites/mysql_tupleconvert_p0/mysql_tupleconvert.groovy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/regression-test/suites/mysql_tupleconvert_p0/mysql_tupleconvert.groovy b/regression-test/suites/mysql_tupleconvert_p0/mysql_tupleconvert.groovy index 70278a9765..51e47cfd24 100644 --- a/regression-test/suites/mysql_tupleconvert_p0/mysql_tupleconvert.groovy +++ b/regression-test/suites/mysql_tupleconvert_p0/mysql_tupleconvert.groovy @@ -34,7 +34,7 @@ suite("mysql_tuple_convert_test") { qt_select """SELECT /*+SET_VAR(faster_float_convert=true)*/ * FROM ${testTable};""" // make sure we can convert number from string to value sql """INSERT INTO ${testTable} SELECT 2, col_1, col_2, col_3, col_4 from ${testTable} where col_0 = 1;""" - qt_select """SELECT * FROM ${testTable};""" + qt_select """SELECT * FROM ${testTable} ORDER BY col_0;""" sql """SET faster_float_convert=false;""" sql "DROP TABLE IF EXISTS ${testTable}" } \ No newline at end of file