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
Large BIGINT numbers are not correctly displayed in vscode plugin.
CREATE TABLE test (id BIGINT);
INSERT INTO test VALUES(10000000000000001);
INSERT INTO test VALUES(10000000000000002);
INSERT INTO test VALUES(10000000000000003);
INSERT INTO test VALUES(10000000000000004);
INSERT INTO test VALUES(10000000000000005);
SELECT * FROM test;
+-------------------+
| id |
+-------------------+
| 10000000000000000 |
| 10000000000000002 |
| 10000000000000004 |
| 10000000000000004 |
| 10000000000000004 |
+-------------------+
There is nothing wrong with the data stored in the table, but the display seems to be wrong.
These numbers are correctly displayed in regular terminals and MySQL Workbench.
(local)
MySQL Shell for VS Code v1.14.2
Windows 10
(remote)
Ubuntu20.04
mysql Ver 8.0.35
Thank you,
The text was updated successfully, but these errors were encountered:
Large BIGINT numbers are not correctly displayed in vscode plugin.
There is nothing wrong with the data stored in the table, but the display seems to be wrong.
These numbers are correctly displayed in regular terminals and MySQL Workbench.
(local)
MySQL Shell for VS Code v1.14.2
Windows 10
(remote)
Ubuntu20.04
mysql Ver 8.0.35
Thank you,
The text was updated successfully, but these errors were encountered: