-
Notifications
You must be signed in to change notification settings - Fork 411
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
improve auto generated fullstack tests (#3592)
- Loading branch information
Showing
4 changed files
with
565 additions
and
463 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -262,4 +262,6 @@ libs/libtiflash-proxy | |
|
||
tmp/ | ||
|
||
tests/fullstack-test2/auto_gen | ||
|
||
CoverageReport |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
mysql> drop table if exists test.t | ||
mysql> create table test.t(a text, b blob) | ||
mysql> alter table test.t set tiflash replica 1 | ||
|
||
func> wait_table test t | ||
|
||
mysql> insert into test.t values('test1', '01223'); | ||
|
||
mysql> set session tidb_isolation_read_engines='tiflash'; select * from test.t; | ||
+-------+--------------+ | ||
| a | b | | ||
+-------+--------------+ | ||
| test1 | 01223 | | ||
+-------+--------------+ |
Oops, something went wrong.