Search Results
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/controlling-compilers-and-flags.html
-DCMAKE_C_FLAGS=your_c_flags \ -DCMAKE_CXX_FLAGS=your_c++_flags When providing your own compiler flags, you might want to specify CMAKE_BUILD_TYPE as well. For example, to create a 32-bit release build on a 64-bit Linux machine, do this: cmake ..
https://dev.mysql.com/doc/internals/en/guided-tour-majordir.html
BUILD client Docs myisam mysys sql vio The orderly approach is to look first at the most important directories, then we'll look at the whole list in our second pass. So, first, let's look at what you'll find in just seven of the directories: BUILD, ...
https://dev.mysql.com/doc/internals/en/optimizer-index-merge-join-type.html
The current implementation builds SEL_IMERGE only if no single SEL_TREE object can be built for the part of the query condition it has analyzed, and discards SEL_TREE immediately if it discovers that a single SEL_TREE object can be constructed.
https://dev.mysql.com/doc/internals/en/tips-for-cmake-developers.html
How to find out which compiler/linker flags are used When using a Makefile generator, it is easy to examine which compiler flags are used to build. For example, compiler flags for mysqld are in sql/CMakeFiles/mysqld.dir/flags.make under the build ...What is CMakeCache.txt? CMake caches results of platform checks in ...
https://dev.mysql.com/doc/internals/en/ndb-directory.html
We generally use the term "ndb" when referring to the storage engine, and the term "MySQL Cluster" when referring to the combination of the storage engine and the rest of the MySQL facilities.
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 ...