Skip to content

Commit

Permalink
Fix test case
Browse files Browse the repository at this point in the history
  • Loading branch information
JaySon-Huang committed Jul 11, 2024
1 parent a294fb3 commit b63bfb2
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tests/fullstack-test2/ddl/rename_table_across_databases.test
Original file line number Diff line number Diff line change
Expand Up @@ -112,4 +112,8 @@ mysql> insert into test.part4(id, store_id) values(1,1),(2,2),(3,3),(11,11),(16,
mysql> alter table test.part4 set tiflash replica 1;
func> wait_table test part4

mysql> rename test.part4 to test_new.part4;
mysql> rename table test.part4 to test_new.part4;
mysql> alter table test_new.part4 add column c1 int;
mysql> set session tidb_isolation_read_engines='tiflash'; select * from test_new.part4

mysql> drop table if exists test_new.part4

0 comments on commit b63bfb2

Please sign in to comment.