Skip to content

Commit a3cb6bb

Browse files
committed
Update error msg
Signed-off-by: JaySon-Huang <[email protected]>
1 parent 5b84596 commit a3cb6bb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tests/fullstack-test2/ddl/expression_index.test

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,10 @@ mysql> set session tidb_isolation_read_engines='tiflash'; select * from test.t o
3333
+----+
3434

3535
mysql> CREATE INDEX idx_n ON test.t ((null));
36-
ERROR 3761 (HY000): The used storage engine cannot index the expression 'null'
36+
ERROR 3761 (HY000) at line 1: The used storage engine cannot index the expression 'null'
3737

3838
mysql> drop table if exists test.t;
3939

4040
mysql> CREATE TABLE test.t (id int, KEY idx_name ((null)));
41-
ERROR 3761 (HY000): The used storage engine cannot index the expression 'null'
41+
ERROR 3761 (HY000) at line 1: The used storage engine cannot index the expression 'null'
4242
mysql> drop table if exists test.t;

0 commit comments

Comments
 (0)