Continuing on from Tutorial 2.
When reviewing the 2.1. C/C++ Coding Guidelines for MySQL, you will see that the MySQL Source uses within the C/C++ code DBUG (Fred Fish’s debug library). This is one of the 3rd party open source products that are documented in the Internals 1.4. The Open-source Directories.
You will also find some usage in the MySQL Manual E.3 The DBUG Package. So enough talk, how do you use this.
DBUG
You get the DBUG output by running a mysqld debug version with the argument –debug. The output …
[Read more]