Skip to content

Commit

Permalink
fix merge conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
Defined2014 committed Nov 11, 2021
1 parent b4cb9e6 commit 9642fb1
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions cmd/explaintest/r/new_character_set_builtin.result
Original file line number Diff line number Diff line change
Expand Up @@ -232,22 +232,22 @@ insert into t values ('65'), ('123456'), ('123456789');
select char(a using gbk), char(a using utf8), char(a) from t;
char(a using gbk) char(a using utf8) char(a)
A A A
�@ �@ �@
[� [� [�
 �@ �@
NULL [� [�
select char(a using gbk) from t;
char(a using gbk)
A
�@
[�

NULL
set @@tidb_enable_vectorized_expression = true;
select char(a using gbk), char(a using utf8), char(a) from t;
char(a using gbk) char(a using utf8) char(a)
A A A
�@ �@ �@
[� [� [�
 �@ �@
NULL [� [�
select char(a using gbk) from t;
char(a using gbk)
A
�@
[�

NULL
set @@tidb_enable_vectorized_expression = false;

0 comments on commit 9642fb1

Please sign in to comment.