You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting your issue. Thanks!
What did you do?
DROP TABLE IF EXISTS t1;
CREATE TABLE t1 (
id INT NOT NULL PRIMARY KEY auto_increment,
b varchar(255) NOT NULL,
c ENUM('a', 'b', 'c', 'd', 'e'),
INDEX (c)
);
INSERT INTO t1 VALUES
(NULL, REPEAT('b', 255), 'a'),
(NULL, REPEAT('b', 255), 'b'),
(NULL, REPEAT('b', 255), 'c'),
(NULL, REPEAT('b', 255), 'd'),
(NULL, REPEAT('b', 255), 'e');
SELECT c FROM t1 GROUP BY c;
Please answer these questions before submitting your issue. Thanks!
Not crash.
tidb-server -V
or runselect tidb_version();
on TiDB)?The text was updated successfully, but these errors were encountered: