Search Results
https://dev.mysql.com/doc/internals/en/guided-tour-recap.html
We worked hard to make a description of the MySQL source that is simple, without distorting. Three: The main sequence, as one walks through the server code. If you were able to follow all that we've said, then that's wonderful, congratulations. If ...
https://dev.mysql.com/doc/internals/en/interface-to-third-party-tools.html
Previously, third-party tools that need to determine the MySQL version from the MySQL source read the configure.in file in the top-level source directory. For example, if the version is MySQL 5.7.4-m14, the file looks like this: ...For example, the ...
https://dev.mysql.com/doc/internals/en/risky-handling-around-additional-sessions.html
How to prevent that this test harms the succeeding test? (5) should be replaced by connection con1; disconnect con1; --source include/wait_until_disconnected.inc connection default; Where is the "junk"? There should be a 'reap' for every preceeding ...This is most probably good for the throughput of usual application but has some annoying consequences for the development of ...
https://dev.mysql.com/doc/internals/en/sccs-directory.html
You will see this directory if and only if you used BitKeeper for downloading the source. The files here are for BitKeeper administration and are not of interest to application programmers.
https://dev.mysql.com/doc/internals/en/cmake-howto-quick-release-configuration.html
make Windows (Visual Studio, from the command line) mkdir bld cd bld cmake .. devenv mysql.sln /build relwithdebinfo To create a file containing a log of the compilation, modify the last command as follows: devenv mysql.sln /build relwithdebinfo ...
https://dev.mysql.com/doc/internals/en/compiling-for-different-hardware-achitectures.html
GCC (on Linux) or Sun Studio Use compile option -m32 (force 32-bit build), -m64 (force 64-bit build) Windows, Visual Studio generator Use cmake path_to_source_dir -G "Visual Studio 10 2010 Win64" to compile 64-bit (x64) Mac OS X Use the ...For ...
https://dev.mysql.com/doc/internals/en/error-messages-old-versions.html
Go to the sql directory in a terminal window and type ./add_errmsg N. In practice, no new error messages should be added to error message files for versions of MySQL prior to 5.0.3. Doing so and merging the messages upward would cause error numbers ...
https://dev.mysql.com/doc/internals/en/new-rpms-directory.html
It is a temporary directory used during RPM builds with Linux distributions.
https://dev.mysql.com/doc/internals/en/cmake-howto-quick-debug-configuration.html
-DCMAKE_BUILD_TYPE=Debug make Windows (Visual Studio, from command line) mkdir bld_debug cd bld_debug cmake ..
https://dev.mysql.com/doc/internals/en/debug-only-options.html
Sometimes, it is handy to add an option that is active only in Debug builds. When doing this, keep in mind that tests like IF(WITH_DEBUG) or IF(CMAKE_BUILD_TYPE MATCHES "Debug") do not work as expected: First, although WITH_DEBUG is an alias for ...