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
CREATETABLEt0(c0 INT);
INSERT INTO t0(c0) VALUES (1), (1), (1), (1), (1), (1);
CREATEVIEWv0(c0) ASSELECTNULLFROM t0;
SELECT*FROM t0 LEFT JOIN v0 ON TRUE WHEREv0.c0 IS NULL; -- runtime error: slice bounds out of range [:264] with capacity 256
Unexpectedly, the SELECT results in an error ERROR 1105 (HY000): runtime error: slice bounds out of range [:264] with capacity 256.
Environment:
mysql> select tidb_version();
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| tidb_version() |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| Release Version: v4.0.0-beta.2-167-gaa7ef9c46
Git Commit Hash: aa7ef9c46435bb20d42fa0badcf09fc16f9609a9
Git Branch: master
UTC Build Time: 2020-04-02 09:15:47
GoVersion: go1.13.4
Race Enabled: false
TiKV Min Version: v3.0.0-60965b006877ca7234adaced7890d7b029ed1306
Check Table Before Drop: false |
+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
1 row in set (0.01 sec)
The text was updated successfully, but these errors were encountered:
Consider the following statements:
Unexpectedly, the
SELECT
results in an errorERROR 1105 (HY000): runtime error: slice bounds out of range [:264] with capacity 256
.Environment:
The text was updated successfully, but these errors were encountered: