Bug #92687 Improve const-ness of print() functions
Submitted: 5 Oct 2018 13:14 Modified: 15 Oct 2018 13:09
Reporter: Jon Olav Hauglid Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Compiling Severity:S3 (Non-critical)
Version:8.0.15 OS:Any
Assigned to: CPU Architecture:Any

[5 Oct 2018 13:14] Jon Olav Hauglid
Description:
After Bug#28727509: REMOVE THD::CONVERT_BUFFER it becomes possible for lots of functions
to use "const THD*" rather than "THD*". This means that the functions will not modify
THD state. This will be helpful later as it means these functions can be safely called
by multiple threads sharing a single THD instance (as long as no non-const functions
are called at the same time).

How to repeat:
n/a
[15 Oct 2018 13:09] Paul DuBois
Posted by developer:
 
Fixed in 8.0.15.

Code cleanup. No changelog entry needed.