summaryrefslogtreecommitdiff
path: root/sql/discover.h
Commit message (Collapse)AuthorAgeFilesLines
* Enusure that my_global.h is included firstMichael Widenius2017-08-241-2/+0
| | | | | | | | | | - Added sql/mariadb.h file that should be included first by files in sql directory, if sql_plugin.h is not used (sql_plugin.h adds SHOW variables that must be done before my_global.h is included) - Removed a lot of include my_global.h from include files - Removed include's of some files that my_global.h automatically includes - Removed duplicated include's of my_sys.h - Replaced include my_config.h with my_global.h
* 10.0-monty mergeSergei Golubchik2013-07-211-0/+8
|\ | | | | | | | | | | | | | | includes: * remove some remnants of "Bug#14521864: MYSQL 5.1 TO 5.5 BUGS PARTITIONING" * introduce LOCK_share, now LOCK_ha_data is strictly for engines * rea_create_table() always creates .par file (even in "frm-only" mode) * fix a 5.6 bug, temp file leak on dummy ALTER TABLE
* | post-review comments and other minor editsSergei Golubchik2013-04-091-1/+1
| |
* | CREATE TABLE and frm-less discovering engines.Sergei Golubchik2013-04-091-4/+4
| | | | | | | | | | Now CREATE TABLE does not write the frm file on disk, if the engine can discover it
* | split mysql_create_frm() in create_frm_image() and writefrm()Sergei Golubchik2013-04-091-1/+2
| |
* | handlerton::discover_table_names() can not discover onlySergei Golubchik2013-04-091-1/+1
| | | | | | | | "unknown" tables. Duplicates are possible - deal with them.
* | file-based table discovery for discovering storage enginesSergei Golubchik2013-04-091-0/+8
|/ | | | | | also: * move few tests from archive/archive.test to archive/discover.test * fix (unintentionally) bug#34104, updated result files
* Updated/added copyright headersKent Boortz2011-06-301-1/+1
|
* WL#5030: Split and remove mysql_priv.hMats Kindahl2010-03-311-0/+24
This patch: - Moves all definitions from the mysql_priv.h file into header files for the component where the variable is defined - Creates header files if the component lacks one - Eliminates all include directives from mysql_priv.h - Eliminates all circular include cycles - Rename time.cc to sql_time.cc - Rename mysql_priv.h to sql_priv.h