component/expressionhelp wantedtype/compatibility
Description
Please answer these questions before submitting your issue. Thanks!
- What did you do?
create table t1 (id integer, a varchar(100) character set utf8 collate utf8_unicode_ci);
insert into t1 values (1, 'Test');
select * from t1 where soundex(a) = soundex('Test');
- What did you expect to see?
+------+------+
| id | a |
+------+------+
| 1 | Test |
+------+------+
1 row in set (0.01 sec)
- What did you see instead?
ERROR 1105 (HY000): line 0 column 31 near "a) = soundex('Test')" (total length 51)
- What version of TiDB are you using (
tidb-server -V)?