Skip to content

Commit

Permalink
Test commit.
Browse files Browse the repository at this point in the history
Signed-off-by: Jigao Luo <luojigao@outlook.com>
  • Loading branch information
JigaoLuo committed Oct 6, 2022
1 parent 69e1ee9 commit 3add343
Showing 1 changed file with 0 additions and 7 deletions.
7 changes: 0 additions & 7 deletions tests/fullstack-test/expr/nulleq.test
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,4 @@ mysql> insert into test.t values(1, null),(null, 1);
mysql> alter table test.t set tiflash replica 1;
func> wait_table test t
mysql> set @@tidb_isolation_read_engines='tiflash';
mysql> set @@tidb_isolation_read_engines='tiflash'; select a, b, nulleq(a, Null), nulleq(b, null), nulleq(a, 1), nulleq(b, 1) from test.t;
+------+------+-----------------+-----------------+--------------+--------------+
| a | b | nulleq(a, Null) | nulleq(b, null) | nulleq(a, 1) | nulleq(b, 1) |
+------+------+-----------------+-----------------+--------------+--------------+
| 1 | NULL | 0 | 1 | 1 | 0 |
| NULL | 1 | 1 | 0 | 0 | 1 |
+------+------+-----------------+-----------------+--------------+--------------+
mysql> drop table if exists test.t;

0 comments on commit 3add343

Please sign in to comment.