Bug #71972 | mysql history length limited to 4K | ||
---|---|---|---|
Submitted: | 7 Mar 2014 13:03 | Modified: | 17 Aug 2014 12:30 |
Reporter: | Daniël van Eeden (OCA) | Email Updates: | |
Status: | Verified | Impact on me: | |
Category: | MySQL Server: Command-line Clients | Severity: | S3 (Non-critical) |
Version: | 5.6.16 | OS: | Any |
Assigned to: | CPU Architecture: | Any | |
Tags: | client, history, limitations |
[7 Mar 2014 13:03]
Daniël van Eeden
[7 Mar 2014 13:11]
Daniël van Eeden
Some python to find the approximate size of the largest entry in the history: >>> a = open('.mysql_history', 'r').read().split('\n') >>> maxlen = 0 >>> for i in a: ... if len(i) > maxlen: ... maxlen=len(i) ... >>> print(maxlen) 20245
[10 Mar 2014 5:08]
MySQL Verification Team
Hello Daniel, Thank you for the bug report. Verified as described. Thanks, Umesh
[17 Aug 2014 12:30]
Daniël van Eeden
added tags