matrixone
matrixone copied to clipboard
[Bug]: show table status : with '*' error.
Is there an existing issue for the same bug?
- [X] I have checked the existing issues.
Environment
- Version or commit-id (e.g. v0.1.0 or 8b23a93):
- Hardware parameters:
- OS type:
- Others:
Actual Behavior
Table Structure : DROP TABLE IF EXISTS t; CREATE TABLE t( tiny TINYINT, small SMALLINT, int_t INT, big BIGINT, str1 VARCHAR(200), str2 CHAR(200), float_32 FLOAT, float_64 DOUBLE, d1 DATE, d2 DATETIME, d3 TIMESTAMP ); INSERT INTO t(str1,str2) VALUES ('jixlzvcxfiowurioewmnklrn', 'abc');
The problematic SQL stmt is : SHOW TABLE STATUS LIKE '*' \G;
It's return value on MO :
ERROR 1105 (HY000): error parsing regexp: missing argument to repetition operator: *
It's return value on MySQL : Empty set (0.00 sec)
Expected Behavior
No response
Steps to Reproduce
No response
Additional information
No response