[fix](regression) Fix unstable regression case introduced by #26384 (#26453)

This commit is contained in:
walter
2023-11-06 18:34:14 +08:00
committed by GitHub
parent e42cb88c2d
commit 2ba2cd22b0
2 changed files with 3 additions and 3 deletions

View File

@ -4,13 +4,13 @@ show_create_table_and_views_table CREATE TABLE `show_create_table_and_views_tabl
-- !select --
1 1 30
1 300 2
1 2 5
1 3 10
2 200 1111
1 300 2
2 1 100
2 2 10
2 3 44
2 200 1111
3 1 10
3 2 1
23 900 1

View File

@ -74,7 +74,7 @@ suite("test_show_create_table_and_views", "show") {
(23, 900, 1)"""
qt_show "SHOW CREATE TABLE ${dbName}.${tableName}"
qt_select "SELECT * FROM ${dbName}.${tableName} ORDER BY user_id"
qt_select "SELECT * FROM ${dbName}.${tableName} ORDER BY user_id, good_id"
// create view and show
sql """