Search Results
https://dev.mysql.com/doc/internals/en/generating-browsable-binary-log-information.html
Source files in the sql directory of a MySQL source tree or source distribution contain comments that can be processed with doxygen to generate HTML files that describe classes, files, and so forth. To generate the HTML files and view information ...These commands create a subdirectory named html containing the HTML output: shell> doxygen -g shell> doxygen To view the top-level index page, load the html/index.html file into your ...
https://dev.mysql.com/doc/internals/en/cmake-interface-to-third-party-tools.html
Third-party tools that must determine the MySQL version from the MySQL source can read the VERSION file in the top-level source directory. For example, if the version is MySQL 5.7.4-m14, the file looks like this: MYSQL_VERSION_MAJOR=5 ...To ...
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/full-text-search.html
We chose 0.0115 as the pivot value, it's PIVOT_VAL in the MySQL source code header file myisam/ftdefs.h. The source code is myisam/myisam_ftdump.c, and the executable comes with the binary distribution. MySQL uses Ranking with Vector Spaces for ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-client.html
There are other utilities too in fact, you'll find the source of most client-side programs here. There are also programs for checking the password, and for testing that basic functions such as threading or access via SSL are possible. You'll notice, ...
https://dev.mysql.com/doc/internals/en/guided-tour-majordir-myisam.html
We will begin by mentioning that myisam is one of what we call the MySQL storage engine directories. But the files in those directories are mostly analogues of what's in the myisam directory, and the myisam directory is sort of a 'template'. On the ...
https://dev.mysql.com/doc/internals/en/guided-tour-skeleton.html
But the server is important, and if you can grasp what we're doing with it, you'll have grasped the essence of what the MySQL source code is all about. The one thing you won't see in the actual source code is the little marker "// !". Once it ...