mysql_priv.h 97.5 KB
Newer Older
1
/* Copyright 2000-2008 MySQL AB, 2008 Sun Microsystems, Inc.
2

bk@work.mysql.com's avatar
bk@work.mysql.com committed
3 4
   This program is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
5
   the Free Software Foundation; version 2 of the License.
6

bk@work.mysql.com's avatar
bk@work.mysql.com committed
7 8 9 10
   This program is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.
11

bk@work.mysql.com's avatar
bk@work.mysql.com committed
12 13 14 15
   You should have received a copy of the GNU General Public License
   along with this program; if not, write to the Free Software
   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */

16 17 18 19
/**
  @file

  @details
20 21
  Mostly this file is used in the server. But a little part of it is used in
  mysqlbinlog too (definition of SELECT_DISTINCT and others).
22
  The consequence is that 90% of the file is wrapped in \#ifndef MYSQL_CLIENT,
23 24 25
  except the part which must be in the server and in the client.
*/

26 27 28
#ifndef MYSQL_PRIV_H
#define MYSQL_PRIV_H

29 30
#ifndef MYSQL_CLIENT

31
#include <my_global.h>
32 33
#include <mysql_version.h>
#include <mysql_embed.h>
bk@work.mysql.com's avatar
bk@work.mysql.com committed
34
#include <my_sys.h>
35
#include <my_time.h>
bk@work.mysql.com's avatar
bk@work.mysql.com committed
36 37 38 39 40
#include <m_string.h>
#include <hash.h>
#include <signal.h>
#include <thr_lock.h>
#include <my_base.h>			/* Needed by field.h */
41
#include <queues.h>
42
#include "sql_bitmap.h"
43
#include "sql_array.h"
antony@ppcg5.local's avatar
antony@ppcg5.local committed
44
#include "sql_plugin.h"
45
#include "scheduler.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
46

47 48
class Parser_state;

49 50 51 52 53 54 55 56 57 58 59 60 61
/**
  Query type constants.

  QT_ORDINARY -- ordinary SQL query.
  QT_IS -- SQL query to be shown in INFORMATION_SCHEMA (in utf8 and without
  character set introducers).
*/
enum enum_query_type
{
  QT_ORDINARY,
  QT_IS
};

62 63
/* TODO convert all these three maps to Bitmap classes */
typedef ulonglong table_map;          /* Used for table bits in join */
64 65 66 67 68
#if MAX_INDEXES <= 64
typedef Bitmap<64>  key_map;          /* Used for finding keys */
#else
typedef Bitmap<((MAX_INDEXES+7)/8*8)> key_map; /* Used for finding keys */
#endif
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
69
typedef ulong nesting_map;  /* Used for flags of nesting constructs */
70
/*
71 72 73
  Used to identify NESTED_JOIN structures within a join (applicable only to
  structures that have not been simplified away and embed more the one
  element)
74 75
*/
typedef ulonglong nested_join_map;
76

77 78
/* query_id */
typedef ulonglong query_id_t;
79
extern query_id_t global_query_id;
80 81

/* increment query_id and return it.  */
82
inline query_id_t next_query_id() { return global_query_id++; }
83

84
/* useful constants */
85 86 87
extern MYSQL_PLUGIN_IMPORT const key_map key_map_empty;
extern MYSQL_PLUGIN_IMPORT key_map key_map_full;          /* Should be threaded as const */
extern MYSQL_PLUGIN_IMPORT const char *primary_key_name;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
88 89

#include "mysql_com.h"
tonu@hundin.mysql.fi's avatar
tonu@hundin.mysql.fi committed
90
#include <violite.h>
bk@work.mysql.com's avatar
bk@work.mysql.com committed
91 92
#include "unireg.h"

93
void init_sql_alloc(MEM_ROOT *root, uint block_size, uint pre_alloc_size);
94 95
void *sql_alloc(size_t);
void *sql_calloc(size_t);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
96
char *sql_strdup(const char *str);
97 98
char *sql_strmake(const char *str, size_t len);
void *sql_memdup(const void * ptr, size_t size);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
99
void sql_element_free(void *ptr);
100
char *sql_strmake_with_convert(const char *str, size_t arg_length,
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
101
			       CHARSET_INFO *from_cs,
102 103
			       size_t max_res_length,
			       CHARSET_INFO *to_cs, size_t *result_length);
104 105
uint kill_one_thread(THD *thd, ulong id, bool only_kill_query);
void sql_kill(THD *thd, ulong id, bool only_kill_query);
106
bool net_request_file(NET* net, const char* fname);
sasha@mysql.sashanet.com's avatar
sasha@mysql.sashanet.com committed
107
char* query_table_status(THD *thd,const char *db,const char *table_name);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
108

109 110
#define x_free(A)	{ my_free((uchar*) (A),MYF(MY_WME | MY_FAE | MY_ALLOW_ZERO_PTR)); }
#define safeFree(x)	{ if(x) { my_free((uchar*) x,MYF(0)); x = NULL; } }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
111 112 113
#define PREV_BITS(type,A)	((type) (((type) 1 << (A)) -1))
#define all_bits_set(A,B) ((A) & (B) != (B))

114 115 116 117
/* Version numbers for deprecation messages */
#define VER_BETONY  "5.5"
#define VER_CELOSIA "5.6"

118 119 120
#define WARN_DEPRECATED(Thd,Ver,Old,New)                                             \
  do {                                                                               \
    DBUG_ASSERT(strncmp(Ver, MYSQL_SERVER_VERSION, sizeof(Ver)-1) > 0);              \
121
    if (((uchar*)Thd) != NULL)                                                       \
122
      push_warning_printf(((THD *)Thd), MYSQL_ERROR::WARN_LEVEL_WARN,                \
123 124 125
                        ER_WARN_DEPRECATED_SYNTAX,                                   \
                        ER(ER_WARN_DEPRECATED_SYNTAX),                               \
                        (Old), (New));                                               \
126
    else                                                                             \
127 128 129
      sql_print_warning("'%s' is deprecated and will be removed "                    \
                        "in a future release. Please use '%s' instead.",             \
                        (Old), (New));                                               \
130 131
  } while(0)

132 133 134 135
extern MYSQL_PLUGIN_IMPORT CHARSET_INFO *system_charset_info;
extern MYSQL_PLUGIN_IMPORT CHARSET_INFO *files_charset_info ;
extern MYSQL_PLUGIN_IMPORT CHARSET_INFO *national_charset_info;
extern MYSQL_PLUGIN_IMPORT CHARSET_INFO *table_alias_charset;
136

bar@mysql.com's avatar
bar@mysql.com committed
137

138 139 140 141 142 143 144 145 146 147 148
enum Derivation
{
  DERIVATION_IGNORABLE= 5,
  DERIVATION_COERCIBLE= 4,
  DERIVATION_SYSCONST= 3,
  DERIVATION_IMPLICIT= 2,
  DERIVATION_NONE= 1,
  DERIVATION_EXPLICIT= 0
};


bar@mysql.com's avatar
bar@mysql.com committed
149 150
typedef struct my_locale_st
{
151
  uint  number;
bar@mysql.com's avatar
bar@mysql.com committed
152 153 154 155 156 157 158
  const char *name;
  const char *description;
  const bool is_ascii;
  TYPELIB *month_names;
  TYPELIB *ab_month_names;
  TYPELIB *day_names;
  TYPELIB *ab_day_names;
159 160
  uint max_month_name_length;
  uint max_day_name_length;
161
#ifdef __cplusplus 
162 163
  my_locale_st(uint number_par,
               const char *name_par, const char *descr_par, bool is_ascii_par,
164
               TYPELIB *month_names_par, TYPELIB *ab_month_names_par,
165 166
               TYPELIB *day_names_par, TYPELIB *ab_day_names_par,
               uint max_month_name_length_par, uint max_day_name_length_par) : 
167
    number(number_par),
168
    name(name_par), description(descr_par), is_ascii(is_ascii_par),
169
    month_names(month_names_par), ab_month_names(ab_month_names_par),
170 171 172
    day_names(day_names_par), ab_day_names(ab_day_names_par),
    max_month_name_length(max_month_name_length_par),
    max_day_name_length(max_day_name_length_par)
173 174
  {}
#endif
bar@mysql.com's avatar
bar@mysql.com committed
175 176 177 178
} MY_LOCALE;

extern MY_LOCALE my_locale_en_US;
extern MY_LOCALE *my_locales[];
179
extern MY_LOCALE *my_default_lc_time_names;
bar@mysql.com's avatar
bar@mysql.com committed
180 181

MY_LOCALE *my_locale_by_name(const char *name);
182
MY_LOCALE *my_locale_by_number(uint number);
bar@mysql.com's avatar
bar@mysql.com committed
183

184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200
/*************************************************************************/

/**
 Object_creation_ctx -- interface for creation context of database objects
 (views, stored routines, events, triggers). Creation context -- is a set
 of attributes, that should be fixed at the creation time and then be used
 each time the object is parsed or executed.
*/

class Object_creation_ctx
{
public:
  Object_creation_ctx *set_n_backup(THD *thd);

  void restore_env(THD *thd, Object_creation_ctx *backup_ctx);

protected:
201
  Object_creation_ctx() {}
202
  virtual Object_creation_ctx *create_backup_ctx(THD *thd) const = 0;
203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237

  virtual void change_env(THD *thd) const = 0;

public:
  virtual ~Object_creation_ctx()
  { }
};

/*************************************************************************/

/**
 Default_object_creation_ctx -- default implementation of
 Object_creation_ctx.
*/

class Default_object_creation_ctx : public Object_creation_ctx
{
public:
  CHARSET_INFO *get_client_cs()
  {
    return m_client_cs;
  }

  CHARSET_INFO *get_connection_cl()
  {
    return m_connection_cl;
  }

protected:
  Default_object_creation_ctx(THD *thd);

  Default_object_creation_ctx(CHARSET_INFO *client_cs,
                              CHARSET_INFO *connection_cl);

protected:
238
  virtual Object_creation_ctx *create_backup_ctx(THD *thd) const;
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264

  virtual void change_env(THD *thd) const;

protected:
  /**
    client_cs stores the value of character_set_client session variable.
    The only character set attribute is used.

    Client character set is included into query context, because we save
    query in the original character set, which is client character set. So,
    in order to parse the query properly we have to switch client character
    set on parsing.
  */
  CHARSET_INFO *m_client_cs;

  /**
    connection_cl stores the value of collation_connection session
    variable. Both character set and collation attributes are used.

    Connection collation is included into query context, becase it defines
    the character set and collation of text literals in internal
    representation of query (item-objects).
  */
  CHARSET_INFO *m_connection_cl;
};

bk@work.mysql.com's avatar
bk@work.mysql.com committed
265
/***************************************************************************
266
  Configuration parameters
bk@work.mysql.com's avatar
bk@work.mysql.com committed
267 268 269
****************************************************************************/

#define ACL_CACHE_SIZE		256
270
#define MAX_PASSWORD_LENGTH	32
bk@work.mysql.com's avatar
bk@work.mysql.com committed
271 272 273 274
#define HOST_CACHE_SIZE		128
#define MAX_ACCEPT_RETRY	10	// Test accept this many times
#define MAX_FIELDS_BEFORE_HASH	32
#define USER_VARS_HASH_SIZE     16
275 276
#define TABLE_OPEN_CACHE_MIN    64
#define TABLE_OPEN_CACHE_DEFAULT 64
277 278 279 280 281 282 283 284 285 286 287 288 289 290 291
#define TABLE_DEF_CACHE_DEFAULT 256
/**
  We must have room for at least 256 table definitions in the table
  cache, since otherwise there is no chance prepared
  statements that use these many tables can work.
  Prepared statements use table definition cache ids (table_map_id)
  as table version identifiers. If the table definition
  cache size is less than the number of tables used in a statement,
  the contents of the table definition cache is guaranteed to rotate
  between a prepare and execute. This leads to stable validation
  errors. In future we shall use more stable version identifiers,
  for now the only solution is to ensure that the table definition
  cache can contain at least all tables of a given statement.
*/
#define TABLE_DEF_CACHE_MIN     256
292

293 294 295 296 297 298
/*
  Stack reservation.
  Feel free to raise this by the smallest amount you can to get the
  "execution_constants" test to pass.
*/
#define STACK_MIN_SIZE          16000   // Abort if less stack during eval.
299

300
#define STACK_MIN_SIZE_FOR_OPEN 1024*80
301
#define STACK_BUFF_ALLOC        352     ///< For stack overrun checks
bk@work.mysql.com's avatar
bk@work.mysql.com committed
302
#ifndef MYSQLD_NET_RETRY_COUNT
303
#define MYSQLD_NET_RETRY_COUNT  10	///< Abort read after this many int.
bk@work.mysql.com's avatar
bk@work.mysql.com committed
304
#endif
305
#define TEMP_POOL_SIZE          128
306 307 308 309 310

#define QUERY_ALLOC_BLOCK_SIZE		8192
#define QUERY_ALLOC_PREALLOC_SIZE   	8192
#define TRANS_ALLOC_BLOCK_SIZE		4096
#define TRANS_ALLOC_PREALLOC_SIZE	4096
311
#define RANGE_ALLOC_BLOCK_SIZE		4096
312 313 314
#define ACL_ALLOC_BLOCK_SIZE		1024
#define UDF_ALLOC_BLOCK_SIZE		1024
#define TABLE_ALLOC_BLOCK_SIZE		1024
315 316 317
#define BDB_LOG_ALLOC_BLOCK_SIZE	1024
#define WARN_ALLOC_BLOCK_SIZE		2048
#define WARN_ALLOC_PREALLOC_SIZE	1024
318 319
#define PROFILE_ALLOC_BLOCK_SIZE  2048
#define PROFILE_ALLOC_PREALLOC_SIZE 1024
320

321 322
/*
  The following parameters is to decide when to use an extra cache to
323
  optimise seeks when reading a big table in sorted order
324
*/
325
#define MIN_FILE_LENGTH_TO_USE_ROW_CACHE (10L*1024*1024)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
326
#define MIN_ROWS_TO_USE_TABLE_CACHE	 100
327
#define MIN_ROWS_TO_USE_BULK_INSERT	 100
bk@work.mysql.com's avatar
bk@work.mysql.com committed
328

329
/**
330 331 332 333
  The following is used to decide if MySQL should use table scanning
  instead of reading with keys.  The number says how many evaluation of the
  WHERE clause is comparable to reading one extra row from a table.
*/
334
#define TIME_FOR_COMPARE   5	// 5 compares == one read
335

336
/**
337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355
  Number of comparisons of table rowids equivalent to reading one row from a 
  table.
*/
#define TIME_FOR_COMPARE_ROWID  (TIME_FOR_COMPARE*2)

/*
  For sequential disk seeks the cost formula is:
    DISK_SEEK_BASE_COST + DISK_SEEK_PROP_COST * #blocks_to_skip  
  
  The cost of average seek 
    DISK_SEEK_BASE_COST + DISK_SEEK_PROP_COST*BLOCKS_IN_AVG_SEEK =1.0.
*/
#define DISK_SEEK_BASE_COST ((double)0.5)

#define BLOCKS_IN_AVG_SEEK  128

#define DISK_SEEK_PROP_COST ((double)0.5/BLOCKS_IN_AVG_SEEK)


356
/**
357 358 359 360
  Number of rows in a reference table when refereed through a not unique key.
  This value is only used when we don't know anything about the key
  distribution.
*/
361
#define MATCHING_ROWS_IN_OTHER_TABLE 10
bk@work.mysql.com's avatar
bk@work.mysql.com committed
362

363
/** Don't pack string keys shorter than this (if PACK_KEYS=1 isn't used). */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
364 365
#define KEY_DEFAULT_PACK_LENGTH 8

366
/** Characters shown for the command in 'show processlist'. */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
367
#define PROCESS_LIST_WIDTH 100
368 369
/* Characters shown for the command in 'information_schema.processlist' */
#define PROCESS_LIST_INFO_WIDTH 65535
bk@work.mysql.com's avatar
bk@work.mysql.com committed
370 371 372 373

#define PRECISION_FOR_DOUBLE 53
#define PRECISION_FOR_FLOAT  24

374 375 376 377 378
/* -[digits].E+## */
#define MAX_FLOAT_STR_LENGTH (FLT_DIG + 6)
/* -[digits].E+### */
#define MAX_DOUBLE_STR_LENGTH (DBL_DIG + 7)

379 380 381 382 383 384
/*
  Default time to wait before aborting a new client connection
  that does not respond to "initial server greeting" timely
*/
#define CONNECT_TIMEOUT		10

bk@work.mysql.com's avatar
bk@work.mysql.com committed
385 386
/* The following can also be changed from the command line */
#define DEFAULT_CONCURRENCY	10
387
#define DELAYED_LIMIT		100		/**< pause after xxx inserts */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
388
#define DELAYED_QUEUE_SIZE	1000
389 390 391
#define DELAYED_WAIT_TIMEOUT	5*60		/**< Wait for delayed insert */
#define FLUSH_TIME		0		/**< Don't flush tables */
#define MAX_CONNECT_ERRORS	10		///< errors before disabling host
bk@work.mysql.com's avatar
bk@work.mysql.com committed
392

393
#ifdef __NETWARE__
394
#define IF_NETWARE(A,B) A
395
#else
396
#define IF_NETWARE(A,B) B
397
#endif
398

399
#if defined(__WIN__)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
400
#undef	FLUSH_TIME
401
#define FLUSH_TIME	1800			/**< Flush every half hour */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
402 403 404 405 406 407 408 409 410 411 412 413

#define INTERRUPT_PRIOR -2
#define CONNECT_PRIOR	-1
#define WAIT_PRIOR	0
#define QUERY_PRIOR	2
#else
#define INTERRUPT_PRIOR 10
#define CONNECT_PRIOR	9
#define WAIT_PRIOR	8
#define QUERY_PRIOR	6
#endif /* __WIN92__ */

monty@donna.mysql.com's avatar
monty@donna.mysql.com committed
414
	/* Bits from testflag */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
415 416 417 418 419
#define TEST_PRINT_CACHED_TABLES 1
#define TEST_NO_KEY_GROUP	 2
#define TEST_MIT_THREAD		4
#define TEST_BLOCKING		8
#define TEST_KEEP_TMP_TABLES	16
420
#define TEST_READCHECK		64	/**< Force use of readcheck */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
421
#define TEST_NO_EXTRA		128
422
#define TEST_CORE_ON_SIGNAL	256	/**< Give core if signal */
423
#define TEST_NO_STACKTRACE	512
424 425
#define TEST_SIGINT		1024	/**< Allow sigint on threads */
#define TEST_SYNCHRONIZATION    2048    /**< get server to do sleep in
serg@serg.mylan's avatar
serg@serg.mylan committed
426
                                           some places */
427 428
#endif

serg@serg.mylan's avatar
serg@serg.mylan committed
429
/*
430 431
   This is included in the server and in the client.
   Options for select set by the yacc parser (stored in lex->options).
serg@serg.mylan's avatar
serg@serg.mylan committed
432 433 434 435 436 437 438 439 440 441 442 443 444

   XXX:
   log_event.h defines OPTIONS_WRITTEN_TO_BIN_LOG to specify what THD
   options list are written into binlog. These options can NOT change their
   values, or it will break replication between version.

   context is encoded as following:
   SELECT - SELECT_LEX_NODE::options
   THD    - THD::options
   intern - neither. used only as
            func(..., select_node->options | thd->options | OPTION_XXX, ...)

   TODO: separate three contexts above, move them to separate bitfields.
445 446
*/

447 448 449 450 451 452 453 454 455 456 457
#define SELECT_DISTINCT         (ULL(1) << 0)     // SELECT, user
#define SELECT_STRAIGHT_JOIN    (ULL(1) << 1)     // SELECT, user
#define SELECT_DESCRIBE         (ULL(1) << 2)     // SELECT, user
#define SELECT_SMALL_RESULT     (ULL(1) << 3)     // SELECT, user
#define SELECT_BIG_RESULT       (ULL(1) << 4)     // SELECT, user
#define OPTION_FOUND_ROWS       (ULL(1) << 5)     // SELECT, user
#define OPTION_TO_QUERY_CACHE   (ULL(1) << 6)     // SELECT, user
#define SELECT_NO_JOIN_CACHE    (ULL(1) << 7)     // intern
#define OPTION_BIG_TABLES       (ULL(1) << 8)     // THD, user
#define OPTION_BIG_SELECTS      (ULL(1) << 9)     // THD, user
#define OPTION_LOG_OFF          (ULL(1) << 10)    // THD, user
458
#define OPTION_QUOTE_SHOW_CREATE (ULL(1) << 11)   // THD, user, unused
459 460 461 462 463 464 465 466 467 468 469
#define TMP_TABLE_ALL_COLUMNS   (ULL(1) << 12)    // SELECT, intern
#define OPTION_WARNINGS         (ULL(1) << 13)    // THD, user
#define OPTION_AUTO_IS_NULL     (ULL(1) << 14)    // THD, user, binlog
#define OPTION_FOUND_COMMENT    (ULL(1) << 15)    // SELECT, intern, parser
#define OPTION_SAFE_UPDATES     (ULL(1) << 16)    // THD, user
#define OPTION_BUFFER_RESULT    (ULL(1) << 17)    // SELECT, user
#define OPTION_BIN_LOG          (ULL(1) << 18)    // THD, user
#define OPTION_NOT_AUTOCOMMIT   (ULL(1) << 19)    // THD, user
#define OPTION_BEGIN            (ULL(1) << 20)    // THD, intern
#define OPTION_TABLE_LOCK       (ULL(1) << 21)    // THD, intern
#define OPTION_QUICK            (ULL(1) << 22)    // SELECT (for DELETE)
470
#define OPTION_KEEP_LOG         (ULL(1) << 23)    // THD, user
serg@serg.mylan's avatar
serg@serg.mylan committed
471

472
/* The following is used to detect a conflict with DISTINCT */
473
#define SELECT_ALL              (ULL(1) << 24)    // SELECT, user, parser
474

475
/** The following can be set when importing tables in a 'wrong order'
476
   to suppress foreign key checks */
477
#define OPTION_NO_FOREIGN_KEY_CHECKS    (ULL(1) << 26) // THD, user, binlog
478
/** The following speeds up inserts to InnoDB tables by suppressing unique
479
   key checks in some cases */
480 481 482
#define OPTION_RELAXED_UNIQUE_CHECKS    (ULL(1) << 27) // THD, user, binlog
#define SELECT_NO_UNLOCK                (ULL(1) << 28) // SELECT, intern
#define OPTION_SCHEMA_TABLE             (ULL(1) << 29) // SELECT, intern
483
/** Flag set if setup_tables already done */
484
#define OPTION_SETUP_TABLES_DONE        (ULL(1) << 30) // intern
485
/** If not set then the thread will ignore all warnings with level notes. */
486
#define OPTION_SQL_NOTES                (ULL(1) << 31) // THD, user
487
/**
488 489 490
  Force the used temporary table to be a MyISAM table (because we will use
  fulltext functions when reading from it.
*/
491
#define TMP_TABLE_FORCE_MYISAM          (ULL(1) << 32)
492 493
#define OPTION_PROFILING                (ULL(1) << 33)

494

495

496
/**
serg@serg.mylan's avatar
serg@serg.mylan committed
497
  Maximum length of time zone name that we support
498 499
  (Time zone name is char(64) in db). mysqlbinlog needs it.
*/
500
#define MAX_TIME_ZONE_NAME_LENGTH       (NAME_LEN + 1)
501

502 503 504
/* The rest of the file is included in the server only */
#ifndef MYSQL_CLIENT

505
/* Bits for different SQL modes modes (including ANSI mode) */
serg@serg.mylan's avatar
serg@serg.mylan committed
506 507 508
#define MODE_REAL_AS_FLOAT              1
#define MODE_PIPES_AS_CONCAT            2
#define MODE_ANSI_QUOTES                4
509
#define MODE_IGNORE_SPACE		8
510
#define MODE_NOT_USED			16
511 512
#define MODE_ONLY_FULL_GROUP_BY		32
#define MODE_NO_UNSIGNED_SUBTRACTION	64
513
#define MODE_NO_DIR_IN_CREATE		128
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
514 515 516 517
#define MODE_POSTGRESQL			256
#define MODE_ORACLE			512
#define MODE_MSSQL			1024
#define MODE_DB2			2048
518
#define MODE_MAXDB			4096
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
519
#define MODE_NO_KEY_OPTIONS             8192
520
#define MODE_NO_TABLE_OPTIONS           16384
521
#define MODE_NO_FIELD_OPTIONS           32768
522
#define MODE_MYSQL323                   65536L
523 524 525 526 527 528 529 530 531 532 533
#define MODE_MYSQL40                    (MODE_MYSQL323*2)
#define MODE_ANSI	                (MODE_MYSQL40*2)
#define MODE_NO_AUTO_VALUE_ON_ZERO      (MODE_ANSI*2)
#define MODE_NO_BACKSLASH_ESCAPES       (MODE_NO_AUTO_VALUE_ON_ZERO*2)
#define MODE_STRICT_TRANS_TABLES	(MODE_NO_BACKSLASH_ESCAPES*2)
#define MODE_STRICT_ALL_TABLES		(MODE_STRICT_TRANS_TABLES*2)
#define MODE_NO_ZERO_IN_DATE		(MODE_STRICT_ALL_TABLES*2)
#define MODE_NO_ZERO_DATE		(MODE_NO_ZERO_IN_DATE*2)
#define MODE_INVALID_DATES		(MODE_NO_ZERO_DATE*2)
#define MODE_ERROR_FOR_DIVISION_BY_ZERO (MODE_INVALID_DATES*2)
#define MODE_TRADITIONAL		(MODE_ERROR_FOR_DIVISION_BY_ZERO*2)
534
#define MODE_NO_AUTO_CREATE_USER	(MODE_TRADITIONAL*2)
535
#define MODE_HIGH_NOT_PRECEDENCE	(MODE_NO_AUTO_CREATE_USER*2)
536
#define MODE_NO_ENGINE_SUBSTITUTION     (MODE_HIGH_NOT_PRECEDENCE*2)
537
#define MODE_PAD_CHAR_TO_FULL_LENGTH    (ULL(1) << 31)
538

539 540 541 542 543 544 545
/* @@optimizer_switch flags. These must be in sync with optimizer_switch_typelib */
#define OPTIMIZER_SWITCH_INDEX_MERGE 1
#define OPTIMIZER_SWITCH_INDEX_MERGE_UNION 2
#define OPTIMIZER_SWITCH_INDEX_MERGE_SORT_UNION 4
#define OPTIMIZER_SWITCH_INDEX_MERGE_INTERSECT 8
#define OPTIMIZER_SWITCH_LAST 16

546
/* The following must be kept in sync with optimizer_switch_str in mysqld.cc */
547 548 549 550 551
#define OPTIMIZER_SWITCH_DEFAULT (OPTIMIZER_SWITCH_INDEX_MERGE | \
                                  OPTIMIZER_SWITCH_INDEX_MERGE_UNION | \
                                  OPTIMIZER_SWITCH_INDEX_MERGE_SORT_UNION | \
                                  OPTIMIZER_SWITCH_INDEX_MERGE_INTERSECT)

552

553 554 555 556 557
/*
  Replication uses 8 bytes to store SQL_MODE in the binary log. The day you
  use strictly more than 64 bits by adding one more define above, you should
  contact the replication team because the replication code should then be
  updated (to store more bytes on disk).
558 559

  NOTE: When adding new SQL_MODE types, make sure to also add them to
560 561 562
  the scripts used for creating the MySQL system tables
  in scripts/mysql_system_tables.sql and scripts/mysql_system_tables_fix.sql

563
*/
564

bk@work.mysql.com's avatar
bk@work.mysql.com committed
565 566
#define RAID_BLOCK_SIZE 1024

567 568
#define MY_CHARSET_BIN_MB_MAXLEN 1

569 570 571
// uncachable cause
#define UNCACHEABLE_DEPENDENT   1
#define UNCACHEABLE_RAND        2
572
#define UNCACHEABLE_SIDEEFFECT	4
573
/// forcing to save JOIN for explain
574
#define UNCACHEABLE_EXPLAIN     8
575
/** Don't evaluate subqueries in prepare even if they're not correlated */
576
#define UNCACHEABLE_PREPARE    16
577 578
/* For uncorrelated SELECT in an UNION with some correlated SELECTs */
#define UNCACHEABLE_UNITED     32
579
#define UNCACHEABLE_CHECKOPTION   64
580

581
/* Used to check GROUP BY list in the MODE_ONLY_FULL_GROUP_BY mode */
582
#define UNDEF_POS (-1)
583

bk@work.mysql.com's avatar
bk@work.mysql.com committed
584 585 586 587
/* BINLOG_DUMP options */

#define BINLOG_DUMP_NON_BLOCK   1

tim@cane.mysql.fi's avatar
tim@cane.mysql.fi committed
588 589 590 591
/* sql_show.cc:show_log_files() */
#define SHOW_LOG_STATUS_FREE "FREE"
#define SHOW_LOG_STATUS_INUSE "IN USE"

592
struct TABLE_LIST;
593
class String;
594
void view_store_options(THD *thd, TABLE_LIST *table, String *buff);
595

596 597 598
/* Options to add_table_to_list() */
#define TL_OPTION_UPDATING	1
#define TL_OPTION_FORCE_INDEX	2
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
599
#define TL_OPTION_IGNORE_LEAVES 4
600
#define TL_OPTION_ALIAS         8
601

bk@work.mysql.com's avatar
bk@work.mysql.com committed
602 603 604 605
/* Some portable defines */

#define portable_sizeof_char_ptr 8

606
#define tmp_file_prefix "#sql"			/**< Prefix for tmp tables */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
607 608
#define tmp_file_prefix_length 4

609 610 611 612 613
/* Flags for calc_week() function.  */
#define WEEK_MONDAY_FIRST    1
#define WEEK_YEAR            2
#define WEEK_FIRST_WEEKDAY   4

614 615
#define STRING_BUFFER_USUAL_SIZE 80

616 617 618 619 620 621 622
/*
  Some defines for exit codes for ::is_equal class functions.
*/
#define IS_EQUAL_NO 0
#define IS_EQUAL_YES 1
#define IS_EQUAL_PACK_LENGTH 2

623 624 625 626
enum enum_parsing_place
{
  NO_MATTER,
  IN_HAVING,
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
627
  SELECT_LIST,
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
628 629
  IN_WHERE,
  IN_ON
630 631
};

bk@work.mysql.com's avatar
bk@work.mysql.com committed
632
struct st_table;
633 634

#define thd_proc_info(thd, msg)  set_thd_proc_info(thd, msg, __func__, __FILE__, __LINE__)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
635 636
class THD;

637 638 639 640 641 642
enum enum_check_fields
{
  CHECK_FIELD_IGNORE,
  CHECK_FIELD_WARN,
  CHECK_FIELD_ERROR_FOR_NULL
};
bk@work.mysql.com's avatar
bk@work.mysql.com committed
643

644 645
                                  
/** Struct to handle simple linked lists. */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
646 647
typedef struct st_sql_list {
  uint elements;
648 649
  uchar *first;
  uchar **next;
650

651
  st_sql_list() {}                              /* Remove gcc warning */
652 653 654 655 656 657
  inline void empty()
  {
    elements=0;
    first=0;
    next= &first;
  }
658
  inline void link_in_list(uchar *element,uchar **next_ptr)
659 660 661 662 663 664
  {
    elements++;
    (*next)=element;
    next= next_ptr;
    *next=0;
  }
665 666 667 668 669 670 671 672 673 674 675
  inline void save_and_clear(struct st_sql_list *save)
  {
    *save= *this;
    empty();
  }
  inline void push_front(struct st_sql_list *save)
  {
    *save->next= first;				/* link current list last */
    first= save->first;
    elements+= save->elements;
  }
676 677 678 679 680 681 682 683 684
  inline void push_back(struct st_sql_list *save)
  {
    if (save->first)
    {
      *next= save->first;
      next= save->next;
      elements+= save->elements;
    }
  }
bk@work.mysql.com's avatar
bk@work.mysql.com committed
685 686
} SQL_LIST;

687 688 689 690
#if defined(MYSQL_DYNAMIC_PLUGIN) && defined(_WIN32)
extern "C" THD *_current_thd_noinline();
#define _current_thd() _current_thd_noinline()
#else
bk@work.mysql.com's avatar
bk@work.mysql.com committed
691 692 693 694 695
extern pthread_key(THD*, THR_THD);
inline THD *_current_thd(void)
{
  return my_pthread_getspecific_ptr(THD*,THR_THD);
}
696
#endif
bk@work.mysql.com's avatar
bk@work.mysql.com committed
697 698
#define current_thd _current_thd()

699

700 701 702 703
/** 
  The meat of thd_proc_info(THD*, char*), a macro that packs the last
  three calling-info parameters. 
*/
704
extern "C"
705 706 707 708
const char *set_thd_proc_info(THD *thd, const char *info, 
                              const char *calling_func, 
                              const char *calling_file, 
                              const unsigned int calling_line);
709

710 711 712 713 714 715 716 717 718 719
/**
  Enumerate possible types of a table from re-execution
  standpoint.
  TABLE_LIST class has a member of this type.
  At prepared statement prepare, this member is assigned a value
  as of the current state of the database. Before (re-)execution
  of a prepared statement, we check that the value recorded at
  prepare matches the type of the object we obtained from the
  table definition cache.

720
  @sa check_and_update_table_version()
721 722 723 724
  @sa Execute_observer
  @sa Prepared_statement::reprepare()
*/

725
enum enum_table_ref_type
726 727
{
  /** Initial value set by the parser */
728 729 730 731 732
  TABLE_REF_NULL= 0,
  TABLE_REF_VIEW,
  TABLE_REF_BASE_TABLE,
  TABLE_REF_I_S_TABLE,
  TABLE_REF_TMP_TABLE
733 734
};

735 736 737 738 739
/*
  External variables
*/
extern ulong server_id, concurrency;

serg@serg.mylan's avatar
serg@serg.mylan committed
740

741 742 743
typedef my_bool (*qc_engine_callback)(THD *thd, char *table_key,
                                      uint key_length,
                                      ulonglong *engine_data);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
744 745 746
#include "sql_string.h"
#include "sql_list.h"
#include "sql_map.h"
747
#include "my_decimal.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
748
#include "handler.h"
749
#include "parse_file.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
750
#include "table.h"
751
#include "sql_error.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
752
#include "field.h"				/* Field definitions */
753
#include "protocol.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
754
#include "sql_udf.h"
755
#include "sql_profile.h"
756 757
#include "sql_partition.h"

758
class user_var_entry;
759
class Security_context;
760 761
enum enum_var_type
{
762
  OPT_DEFAULT= 0, OPT_SESSION, OPT_GLOBAL
763 764
};
class sys_var;
765
#ifdef MYSQL_SERVER
766
class Comp_creator;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
767
typedef Comp_creator* (*chooser_compare_func_creator)(bool invert);
768
#endif
769
#include "item.h"
sergefp@mysql.com's avatar
sergefp@mysql.com committed
770 771
extern my_decimal decimal_zero;

772 773 774
/* sql_parse.cc */
void free_items(Item *item);
void cleanup_items(Item *item);
775
class THD;
776
void close_thread_tables(THD *thd);
777 778

#ifndef NO_EMBEDDED_ACCESS_CHECKS
779
bool check_one_table_access(THD *thd, ulong privilege, TABLE_LIST *tables);
780
bool check_single_table_access(THD *thd, ulong privilege,
781
			   TABLE_LIST *tables, bool no_errors);
782 783
bool check_routine_access(THD *thd,ulong want_access,char *db,char *name,
			  bool is_proc, bool no_errors);
784
bool check_some_access(THD *thd, ulong want_access, TABLE_LIST *table);
785
bool check_some_routine_access(THD *thd, const char *db, const char *name, bool is_proc);
786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803
#else
inline bool check_one_table_access(THD *thd, ulong privilege, TABLE_LIST *tables)
{ return false; }
inline bool check_single_table_access(THD *thd, ulong privilege,
			   TABLE_LIST *tables, bool no_errors)
{ return false; }
inline bool check_routine_access(THD *thd,ulong want_access,char *db,
                                 char *name, bool is_proc, bool no_errors)
{ return false; }
inline bool check_some_access(THD *thd, ulong want_access, TABLE_LIST *table)
{ return false; }
inline bool check_merge_table_access(THD *thd, char *db, TABLE_LIST *table_list)
{ return false; }
inline bool check_some_routine_access(THD *thd, const char *db,
                                      const char *name, bool is_proc)
{ return false; }
#endif /*NO_EMBEDDED_ACCESS_CHECKS*/

804
bool multi_update_precheck(THD *thd, TABLE_LIST *tables);
805
bool multi_delete_precheck(THD *thd, TABLE_LIST *tables);
806 807
int mysql_multi_update_prepare(THD *thd);
int mysql_multi_delete_prepare(THD *thd);
808 809 810
bool mysql_insert_select_prepare(THD *thd);
bool update_precheck(THD *thd, TABLE_LIST *tables);
bool delete_precheck(THD *thd, TABLE_LIST *tables);
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
811
bool insert_precheck(THD *thd, TABLE_LIST *tables);
812 813
bool create_table_precheck(THD *thd, TABLE_LIST *tables,
                           TABLE_LIST *create_table);
814 815
int append_query_string(CHARSET_INFO *csinfo,
                        String const *from, String *to);
816

817
void get_default_definer(THD *thd, LEX_USER *definer);
818
LEX_USER *create_default_definer(THD *thd);
819
LEX_USER *create_definer(THD *thd, LEX_STRING *user_name, LEX_STRING *host_name);
820
LEX_USER *get_current_user(THD *thd, LEX_USER *user);
821 822 823 824 825
bool check_string_byte_length(LEX_STRING *str, const char *err_msg,
                              uint max_byte_length);
bool check_string_char_length(LEX_STRING *str, const char *err_msg,
                              uint max_char_length, CHARSET_INFO *cs,
                              bool no_error);
826
bool check_host_name(LEX_STRING *str);
827

828
bool parse_sql(THD *thd,
829 830
               Parser_state *parser_state,
               Object_creation_ctx *creation_ctx);
831

832 833 834 835 836
enum enum_mysql_completiontype {
  ROLLBACK_RELEASE=-2, ROLLBACK=1,  ROLLBACK_AND_CHAIN=7,
  COMMIT_RELEASE=-1,   COMMIT=0,    COMMIT_AND_CHAIN=6
};

tomas@poseidon.ndb.mysql.com's avatar
tomas@poseidon.ndb.mysql.com committed
837
bool begin_trans(THD *thd);
838
bool end_active_trans(THD *thd);
839 840
int end_trans(THD *thd, enum enum_mysql_completiontype completion);

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
841
Item *negate_expression(THD *thd, Item *expr);
842 843

/* log.cc */
844
int vprint_msg_to_log(enum loglevel level, const char *format, va_list args);
845 846 847 848
void sql_print_error(const char *format, ...) ATTRIBUTE_FORMAT(printf, 1, 2);
void sql_print_warning(const char *format, ...) ATTRIBUTE_FORMAT(printf, 1, 2);
void sql_print_information(const char *format, ...)
  ATTRIBUTE_FORMAT(printf, 1, 2);
849 850 851 852 853 854 855 856
typedef void (*sql_print_message_func)(const char *format, ...)
  ATTRIBUTE_FORMAT(printf, 1, 2);
extern sql_print_message_func sql_print_message_handlers[];

int error_log_print(enum loglevel level, const char *format,
                    va_list args);

bool slow_log_print(THD *thd, const char *query, uint query_length,
857
                    ulonglong current_utime);
858 859 860

bool general_log_print(THD *thd, enum enum_server_command command,
                       const char *format,...);
861

862 863 864
bool general_log_write(THD *thd, enum enum_server_command command,
                       const char *query, uint query_length);

bk@work.mysql.com's avatar
bk@work.mysql.com committed
865
#include "sql_class.h"
866 867
#include "sql_acl.h"
#include "tztime.h"
868
#ifdef MYSQL_SERVER
patg@radha.tangent.org's avatar
patg@radha.tangent.org committed
869
#include "sql_servers.h"
bk@work.mysql.com's avatar
bk@work.mysql.com committed
870
#include "opt_range.h"
871 872

#ifdef HAVE_QUERY_CACHE
873 874 875
struct Query_cache_query_flags
{
  unsigned int client_long_flag:1;
876
  unsigned int client_protocol_41:1;
877
  unsigned int result_in_binary_protocol:1;
878
  unsigned int more_results_exists:1;
879 880
  unsigned int in_trans:1;
  unsigned int autocommit:1;
881
  unsigned int pkt_nr;
882 883 884
  uint character_set_client_num;
  uint character_set_results_num;
  uint collation_connection_num;
885
  ha_rows limit;
886
  Time_zone *time_zone;
887 888 889
  ulong sql_mode;
  ulong max_sort_length;
  ulong group_concat_max_len;
890
  ulong default_week_format;
891
  ulong div_precision_increment;
bar@mysql.com's avatar
bar@mysql.com committed
892
  MY_LOCALE *lc_time_names;
893 894
};
#define QUERY_CACHE_FLAGS_SIZE sizeof(Query_cache_query_flags)
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
895
#include "sql_cache.h"
896 897 898
#define query_cache_store_query(A, B) query_cache.store_query(A, B)
#define query_cache_destroy() query_cache.destroy()
#define query_cache_result_size_limit(A) query_cache.result_size_limit(A)
899
#define query_cache_init() query_cache.init()
900
#define query_cache_resize(A) query_cache.resize(A)
901
#define query_cache_set_min_res_unit(A) query_cache.set_min_res_unit(A)
902 903 904 905 906 907
#define query_cache_invalidate3(A, B, C) query_cache.invalidate(A, B, C)
#define query_cache_invalidate1(A) query_cache.invalidate(A)
#define query_cache_send_result_to_client(A, B, C) \
  query_cache.send_result_to_client(A, B, C)
#define query_cache_invalidate_by_MyISAM_filename_ref \
  &query_cache_invalidate_by_MyISAM_filename
908 909 910 911 912
/* note the "maybe": it's a read without mutex */
#define query_cache_maybe_disabled(T)                                 \
  (T->variables.query_cache_type == 0 || query_cache.query_cache_size == 0)
#define query_cache_is_cacheable_query(L) \
  (((L)->sql_command == SQLCOM_SELECT) && (L)->safe_to_cache_query)
913
#else
914
#define QUERY_CACHE_FLAGS_SIZE 0
915 916 917
#define query_cache_store_query(A, B)
#define query_cache_destroy()
#define query_cache_result_size_limit(A)
918
#define query_cache_init()
919
#define query_cache_resize(A)
920
#define query_cache_set_min_res_unit(A)
921 922 923 924 925 926 927 928
#define query_cache_invalidate3(A, B, C)
#define query_cache_invalidate1(A)
#define query_cache_send_result_to_client(A, B, C) 0
#define query_cache_invalidate_by_MyISAM_filename_ref NULL

#define query_cache_abort(A)
#define query_cache_end_of_result(A)
#define query_cache_invalidate_by_MyISAM_filename_ref NULL
929 930
#define query_cache_maybe_disabled(T) 1
#define query_cache_is_cacheable_query(L) 0
931
#endif /*HAVE_QUERY_CACHE*/
bk@work.mysql.com's avatar
bk@work.mysql.com committed
932

933 934 935 936 937
/*
  Error injector Macros to enable easy testing of recovery after failures
  in various error cases.
*/
#ifndef ERROR_INJECT_SUPPORT
938

939
#define ERROR_INJECT(x) 0
940
#define ERROR_INJECT_ACTION(x,action) 0
941
#define ERROR_INJECT_CRASH(x) 0
942 943 944
#define ERROR_INJECT_VALUE(x) 0
#define ERROR_INJECT_VALUE_ACTION(x,action) 0
#define ERROR_INJECT_VALUE_CRASH(x) 0
945
#define SET_ERROR_INJECT_VALUE(x)
946

947 948
#else

949
inline bool check_and_unset_keyword(const char *dbug_str)
950
{
951 952 953
  const char *extra_str= "-d,";
  char total_str[200];
  if (_db_strict_keyword_ (dbug_str))
954
  {
955 956
    strxmov(total_str, extra_str, dbug_str, NullS);
    DBUG_SET(total_str);
957 958 959 960 961 962
    return 1;
  }
  return 0;
}


963
inline bool
964
check_and_unset_inject_value(int value)
965
{
966
  THD *thd= current_thd;
967
  if (thd->error_inject_value == (uint)value)
968
  {
969
    thd->error_inject_value= 0;
970 971 972
    return 1;
  }
  return 0;
973 974
}

975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011
/*
  ERROR INJECT MODULE:
  --------------------
  These macros are used to insert macros from the application code.
  The event that activates those error injections can be activated
  from SQL by using:
  SET SESSION dbug=+d,code;

  After the error has been injected, the macros will automatically
  remove the debug code, thus similar to using:
  SET SESSION dbug=-d,code
  from SQL.

  ERROR_INJECT_CRASH will inject a crash of the MySQL Server if code
  is set when macro is called. ERROR_INJECT_CRASH can be used in
  if-statements, it will always return FALSE unless of course it
  crashes in which case it doesn't return at all.

  ERROR_INJECT_ACTION will inject the action specified in the action
  parameter of the macro, before performing the action the code will
  be removed such that no more events occur. ERROR_INJECT_ACTION
  can also be used in if-statements and always returns FALSE.
  ERROR_INJECT can be used in a normal if-statement, where the action
  part is performed in the if-block. The macro returns TRUE if the
  error was activated and otherwise returns FALSE. If activated the
  code is removed.

  Sometimes it is necessary to perform error inject actions as a serie
  of events. In this case one can use one variable on the THD object.
  Thus one sets this value by using e.g. SET_ERROR_INJECT_VALUE(100).
  Then one can later test for it by using ERROR_INJECT_CRASH_VALUE,
  ERROR_INJECT_ACTION_VALUE and ERROR_INJECT_VALUE. This have the same
  behaviour as the above described macros except that they use the
  error inject value instead of a code used by DBUG macros.
*/
#define SET_ERROR_INJECT_VALUE(x) \
  current_thd->error_inject_value= (x)
1012
#define ERROR_INJECT_CRASH(code) \
1013
  DBUG_EVALUATE_IF(code, (abort(), 0), 0)
1014
#define ERROR_INJECT_ACTION(code, action) \
1015
  (check_and_unset_keyword(code) ? ((action), 0) : 0)
1016
#define ERROR_INJECT(code) \
1017
  check_and_unset_keyword(code)
1018
#define ERROR_INJECT_VALUE(value) \
1019
  check_and_unset_inject_value(value)
1020
#define ERROR_INJECT_VALUE_ACTION(value,action) \
1021
  (check_and_unset_inject_value(value) ? (action) : 0)
1022
#define ERROR_INJECT_VALUE_CRASH(value) \
1023
  ERROR_INJECT_VALUE_ACTION(value, (abort(), 0))
1024

1025
#endif
1026

He Zhenxing's avatar
He Zhenxing committed
1027 1028
int write_bin_log(THD *thd, bool clear_error,
                  char const *query, ulong query_length);
1029

1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042
/* sql_connect.cc */
int check_user(THD *thd, enum enum_server_command command, 
	       const char *passwd, uint passwd_len, const char *db,
	       bool check_count);
pthread_handler_t handle_one_connection(void *arg);
bool init_new_connection_handler_thread();
void reset_mqh(LEX_USER *lu, bool get_them);
bool check_mqh(THD *thd, uint check_command);
void time_out_user_resource_limits(THD *thd, USER_CONN *uc);
void decrease_user_connections(USER_CONN *uc);
void thd_init_client_charset(THD *thd, uint cs_number);
bool setup_connection_thread_globals(THD *thd);

1043
int mysql_create_db(THD *thd, char *db, HA_CREATE_INFO *create, bool silent);
1044 1045
bool mysql_alter_db(THD *thd, const char *db, HA_CREATE_INFO *create);
bool mysql_rm_db(THD *thd,char *db,bool if_exists, bool silent);
1046
bool mysql_upgrade_db(THD *thd, LEX_STRING *old_db);
1047
void mysql_binlog_send(THD* thd, char* log_ident, my_off_t pos, ushort flags);
1048
void mysql_client_binlog_statement(THD *thd);
1049 1050
bool mysql_rm_table(THD *thd,TABLE_LIST *tables, my_bool if_exists,
                    my_bool drop_temporary);
1051
int mysql_rm_table_part2(THD *thd, TABLE_LIST *tables, bool if_exists,
1052
                         bool drop_temporary, bool drop_view, bool log_query);
1053
bool quick_rm_table(handlerton *base,const char *db,
1054
                    const char *table_name, uint flags);
1055
void close_cached_table(THD *thd, TABLE *table);
1056
bool mysql_rename_tables(THD *thd, TABLE_LIST *table_list, bool silent);
1057 1058 1059
bool do_rename(THD *thd, TABLE_LIST *ren_table, char *new_db,
                      char *new_table_name, char *new_table_alias,
                      bool skip_error);
1060

1061 1062
bool mysql_change_db(THD *thd, const LEX_STRING *new_db_name,
                     bool force_switch);
1063

1064 1065 1066 1067 1068 1069
bool mysql_opt_change_db(THD *thd,
                         const LEX_STRING *new_db_name,
                         LEX_STRING *saved_db_name,
                         bool force_switch,
                         bool *cur_db_changed);

1070 1071 1072
void mysql_parse(THD *thd, const char *inBuf, uint length,
                 const char ** semicolon);

1073
bool mysql_test_parse_for_slave(THD *thd,char *inBuf,uint length);
1074
bool is_update_query(enum enum_sql_command command);
1075
bool is_log_table_write_query(enum enum_sql_command command);
1076
bool alloc_query(THD *thd, const char *packet, uint packet_length);
1077
void mysql_init_select(LEX *lex);
1078
void mysql_reset_thd_for_next_command(THD *thd);
1079
bool mysql_new_select(LEX *lex, bool move_down);
1080
void create_select_for_variable(const char *var_name);
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1081
void mysql_init_multi_delete(LEX *lex);
1082
bool multi_delete_set_locks_and_link_aux_tables(LEX *lex);
1083
void init_max_user_conn(void);
1084
void init_update_queries(void);
1085
void free_max_user_conn(void);
1086
pthread_handler_t handle_bootstrap(void *arg);
1087
int mysql_execute_command(THD *thd);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1088
bool do_command(THD *thd);
1089 1090
bool dispatch_command(enum enum_server_command command, THD *thd,
		      char* packet, uint packet_length);
konstantin@mysql.com's avatar
konstantin@mysql.com committed
1091
void log_slow_statement(THD *thd);
1092
bool check_dup(const char *db, const char *name, TABLE_LIST *tables);
igor@olga.mysql.com's avatar
igor@olga.mysql.com committed
1093
bool compare_record(TABLE *table);
1094 1095
bool append_file_to_dir(THD *thd, const char **filename_ptr, 
                        const char *table_name);
1096 1097
void wait_while_table_is_used(THD *thd, TABLE *table,
                              enum ha_extra_function function);
1098
bool table_cache_init(void);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1099
void table_cache_free(void);
1100 1101
bool table_def_init(void);
void table_def_free(void);
1102
void assign_new_table_id(TABLE_SHARE *share);
1103 1104
uint cached_open_tables(void);
uint cached_table_definitions(void);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1105
void kill_mysql(void);
1106
void close_connection(THD *thd, uint errcode, bool lock);
hf@deer.(none)'s avatar
hf@deer.(none) committed
1107 1108
bool reload_acl_and_cache(THD *thd, ulong options, TABLE_LIST *tables, 
                          bool *write_to_binlog);
1109
#ifndef NO_EMBEDDED_ACCESS_CHECKS
hf@deer.(none)'s avatar
hf@deer.(none) committed
1110
bool check_access(THD *thd, ulong access, const char *db, ulong *save_priv,
1111
		  bool no_grant, bool no_errors, bool schema_db);
1112
bool check_table_access(THD *thd, ulong want_access, TABLE_LIST *tables,
1113
			uint number, bool no_errors);
1114 1115 1116 1117 1118 1119 1120 1121 1122 1123
#else
inline bool check_access(THD *thd, ulong access, const char *db,
                         ulong *save_priv, bool no_grant, bool no_errors,
                         bool schema_db)
{
  if (save_priv)
    *save_priv= GLOBAL_ACLS;
  return false;
}
inline bool check_table_access(THD *thd, ulong want_access, TABLE_LIST *tables,
1124
			uint number, bool no_errors)
1125
{ return false; }
1126 1127 1128 1129 1130 1131 1132
#endif /*NO_EMBEDDED_ACCESS_CHECKS*/

#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
bool check_global_access(THD *thd, ulong want_access);
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1133

1134 1135 1136 1137
/*
  Support routine for SQL parser on partitioning syntax
*/
my_bool is_partition_management(LEX *lex);
1138 1139 1140 1141 1142 1143 1144 1145
/*
  General routine to change field->ptr of a NULL-terminated array of Field
  objects. Useful when needed to call val_int, val_str or similar and the
  field data is not in table->record[0] but in some other structure.
  set_key_field_ptr changes all fields of an index using a key_info object.
  All methods presume that there is at least one field to change.
*/

1146 1147 1148
void set_field_ptr(Field **ptr, const uchar *new_buf, const uchar *old_buf);
void set_key_field_ptr(KEY *key_info, const uchar *new_buf,
                       const uchar *old_buf);
1149

1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165
bool mysql_backup_table(THD* thd, TABLE_LIST* table_list);
bool mysql_restore_table(THD* thd, TABLE_LIST* table_list);

bool mysql_checksum_table(THD* thd, TABLE_LIST* table_list,
                          HA_CHECK_OPT* check_opt);
bool mysql_check_table(THD* thd, TABLE_LIST* table_list,
                       HA_CHECK_OPT* check_opt);
bool mysql_repair_table(THD* thd, TABLE_LIST* table_list,
                        HA_CHECK_OPT* check_opt);
bool mysql_analyze_table(THD* thd, TABLE_LIST* table_list,
                         HA_CHECK_OPT* check_opt);
bool mysql_optimize_table(THD* thd, TABLE_LIST* table_list,
                          HA_CHECK_OPT* check_opt);
bool mysql_assign_to_keycache(THD* thd, TABLE_LIST* table_list,
                              LEX_STRING *key_cache_name);
bool mysql_preload_keys(THD* thd, TABLE_LIST* table_list);
1166 1167
int reassign_keycache_tables(THD* thd, KEY_CACHE *src_cache,
                             KEY_CACHE *dst_cache);
1168
TABLE *create_virtual_tmp_table(THD *thd, List<Create_field> &field_list);
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
1169

1170 1171
bool mysql_xa_recover(THD *thd);

1172
bool check_simple_select();
1173
int mysql_alter_tablespace(THD* thd, st_alter_tablespace *ts_info);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1174

1175 1176
SORT_FIELD * make_unireg_sortorder(ORDER *order, uint *length,
                                  SORT_FIELD *sortorder);
1177 1178 1179 1180
int setup_order(THD *thd, Item **ref_pointer_array, TABLE_LIST *tables,
		List<Item> &fields, List <Item> &all_fields, ORDER *order);
int setup_group(THD *thd, Item **ref_pointer_array, TABLE_LIST *tables,
		List<Item> &fields, List<Item> &all_fields, ORDER *order,
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
1181
		bool *hidden_group_fields);
1182
bool fix_inner_refs(THD *thd, List<Item> &all_fields, SELECT_LEX *select,
1183
                   Item **ref_pointer_array, ORDER *group_list= NULL);
1184

1185 1186
bool handle_select(THD *thd, LEX *lex, select_result *result,
                   ulong setup_tables_done_option);
1187 1188 1189
bool mysql_select(THD *thd, Item ***rref_pointer_array,
                  TABLE_LIST *tables, uint wild_num,  List<Item> &list,
                  COND *conds, uint og_num, ORDER *order, ORDER *group,
1190
                  Item *having, ORDER *proc_param, ulonglong select_type, 
1191 1192
                  select_result *result, SELECT_LEX_UNIT *unit, 
                  SELECT_LEX *select_lex);
1193
void free_underlaid_joins(THD *thd, SELECT_LEX *select);
1194 1195
bool mysql_explain_union(THD *thd, SELECT_LEX_UNIT *unit,
                         select_result *result);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1196 1197
int mysql_explain_select(THD *thd, SELECT_LEX *sl, char const *type,
			 select_result *result);
1198
bool mysql_union(THD *thd, LEX *lex, select_result *result,
1199
                 SELECT_LEX_UNIT *unit, ulong setup_tables_done_option);
1200 1201 1202 1203 1204
bool mysql_handle_derived(LEX *lex, bool (*processor)(THD *thd,
                                                      LEX *lex,
                                                      TABLE_LIST *table));
bool mysql_derived_prepare(THD *thd, LEX *lex, TABLE_LIST *t);
bool mysql_derived_filling(THD *thd, LEX *lex, TABLE_LIST *t);
1205
Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
1206
			Item ***copy_func, Field **from_field,
1207
                        Field **def_field,
monty@mysql.com's avatar
monty@mysql.com committed
1208
			bool group, bool modify_item,
ramil@mysql.com's avatar
ramil@mysql.com committed
1209
			bool table_cant_handle_bit_fields,
evgen@sunlight.local's avatar
evgen@sunlight.local committed
1210
                        bool make_copy_field,
monty@mysql.com's avatar
monty@mysql.com committed
1211
                        uint convert_blob_length);
1212 1213
void sp_prepare_create_field(THD *thd, Create_field *sql_field);
int prepare_create_field(Create_field *sql_field, 
monty@mysql.com's avatar
monty@mysql.com committed
1214 1215
			 uint *blob_columns, 
			 int *timestamps, int *timestamps_with_niladic,
1216
			 longlong table_flags);
1217 1218
bool mysql_create_table(THD *thd,const char *db, const char *table_name,
                        HA_CREATE_INFO *create_info,
1219 1220
                        Alter_info *alter_info,
                        bool tmp_table, uint select_field_count);
dlenev@mockturtle.local's avatar
dlenev@mockturtle.local committed
1221 1222 1223
bool mysql_create_table_no_lock(THD *thd, const char *db,
                                const char *table_name,
                                HA_CREATE_INFO *create_info,
1224 1225
                                Alter_info *alter_info,
                                bool tmp_table, uint select_field_count);
serg@serg.mylan's avatar
serg@serg.mylan committed
1226

1227 1228 1229
bool mysql_alter_table(THD *thd, char *new_db, char *new_name,
                       HA_CREATE_INFO *create_info,
                       TABLE_LIST *table_list,
1230 1231 1232
                       Alter_info *alter_info,
                       uint order_num, ORDER *order, bool ignore);
bool mysql_recreate_table(THD *thd, TABLE_LIST *table_list);
1233
bool mysql_create_like_table(THD *thd, TABLE_LIST *table,
1234
                             TABLE_LIST *src_table,
1235
                             HA_CREATE_INFO *create_info);
1236 1237 1238
bool mysql_rename_table(handlerton *base, const char *old_db,
                        const char * old_name, const char *new_db,
                        const char * new_name, uint flags);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1239 1240
bool mysql_prepare_update(THD *thd, TABLE_LIST *table_list,
                          Item **conds, uint order_num, ORDER *order);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1241 1242 1243
int mysql_update(THD *thd,TABLE_LIST *tables,List<Item> &fields,
		 List<Item> &values,COND *conds,
		 uint order_num, ORDER *order, ha_rows limit,
1244
		 enum enum_duplicates handle_duplicates, bool ignore);
1245 1246
bool mysql_multi_update(THD *thd, TABLE_LIST *table_list,
                        List<Item> *fields, List<Item> *values,
1247
                        COND *conds, ulonglong options,
1248
                        enum enum_duplicates handle_duplicates, bool ignore,
1249 1250 1251 1252
                        SELECT_LEX_UNIT *unit, SELECT_LEX *select_lex);
bool mysql_prepare_insert(THD *thd, TABLE_LIST *table_list, TABLE *table,
                          List<Item> &fields, List_item *values,
                          List<Item> &update_fields,
monty@mysql.com's avatar
monty@mysql.com committed
1253
                          List<Item> &update_values, enum_duplicates duplic,
1254 1255
                          COND **where, bool select_insert,
                          bool check_fields, bool abort_on_warning);
1256 1257
bool mysql_insert(THD *thd,TABLE_LIST *table,List<Item> &fields,
                  List<List_item> &values, List<Item> &update_fields,
1258 1259
                  List<Item> &update_values, enum_duplicates flag,
                  bool ignore);
1260 1261
int check_that_all_fields_are_given_values(THD *thd, TABLE *entry,
                                           TABLE_LIST *table_list);
1262
void prepare_triggers_for_insert_stmt(TABLE *table);
1263
int mysql_prepare_delete(THD *thd, TABLE_LIST *table_list, Item **conds);
osku@127.(none)'s avatar
osku@127.(none) committed
1264 1265 1266
bool mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds,
                  SQL_LIST *order, ha_rows rows, ulonglong options,
                  bool reset_auto_increment);
1267 1268
bool mysql_truncate(THD *thd, TABLE_LIST *table_list, bool dont_send_ok);
bool mysql_create_or_drop_trigger(THD *thd, TABLE_LIST *tables, bool create);
1269
uint create_table_def_key(THD *thd, char *key, TABLE_LIST *table_list,
1270
                          bool tmp_table);
1271
TABLE_SHARE *get_table_share(THD *thd, TABLE_LIST *table_list, char *key,
1272 1273 1274
                             uint key_length, uint db_flags, int *error);
void release_table_share(TABLE_SHARE *share, enum release_type type);
TABLE_SHARE *get_cached_table_share(const char *db, const char *table_name);
1275 1276
TABLE *open_ltable(THD *thd, TABLE_LIST *table_list, thr_lock_type update,
                   uint lock_flags);
bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
1277
TABLE *open_table(THD *thd, TABLE_LIST *table_list, MEM_ROOT* mem,
1278
		  bool *refresh, uint flags);
1279
bool name_lock_locked_table(THD *thd, TABLE_LIST *tables);
dlenev@mockturtle.local's avatar
dlenev@mockturtle.local committed
1280 1281 1282 1283 1284
bool reopen_name_locked_table(THD* thd, TABLE_LIST* table_list, bool link_in);
TABLE *table_cache_insert_placeholder(THD *thd, const char *key,
                                      uint key_length);
bool lock_table_name_if_not_cached(THD *thd, const char *db,
                                   const char *table_name, TABLE **table);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1285
TABLE *find_locked_table(THD *thd, const char *db,const char *table_name);
1286 1287 1288
void detach_merge_children(TABLE *table, bool clear_refs);
bool fix_merge_after_open(TABLE_LIST *old_child_list, TABLE_LIST **old_last,
                          TABLE_LIST *new_child_list, TABLE_LIST **new_last);
1289
bool reopen_table(TABLE *table);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1290
bool reopen_tables(THD *thd,bool get_locks,bool in_refresh);
1291
thr_lock_type read_lock_type_for_table(THD *thd, TABLE *table);
1292 1293 1294
void close_data_files_and_morph_locks(THD *thd, const char *db,
                                      const char *table_name);
void close_handle_and_leave_table_as_lock(TABLE *table);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1295
bool wait_for_tables(THD *thd);
1296
bool table_is_used(TABLE *table, bool wait_for_name_lock);
1297
TABLE *drop_locked_tables(THD *thd,const char *db, const char *table_name);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1298
void abort_locked_tables(THD *thd,const char *db, const char *table_name);
1299 1300
void execute_init_command(THD *thd, sys_var_str *init_command_var,
			  rw_lock_t *var_mutex);
1301 1302
extern Field *not_found_field;
extern Field *view_ref_found;
1303 1304 1305 1306

enum find_item_error_report_type {REPORT_ALL_ERRORS, REPORT_EXCEPT_NOT_FOUND,
				  IGNORE_ERRORS, REPORT_EXCEPT_NON_UNIQUE,
                                  IGNORE_EXCEPT_NON_UNIQUE};
1307
Field *
1308 1309 1310 1311
find_field_in_tables(THD *thd, Item_ident *item,
                     TABLE_LIST *first_table, TABLE_LIST *last_table,
                     Item **ref, find_item_error_report_type report_error,
                     bool check_privileges, bool register_tree_change);
1312
Field *
1313
find_field_in_table_ref(THD *thd, TABLE_LIST *table_list,
1314 1315 1316
                        const char *name, uint length,
                        const char *item_name, const char *db_name,
                        const char *table_name, Item **ref,
1317
                        bool check_privileges, bool allow_rowid,
1318 1319
                        uint *cached_field_index_ptr,
                        bool register_tree_change, TABLE_LIST **actual_table);
1320
Field *
1321 1322
find_field_in_table(THD *thd, TABLE *table, const char *name, uint length,
                    bool allow_rowid, uint *cached_field_index_ptr);
1323 1324 1325
Field *
find_field_in_table_sef(TABLE *table, const char *name);

1326 1327
#endif /* MYSQL_SERVER */

1328
#ifdef HAVE_OPENSSL
1329
#include <openssl/des.h>
1330 1331
struct st_des_keyblock
{
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
1332
  DES_cblock key1, key2, key3;
1333 1334 1335
};
struct st_des_keyschedule
{
1336
  DES_key_schedule ks1, ks2, ks3;
1337
};
1338
extern char *des_key_file;
1339
extern struct st_des_keyschedule des_keyschedule[10];
1340
extern uint des_default_key;
1341 1342
extern pthread_mutex_t LOCK_des_key_file;
bool load_des_key_file(const char *file_name);
1343
#endif /* HAVE_OPENSSL */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1344

1345
#ifdef MYSQL_SERVER
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1346
/* sql_do.cc */
1347
bool mysql_do(THD *thd, List<Item> &values);
monty@hundin.mysql.fi's avatar
monty@hundin.mysql.fi committed
1348

1349 1350 1351
/* sql_analyse.h */
bool append_escaped(String *to_str, String *from_str);

venu@myvenu.com's avatar
venu@myvenu.com committed
1352
/* sql_show.cc */
1353 1354
bool mysqld_show_open_tables(THD *thd,const char *wild);
bool mysqld_show_logs(THD *thd);
1355 1356
void append_identifier(THD *thd, String *packet, const char *name,
		       uint length);
1357 1358
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1359
int get_quote_char_for_identifier(THD *thd, const char *name, uint length);
1360 1361
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1362
void mysqld_list_fields(THD *thd,TABLE_LIST *table, const char *wild);
monty@mysql.com's avatar
monty@mysql.com committed
1363
int mysqld_dump_create_info(THD *thd, TABLE_LIST *table_list, int fd);
1364 1365
bool mysqld_show_create(THD *thd, TABLE_LIST *table_list);
bool mysqld_show_create_db(THD *thd, char *dbname, HA_CREATE_INFO *create);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1366 1367 1368 1369

void mysqld_list_processes(THD *thd,const char *user,bool verbose);
int mysqld_show_status(THD *thd);
int mysqld_show_variables(THD *thd,const char *wild);
1370
bool mysqld_show_storage_engines(THD *thd);
brian@grrr.local's avatar
brian@grrr.local committed
1371
bool mysqld_show_authors(THD *thd);
1372
bool mysqld_show_contributors(THD *thd);
1373 1374 1375
bool mysqld_show_privileges(THD *thd);
bool mysqld_show_column_types(THD *thd);
bool mysqld_help (THD *thd, const char *text);
1376
void calc_sum_of_all_status(STATUS_VAR *to);
1377

1378 1379 1380
void append_definer(THD *thd, String *buffer, const LEX_STRING *definer_user,
                    const LEX_STRING *definer_host);

1381 1382 1383 1384
int add_status_vars(SHOW_VAR *list);
void remove_status_vars(SHOW_VAR *list);
void init_status_vars();
void free_status_vars();
antony@ppcg5.local's avatar
antony@ppcg5.local committed
1385
void reset_status_vars();
1386

1387
/* information schema */
1388
extern LEX_STRING INFORMATION_SCHEMA_NAME;
1389 1390 1391 1392 1393
/* log tables */
extern LEX_STRING MYSQL_SCHEMA_NAME;
extern LEX_STRING GENERAL_LOG_NAME;
extern LEX_STRING SLOW_LOG_NAME;

mskold@mysql.com's avatar
mskold@mysql.com committed
1394
extern const LEX_STRING partition_keywords[];
1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405
ST_SCHEMA_TABLE *find_schema_table(THD *thd, const char* table_name);
ST_SCHEMA_TABLE *get_schema_table(enum enum_schema_tables schema_table_idx);
int prepare_schema_table(THD *thd, LEX *lex, Table_ident *table_ident,
                         enum enum_schema_tables schema_table_idx);
int make_schema_select(THD *thd,  SELECT_LEX *sel,
                       enum enum_schema_tables schema_table_idx);
int mysql_schema_table(THD *thd, LEX *lex, TABLE_LIST *table_list);
int fill_schema_user_privileges(THD *thd, TABLE_LIST *tables, COND *cond);
int fill_schema_schema_privileges(THD *thd, TABLE_LIST *tables, COND *cond);
int fill_schema_table_privileges(THD *thd, TABLE_LIST *tables, COND *cond);
int fill_schema_column_privileges(THD *thd, TABLE_LIST *tables, COND *cond);
1406 1407
bool get_schema_tables_result(JOIN *join,
                              enum enum_schema_table_state executed_place);
1408 1409
enum enum_schema_tables get_schema_table_idx(ST_SCHEMA_TABLE *schema_table);

1410 1411 1412 1413 1414 1415
inline bool is_schema_db(const char *name, size_t len)
{
  return (INFORMATION_SCHEMA_NAME.length == len &&
          !my_strcasecmp(system_charset_info,
                         INFORMATION_SCHEMA_NAME.str, name));  
}
1416

1417 1418 1419 1420 1421 1422
inline bool is_schema_db(const char *name)
{
  return !my_strcasecmp(system_charset_info,
                        INFORMATION_SCHEMA_NAME.str, name);
}

1423
/* sql_prepare.cc */
1424

1425 1426 1427
void mysqld_stmt_prepare(THD *thd, const char *packet, uint packet_length);
void mysqld_stmt_execute(THD *thd, char *packet, uint packet_length);
void mysqld_stmt_close(THD *thd, char *packet);
1428 1429 1430
void mysql_sql_stmt_prepare(THD *thd);
void mysql_sql_stmt_execute(THD *thd);
void mysql_sql_stmt_close(THD *thd);
1431 1432
void mysqld_stmt_fetch(THD *thd, char *packet, uint packet_length);
void mysqld_stmt_reset(THD *thd, char *packet);
1433
void mysql_stmt_get_longdata(THD *thd, char *pos, ulong packet_length);
1434
void reinit_stmt_before_use(THD *thd, LEX *lex);
1435

1436
/* sql_handler.cc */
monty@mysql.com's avatar
monty@mysql.com committed
1437
bool mysql_ha_open(THD *thd, TABLE_LIST *tables, bool reopen);
bell@sanja.is.com.ua's avatar
merge  
bell@sanja.is.com.ua committed
1438
bool mysql_ha_close(THD *thd, TABLE_LIST *tables);
1439 1440
bool mysql_ha_read(THD *, TABLE_LIST *,enum enum_ha_read_modes,char *,
                   List<Item> *,enum ha_rkey_function,Item *,ha_rows,ha_rows);
1441
void mysql_ha_flush(THD *thd);
1442
void mysql_ha_rm_tables(THD *thd, TABLE_LIST *tables, bool is_locked);
1443
void mysql_ha_cleanup(THD *thd);
1444

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1445
/* sql_base.cc */
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1446
#define TMP_TABLE_KEY_EXTRA 8
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1447
void set_item_name(Item *item,char *pos,uint length);
1448
bool add_field_to_list(THD *thd, LEX_STRING *field_name, enum enum_field_types type,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1449
		       char *length, char *decimal,
1450
		       uint type_modifier,
1451
		       Item *default_value, Item *on_update_value,
bar@bar.mysql.r18.ru's avatar
bar@bar.mysql.r18.ru committed
1452
		       LEX_STRING *comment,
1453 1454
		       char *change, List<String> *interval_list,
		       CHARSET_INFO *cs,
1455
		       uint uint_geom_type);
1456
Create_field * new_create_field(THD *thd, char *field_name, enum_field_types type,
1457 1458 1459 1460 1461 1462
				char *length, char *decimals,
				uint type_modifier, 
				Item *default_value, Item *on_update_value,
				LEX_STRING *comment, char *change, 
				List<String> *interval_list, CHARSET_INFO *cs,
				uint uint_geom_type);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1463
void store_position_for_column(const char *name);
monty@mysql.com's avatar
monty@mysql.com committed
1464
bool add_to_list(THD *thd, SQL_LIST &list,Item *group,bool asc);
1465 1466 1467
bool push_new_name_resolution_context(THD *thd,
                                      TABLE_LIST *left_op,
                                      TABLE_LIST *right_op);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1468
void add_join_on(TABLE_LIST *b,Item *expr);
1469 1470
void add_join_natural(TABLE_LIST *a,TABLE_LIST *b,List<String> *using_fields,
                      SELECT_LEX *lex);
1471
bool add_proc_to_list(THD *thd, Item *item);
dlenev@mockturtle.local's avatar
dlenev@mockturtle.local committed
1472 1473 1474
void unlink_open_table(THD *thd, TABLE *find, bool unlock);
void drop_open_table(THD *thd, TABLE *table, const char *db_name,
                     const char *table_name);
1475 1476 1477
void update_non_unique_table_error(TABLE_LIST *update,
                                   const char *operation,
                                   TABLE_LIST *duplicate);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1478 1479

SQL_SELECT *make_select(TABLE *head, table_map const_tables,
monty@mysql.com's avatar
monty@mysql.com committed
1480 1481
			table_map read_tables, COND *conds,
                        bool allow_null_cond,  int *error);
1482
extern Item **not_found_item;
igor@olga.mysql.com's avatar
igor@olga.mysql.com committed
1483

1484 1485 1486 1487 1488 1489 1490
/*
  A set of constants used for checking non aggregated fields and sum
  functions mixture in the ONLY_FULL_GROUP_BY_MODE.
*/
#define NON_AGG_FIELD_USED  1
#define SUM_FUNC_USED       2

igor@olga.mysql.com's avatar
igor@olga.mysql.com committed
1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509
/*
  This enumeration type is used only by the function find_item_in_list
  to return the info on how an item has been resolved against a list
  of possibly aliased items.
  The item can be resolved: 
   - against an alias name of the list's element (RESOLVED_AGAINST_ALIAS)
   - against non-aliased field name of the list  (RESOLVED_WITH_NO_ALIAS)
   - against an aliased field name of the list   (RESOLVED_BEHIND_ALIAS)
   - ignoring the alias name in cases when SQL requires to ignore aliases
     (e.g. when the resolved field reference contains a table name or
     when the resolved item is an expression)   (RESOLVED_IGNORING_ALIAS)    
*/
enum enum_resolution_type {
  NOT_RESOLVED=0,
  RESOLVED_IGNORING_ALIAS,
  RESOLVED_BEHIND_ALIAS,
  RESOLVED_WITH_NO_ALIAS,
  RESOLVED_AGAINST_ALIAS
};
1510
Item ** find_item_in_list(Item *item, List<Item> &items, uint *counter,
1511
                          find_item_error_report_type report_error,
igor@olga.mysql.com's avatar
igor@olga.mysql.com committed
1512
                          enum_resolution_type *resolution);
1513
bool get_key_map_from_key_list(key_map *map, TABLE *table,
1514
                               List<String> *index_list);
1515
bool insert_fields(THD *thd, Name_resolution_context *context,
1516
		   const char *db_name, const char *table_name,
1517 1518
                   List_iterator<Item> *it, bool any_privileges);
bool setup_tables(THD *thd, Name_resolution_context *context,
1519
                  List<TABLE_LIST> *from_clause, TABLE_LIST *tables,
1520
                  TABLE_LIST **leaves, bool select_insert);
1521 1522 1523 1524 1525 1526
bool setup_tables_and_check_access(THD *thd, 
                                   Name_resolution_context *context,
                                   List<TABLE_LIST> *from_clause, 
                                   TABLE_LIST *tables, 
                                   TABLE_LIST **leaves, 
                                   bool select_insert,
1527
                                   ulong want_access_first,
1528
                                   ulong want_access);
1529 1530
int setup_wild(THD *thd, TABLE_LIST *tables, List<Item> &fields,
	       List<Item> *sum_func_list, uint wild_num);
1531
bool setup_fields(THD *thd, Item** ref_pointer_array,
1532
                  List<Item> &item, enum_mark_columns mark_used_columns,
1533
                  List<Item> *sum_func_list, bool allow_sum_func);
1534
inline bool setup_fields_with_no_wrap(THD *thd, Item **ref_pointer_array,
1535 1536 1537 1538
                                      List<Item> &item,
                                      enum_mark_columns mark_used_columns,
                                      List<Item> *sum_func_list,
                                      bool allow_sum_func)
1539 1540 1541
{
  bool res;
  thd->lex->select_lex.no_wrap_view_item= TRUE;
1542
  res= setup_fields(thd, ref_pointer_array, item, mark_used_columns, sum_func_list,
1543 1544 1545 1546
                    allow_sum_func);
  thd->lex->select_lex.no_wrap_view_item= FALSE;
  return res;
}
1547 1548
int setup_conds(THD *thd, TABLE_LIST *tables, TABLE_LIST *leaves,
		COND **conds);
1549 1550
int setup_ftfuncs(SELECT_LEX* select);
int init_ftfuncs(THD *thd, SELECT_LEX* select, bool no_order);
1551 1552
void wait_for_condition(THD *thd, pthread_mutex_t *mutex,
                        pthread_cond_t *cond);
1553
int open_tables(THD *thd, TABLE_LIST **tables, uint *counter, uint flags);
1554
/* open_and_lock_tables with optional derived handling */
1555
int open_and_lock_tables_derived(THD *thd, TABLE_LIST *tables, bool derived);
1556
/* simple open_and_lock_tables without derived handling */
1557
inline int simple_open_n_lock_tables(THD *thd, TABLE_LIST *tables)
1558 1559 1560 1561
{
  return open_and_lock_tables_derived(thd, tables, FALSE);
}
/* open_and_lock_tables with derived handling */
1562
inline int open_and_lock_tables(THD *thd, TABLE_LIST *tables)
1563 1564 1565 1566 1567 1568
{
  return open_and_lock_tables_derived(thd, tables, TRUE);
}
/* simple open_and_lock_tables without derived handling for single table */
TABLE *open_n_lock_single_table(THD *thd, TABLE_LIST *table_l,
                                thr_lock_type lock_type);
1569
bool open_normal_and_derived_tables(THD *thd, TABLE_LIST *tables, uint flags);
1570
int lock_tables(THD *thd, TABLE_LIST *tables, uint counter, bool *need_reopen);
1571
int decide_logging_format(THD *thd, TABLE_LIST *tables);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1572 1573
TABLE *open_temporary_table(THD *thd, const char *path, const char *db,
			    const char *table_name, bool link_in_list);
1574
bool rm_temporary_table(handlerton *base, char *path);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1575 1576
void free_io_cache(TABLE *entry);
void intern_close_table(TABLE *entry);
1577
bool close_thread_table(THD *thd, TABLE **table_ptr);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1578
void close_temporary_tables(THD *thd);
1579
void close_tables_for_reopen(THD *thd, TABLE_LIST **tables);
1580
TABLE_LIST *find_table_in_list(TABLE_LIST *table,
1581
                               TABLE_LIST *TABLE_LIST::*link,
1582 1583
                               const char *db_name,
                               const char *table_name);
1584 1585
TABLE_LIST *unique_table(THD *thd, TABLE_LIST *table, TABLE_LIST *table_list,
                         bool check_alias);
1586 1587
TABLE *find_temporary_table(THD *thd, const char *db, const char *table_name);
TABLE *find_temporary_table(THD *thd, TABLE_LIST *table_list);
1588
int drop_temporary_table(THD *thd, TABLE_LIST *table_list);
1589 1590 1591
void close_temporary_table(THD *thd, TABLE *table, bool free_share,
                           bool delete_table);
void close_temporary(TABLE *table, bool free_share, bool delete_table);
1592
bool rename_temporary_table(THD* thd, TABLE *table, const char *new_db,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1593
			    const char *table_name);
1594
void remove_db_from_cache(const char *db);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1595
void flush_tables();
1596
bool is_equal(const LEX_STRING *a, const LEX_STRING *b);
1597
char *make_default_log_name(char *buff,const char* log_ext);
monty@mysql.com's avatar
monty@mysql.com committed
1598

1599 1600
#ifdef WITH_PARTITION_STORAGE_ENGINE
uint fast_alter_partition_table(THD *thd, TABLE *table,
1601
                                Alter_info *alter_info,
1602 1603
                                HA_CREATE_INFO *create_info,
                                TABLE_LIST *table_list,
1604
                                char *db,
1605 1606
                                const char *table_name,
                                uint fast_alter_partition);
1607 1608
uint set_part_state(Alter_info *alter_info, partition_info *tab_part_info,
                    enum partition_state part_state);
1609
uint prep_alter_part_table(THD *thd, TABLE *table, Alter_info *alter_info,
1610 1611 1612 1613 1614 1615
                           HA_CREATE_INFO *create_info,
                           handlerton *old_db_type,
                           bool *partition_changed,
                           uint *fast_alter_partition);
#endif

monty@mysql.com's avatar
monty@mysql.com committed
1616
/* bits for last argument to remove_table_from_cache() */
1617 1618 1619 1620
#define RTFC_NO_FLAG                0x0000
#define RTFC_OWNED_BY_THD_FLAG      0x0001
#define RTFC_WAIT_OTHER_THREAD_FLAG 0x0002
#define RTFC_CHECK_KILLED_FLAG      0x0004
1621
bool remove_table_from_cache(THD *thd, const char *db, const char *table,
mronstrom@mysql.com's avatar
mronstrom@mysql.com committed
1622
                             uint flags);
monty@mysql.com's avatar
monty@mysql.com committed
1623

1624 1625 1626 1627 1628 1629 1630 1631 1632 1633
#define NORMAL_PART_NAME 0
#define TEMP_PART_NAME 1
#define RENAMED_PART_NAME 2
void create_partition_name(char *out, const char *in1,
                           const char *in2, uint name_variant,
                           bool translate);
void create_subpartition_name(char *out, const char *in1,
                              const char *in2, const char *in3,
                              uint name_variant);

1634 1635
typedef struct st_lock_param_type
{
1636
  TABLE_LIST table_list;
1637 1638 1639 1640
  ulonglong copied;
  ulonglong deleted;
  THD *thd;
  HA_CREATE_INFO *create_info;
1641
  Alter_info *alter_info;
1642 1643 1644 1645
  TABLE *table;
  KEY *key_info_buffer;
  const char *db;
  const char *table_name;
1646
  uchar *pack_frm_data;
1647 1648 1649
  enum thr_lock_type old_lock_type;
  uint key_count;
  uint db_options;
1650
  size_t pack_frm_len;
1651
  partition_info *part_info;
1652 1653 1654
} ALTER_PARTITION_PARAM_TYPE;

void mem_alloc_error(size_t size);
1655

1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
enum ddl_log_entry_code
{
  /*
    DDL_LOG_EXECUTE_CODE:
      This is a code that indicates that this is a log entry to
      be executed, from this entry a linked list of log entries
      can be found and executed.
    DDL_LOG_ENTRY_CODE:
      An entry to be executed in a linked list from an execute log
      entry.
    DDL_IGNORE_LOG_ENTRY_CODE:
      An entry that is to be ignored
  */
  DDL_LOG_EXECUTE_CODE = 'e',
  DDL_LOG_ENTRY_CODE = 'l',
  DDL_IGNORE_LOG_ENTRY_CODE = 'i'
};

enum ddl_log_action_code
{
  /*
    The type of action that a DDL_LOG_ENTRY_CODE entry is to
    perform.
    DDL_LOG_DELETE_ACTION:
      Delete an entity
    DDL_LOG_RENAME_ACTION:
      Rename an entity
    DDL_LOG_REPLACE_ACTION:
      Rename an entity after removing the previous entry with the
      new name, that is replace this entry.
  */
  DDL_LOG_DELETE_ACTION = 'd',
  DDL_LOG_RENAME_ACTION = 'r',
  DDL_LOG_REPLACE_ACTION = 's'
};


typedef struct st_ddl_log_entry
1694 1695 1696
{
  const char *name;
  const char *from_name;
1697
  const char *handler_name;
1698
  uint next_entry;
1699
  uint entry_pos;
1700 1701
  enum ddl_log_entry_code entry_type;
  enum ddl_log_action_code action_type;
1702 1703 1704 1705 1706 1707
  /*
    Most actions have only one phase. REPLACE does however have two
    phases. The first phase removes the file with the new name if
    there was one there before and the second phase renames the
    old name to the new name.
  */
1708
  char phase;
1709
} DDL_LOG_ENTRY;
1710

1711
typedef struct st_ddl_log_memory_entry
1712 1713
{
  uint entry_pos;
1714 1715 1716 1717
  struct st_ddl_log_memory_entry *next_log_entry;
  struct st_ddl_log_memory_entry *prev_log_entry;
  struct st_ddl_log_memory_entry *next_active_log_entry;
} DDL_LOG_MEMORY_ENTRY;
1718

1719

1720 1721 1722
bool write_ddl_log_entry(DDL_LOG_ENTRY *ddl_log_entry,
                           DDL_LOG_MEMORY_ENTRY **active_entry);
bool write_execute_ddl_log_entry(uint first_entry,
1723
                                   bool complete,
1724 1725 1726 1727 1728 1729
                                   DDL_LOG_MEMORY_ENTRY **active_entry);
bool deactivate_ddl_log_entry(uint entry_no);
void release_ddl_log_memory_entry(DDL_LOG_MEMORY_ENTRY *log_entry);
bool sync_ddl_log();
void release_ddl_log();
void execute_ddl_log_recovery();
1730
bool execute_ddl_log_entry(THD *thd, uint first_entry);
1731 1732

extern pthread_mutex_t LOCK_gdl;
1733

1734 1735
#define WFRM_WRITE_SHADOW 1
#define WFRM_INSTALL_SHADOW 2
1736
#define WFRM_PACK_FRM 4
1737
#define WFRM_KEEP_SHARE 8
1738
bool mysql_write_frm(ALTER_PARTITION_PARAM_TYPE *lpt, uint flags);
1739
int abort_and_upgrade_lock(ALTER_PARTITION_PARAM_TYPE *lpt);
1740 1741 1742
void close_open_tables_and_downgrade(ALTER_PARTITION_PARAM_TYPE *lpt);
void mysql_wait_completed_table(ALTER_PARTITION_PARAM_TYPE *lpt, TABLE *my_table);

1743 1744 1745 1746 1747 1748
/* Functions to work with system tables. */
bool open_system_tables_for_read(THD *thd, TABLE_LIST *table_list,
                                 Open_tables_state *backup);
void close_system_tables(THD *thd, Open_tables_state *backup);
TABLE *open_system_table_for_update(THD *thd, TABLE_LIST *one_table);

1749 1750 1751 1752
TABLE *open_performance_schema_table(THD *thd, TABLE_LIST *one_table,
                                     Open_tables_state *backup);
void close_performance_schema_table(THD *thd, Open_tables_state *backup);

1753 1754
bool close_cached_tables(THD *thd, TABLE_LIST *tables, bool have_lock,
                         bool wait_for_refresh, bool wait_for_placeholders);
1755 1756 1757
bool close_cached_connection_tables(THD *thd, bool wait_for_refresh,
                                    LEX_STRING *connect_string,
                                    bool have_lock = FALSE);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1758
void copy_field_from_tmp_record(Field *field,int offset);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1759 1760
bool fill_record(THD *thd, Field **field, List<Item> &values,
                 bool ignore_errors);
1761 1762 1763 1764 1765 1766 1767 1768 1769 1770
bool fill_record_n_invoke_before_triggers(THD *thd, List<Item> &fields,
                                          List<Item> &values,
                                          bool ignore_errors,
                                          Table_triggers_list *triggers,
                                          enum trg_event_type event);
bool fill_record_n_invoke_before_triggers(THD *thd, Field **field,
                                          List<Item> &values,
                                          bool ignore_errors,
                                          Table_triggers_list *triggers,
                                          enum trg_event_type event);
1771
OPEN_TABLE_LIST *list_open_tables(THD *thd, const char *db, const char *wild);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1772

1773 1774 1775 1776
inline TABLE_LIST *find_table_in_global_list(TABLE_LIST *table,
                                             const char *db_name,
                                             const char *table_name)
{
1777
  return find_table_in_list(table, &TABLE_LIST::next_global,
1778 1779 1780 1781 1782 1783 1784
                            db_name, table_name);
}

inline TABLE_LIST *find_table_in_local_list(TABLE_LIST *table,
                                            const char *db_name,
                                            const char *table_name)
{
1785
  return find_table_in_list(table, &TABLE_LIST::next_local,
1786 1787 1788 1789
                            db_name, table_name);
}


bk@work.mysql.com's avatar
bk@work.mysql.com committed
1790 1791 1792 1793
/* sql_calc.cc */
bool eval_const_cond(COND *cond);

/* sql_load.cc */
1794
int mysql_load(THD *thd, sql_exchange *ex, TABLE_LIST *table_list,
1795 1796 1797
	        List<Item> &fields_vars, List<Item> &set_fields,
                List<Item> &set_values_list,
                enum enum_duplicates handle_duplicates, bool ignore,
1798
                bool local_file);
1799
int write_record(THD *thd, TABLE *table, COPY_INFO *info);
1800 1801

/* sql_manager.cc */
1802 1803 1804
extern bool volatile  mqh_used;
void start_handle_manager();
void stop_handle_manager();
1805 1806
bool mysql_manager_submit(void (*action)());

1807

bk@work.mysql.com's avatar
bk@work.mysql.com committed
1808 1809
/* sql_test.cc */
#ifndef DBUG_OFF
1810
void print_where(COND *cond,const char *info, enum_query_type query_type);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1811
void print_cached_tables(void);
1812
void TEST_filesort(SORT_FIELD *sortorder,uint s_length);
1813 1814
void print_plan(JOIN* join,uint idx, double record_count, double read_time,
                double current_read_time, const char *info);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1815
#endif
1816
void mysql_print_status();
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1817
/* key.cc */
1818
int find_ref_key(KEY *key, uint key_count, uchar *record, Field *field,
1819
                 uint *key_length, uint *keypart);
1820 1821
void key_copy(uchar *to_key, uchar *from_record, KEY *key_info, uint key_length);
void key_restore(uchar *to_record, uchar *from_key, KEY *key_info,
1822
                 uint key_length);
1823
bool key_cmp_if_same(TABLE *form,const uchar *key,uint index,uint key_length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1824
void key_unpack(String *to,TABLE *form,uint index);
1825
bool is_key_used(TABLE *table, uint idx, const MY_BITMAP *fields);
1826
int key_cmp(KEY_PART_INFO *key_part, const uchar *key, uint key_length);
1827
extern "C" int key_rec_cmp(void *key_info, uchar *a, uchar *b);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1828

1829
bool init_errmessage(void);
1830
#endif /* MYSQL_SERVER */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1831
void sql_perror(const char *message);
rburnett@build.mysql.com's avatar
rburnett@build.mysql.com committed
1832

1833
bool fn_format_relative_to_data_home(char * to, const char *name,
1834
				     const char *dir, const char *extension);
1835 1836 1837 1838 1839 1840
/**
  Test a file path to determine if the path is compatible with the secure file
  path restriction.
*/
bool is_secure_file_path(char *path);

1841
#ifdef MYSQL_SERVER
1842 1843
File open_binlog(IO_CACHE *log, const char *log_file_name,
                 const char **errmsg);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
1844

1845
/* mysqld.cc */
1846
extern void MYSQLerror(const char*);
1847
void refresh_status(THD *thd);
1848
my_bool mysql_rm_tmp_tables(void);
1849 1850 1851 1852 1853
void handle_connection_in_main_thread(THD *thd);
void create_thread_to_handle_connection(THD *thd);
void unlink_thd(THD *thd);
bool one_thread_per_connection_end(THD *thd, bool put_in_cache);
void flush_thread_cache();
1854

1855 1856
/* item_func.cc */
extern bool check_reserved_words(LEX_STRING *name);
1857
extern enum_field_types agg_field_type(Item **items, uint nitems);
1858

1859
/* strfunc.cc */
1860
ulonglong find_set(TYPELIB *lib, const char *x, uint length, CHARSET_INFO *cs,
1861
		   char **err_pos, uint *err_len, bool *set_warning);
1862
ulonglong find_set_from_flags(TYPELIB *lib, uint default_name,
1863 1864 1865
                              ulonglong cur_set, ulonglong default_set,
                              const char *str, uint length, CHARSET_INFO *cs,
                              char **err_pos, uint *err_len, bool *set_warning);
1866 1867 1868 1869
uint find_type(const TYPELIB *lib, const char *find, uint length,
               bool part_match);
uint find_type2(const TYPELIB *lib, const char *find, uint length,
                CHARSET_INFO *cs);
1870
void unhex_type2(TYPELIB *lib);
1871 1872
uint check_word(TYPELIB *lib, const char *val, const char *end,
		const char **end_of_word);
1873
int find_string_in_array(LEX_STRING * const haystack, LEX_STRING * const needle,
1874
                         CHARSET_INFO * const cs);
1875

1876

1877
bool is_keyword(const char *name, uint len);
hf@deer.(none)'s avatar
hf@deer.(none) committed
1878

1879
#define MY_DB_OPT_FILE "db.opt"
1880 1881
bool my_database_names_init(void);
void my_database_names_free(void);
1882
bool check_db_dir_existence(const char *db_name);
1883
bool load_db_opt(THD *thd, const char *path, HA_CREATE_INFO *create);
1884 1885
bool load_db_opt_by_name(THD *thd, const char *db_name,
                         HA_CREATE_INFO *db_create_info);
1886
CHARSET_INFO *get_default_db_collation(THD *thd, const char *db_name);
1887 1888
bool my_dbopt_init(void);
void my_dbopt_cleanup(void);
1889 1890
extern int creating_database; // How many database locks are made
extern int creating_table;    // How many mysql_create_table() are running
hf@deer.(none)'s avatar
hf@deer.(none) committed
1891

1892 1893 1894 1895
/*
  External variables
*/

1896
extern time_t server_start_time, flush_status_time;
1897 1898
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1899
extern uint mysql_data_home_len;
1900 1901 1902 1903 1904 1905

extern MYSQL_PLUGIN_IMPORT char  *mysql_data_home;
extern char server_version[SERVER_VERSION_LENGTH];
extern MYSQL_PLUGIN_IMPORT char mysql_real_data_home[];
extern char mysql_unpacked_real_data_home[];

1906
extern CHARSET_INFO *character_set_filesystem;
1907 1908 1909
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
extern char *opt_mysql_tmpdir, mysql_charsets_dir[],
1910
            def_ft_boolean_syntax[sizeof(ft_boolean_syntax)];
1911
extern int mysql_unpacked_real_data_home_len;
1912
#define mysql_tmpdir (my_tmpdir(&mysql_tmpdir_list))
1913
extern MYSQL_PLUGIN_IMPORT MY_TMPDIR mysql_tmpdir_list;
andrey@example.com's avatar
andrey@example.com committed
1914
extern const LEX_STRING command_name[];
1915 1916 1917 1918 1919

extern const char *first_keyword, *delayed_user, *binary_keyword;
extern MYSQL_PLUGIN_IMPORT const char  *my_localhost;
extern MYSQL_PLUGIN_IMPORT const char **errmesg;			/* Error messages */

1920
extern const char *myisam_recover_options_str;
1921
extern const char *in_left_expr_name, *in_additional_cond, *in_having_cond;
1922 1923
extern const char * const TRG_EXT;
extern const char * const TRN_EXT;
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
1924 1925 1926 1927 1928 1929
extern Eq_creator eq_creator;
extern Ne_creator ne_creator;
extern Gt_creator gt_creator;
extern Lt_creator lt_creator;
extern Ge_creator ge_creator;
extern Le_creator le_creator;
1930 1931 1932
extern char language[FN_REFLEN];
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1933 1934
extern MYSQL_PLUGIN_IMPORT char reg_ext[FN_EXTLEN];
extern MYSQL_PLUGIN_IMPORT uint reg_ext_length;
1935 1936
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
1937
extern char glob_hostname[FN_REFLEN], mysql_home[FN_REFLEN];
1938
extern char pidfile_name[FN_REFLEN], system_time_zone[30], *opt_init_file;
1939
extern char log_error_file[FN_REFLEN], *opt_tc_log_file;
1940
extern ulonglong log_10_int[20];
1941
extern ulonglong keybuff_size;
1942
extern ulonglong thd_startup_options;
dlenev@mockturtle.local's avatar
dlenev@mockturtle.local committed
1943
extern ulong thread_id;
1944
extern ulong binlog_cache_use, binlog_cache_disk_use;
1945 1946 1947 1948 1949
extern ulong aborted_threads,aborted_connects;
extern ulong delayed_insert_timeout;
extern ulong delayed_insert_limit, delayed_queue_size;
extern ulong delayed_insert_threads, delayed_insert_writes;
extern ulong delayed_rows_in_use,delayed_insert_errors;
1950 1951
extern ulong slave_open_temp_tables;
extern ulong query_cache_size, query_cache_min_res_unit;
1952
extern ulong slow_launch_threads, slow_launch_time;
1953
extern ulong table_cache_size, table_def_size;
1954 1955
extern MYSQL_PLUGIN_IMPORT ulong max_connections;
extern ulong max_connect_errors, connect_timeout;
1956
extern ulong slave_net_timeout, slave_trans_retries;
1957
extern uint max_user_connections;
1958
extern ulong what_to_log,flush_time;
1959
extern ulong query_buff_size;
1960
extern ulong max_prepared_stmt_count, prepared_stmt_count;
1961 1962
extern ulong binlog_cache_size, open_files_limit;
extern ulonglong max_binlog_cache_size;
1963
extern ulong max_binlog_size, max_relay_log_size;
1964
extern ulong opt_binlog_rows_event_max_size;
1965
extern ulong rpl_recovery_rank, thread_cache_size, thread_pool_size;
1966
extern ulong back_log;
1967 1968
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1969
extern ulong MYSQL_PLUGIN_IMPORT specialflag;
1970 1971 1972
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
extern ulong current_pid;
1973
extern ulong expire_logs_days, sync_binlog_period, sync_binlog_counter;
1974 1975
extern ulong opt_tc_log_size, tc_log_max_pages_used, tc_log_page_size;
extern ulong tc_log_page_waits;
1976
extern my_bool relay_log_purge, opt_innodb_safe_binlog, opt_innodb;
1977
extern uint test_flags,select_errors,ha_open_options;
1978
extern uint protocol_version, mysqld_port, dropping_tables;
1979 1980 1981
extern uint delay_key_write_options;
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1982
extern MYSQL_PLUGIN_IMPORT uint lower_case_table_names;
1983 1984
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
1985 1986
extern bool opt_endinfo, using_udf_functions;
extern my_bool locked_in_memory;
1987 1988 1989
extern bool opt_using_transactions;
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1990
extern MYSQL_PLUGIN_IMPORT bool mysqld_embedded;
1991 1992
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
1993
extern bool opt_large_files, server_id_supplied;
1994 1995
extern bool opt_update_log, opt_bin_log, opt_error_log;
extern my_bool opt_log, opt_slow_log;
monty@mysql.com's avatar
monty@mysql.com committed
1996
extern ulong log_output_options;
1997
extern my_bool opt_log_queries_not_using_indexes;
1998
extern bool opt_disable_networking, opt_skip_show_db;
1999
extern bool opt_skip_name_resolve;
2000
extern bool opt_ignore_builtin_innodb;
2001
extern my_bool opt_character_set_client_handshake;
2002
extern bool volatile abort_loop, shutdown_in_progress;
2003
extern bool in_bootstrap;
2004
extern uint volatile thread_count, thread_running, global_read_lock;
2005
extern uint connection_count;
2006
extern my_bool opt_sql_bin_update, opt_safe_user_create, opt_no_mix_types;
vtkachenko@quadxeon.mysql.com's avatar
vtkachenko@quadxeon.mysql.com committed
2007
extern my_bool opt_safe_show_db, opt_local_infile, opt_myisam_use_mmap;
2008
extern my_bool opt_slave_compressed_protocol, use_temp_pool;
2009
extern ulong slave_exec_mode_options;
2010
extern my_bool opt_readonly, lower_case_file_system;
2011
extern my_bool opt_enable_named_pipe, opt_sync_frm, opt_allow_suspicious_udfs;
2012
extern my_bool opt_secure_auth;
2013
extern char* opt_secure_file_priv;
2014
extern my_bool opt_log_slow_admin_statements, opt_log_slow_slave_statements;
2015
extern my_bool sp_automatic_privileges, opt_noacl;
2016
extern my_bool opt_old_style_user_limits, trust_function_creators;
guilhem@mysql.com's avatar
guilhem@mysql.com committed
2017
extern uint opt_crash_binlog_innodb;
2018
extern char *shared_memory_base_name, *mysqld_unix_port;
kent@mysql.com's avatar
kent@mysql.com committed
2019
extern my_bool opt_enable_shared_memory;
2020
extern char *default_tz_name;
2021 2022
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
2023 2024
extern my_bool opt_large_pages;
extern uint opt_large_page_size;
2025 2026
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
2027 2028
extern char *opt_logname, *opt_slow_logname;
extern const char *log_output_str;
2029

2030
extern MYSQL_PLUGIN_IMPORT MYSQL_BIN_LOG mysql_bin_log;
2031 2032
extern LOGGER logger;
extern TABLE_LIST general_log, slow_log;
2033
extern FILE *bootstrap_file;
2034
extern int bootstrap_error;
2035
extern FILE *stderror_file;
2036
extern pthread_key(MEM_ROOT**,THR_MALLOC);
2037
extern pthread_mutex_t LOCK_mysql_create_db,LOCK_Acl,LOCK_open, LOCK_lock_db,
2038
       LOCK_mapped_file,LOCK_user_locks, LOCK_status,
2039
       LOCK_error_log, LOCK_delayed_insert, LOCK_uuid_generator,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2040
       LOCK_delayed_status, LOCK_delayed_create, LOCK_crypt, LOCK_timezone,
2041
       LOCK_slave_list, LOCK_active_mi, LOCK_manager, LOCK_global_read_lock,
2042
       LOCK_global_system_variables, LOCK_user_conn,
2043
       LOCK_prepared_stmt_count,
2044
       LOCK_bytes_sent, LOCK_bytes_received, LOCK_connection_count;
2045
extern MYSQL_PLUGIN_IMPORT pthread_mutex_t LOCK_thread_count;
2046 2047 2048
#ifdef HAVE_OPENSSL
extern pthread_mutex_t LOCK_des_key_file;
#endif
2049 2050 2051
extern pthread_mutex_t LOCK_server_started;
extern pthread_cond_t COND_server_started;
extern int mysqld_server_started;
gluh@gluh.mysql.r18.ru's avatar
gluh@gluh.mysql.r18.ru committed
2052
extern rw_lock_t LOCK_grant, LOCK_sys_init_connect, LOCK_sys_init_slave;
antony@ppcg5.local's avatar
antony@ppcg5.local committed
2053
extern rw_lock_t LOCK_system_variables_hash;
2054
extern pthread_cond_t COND_refresh, COND_thread_count, COND_manager;
monty@mysql.com's avatar
monty@mysql.com committed
2055
extern pthread_cond_t COND_global_read_lock;
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2056
extern pthread_attr_t connection_attrib;
2057
extern I_List<THD> threads;
2058
extern I_List<NAMED_LIST> key_caches;
2059
extern MY_BITMAP temp_pool;
hf@deer.(none)'s avatar
SCRUM  
hf@deer.(none) committed
2060
extern String my_empty_string;
2061
extern const String my_null_string;
antony@ppcg5.local's avatar
antony@ppcg5.local committed
2062
extern SHOW_VAR status_vars[];
2063 2064
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
2065
extern MYSQL_PLUGIN_IMPORT struct system_variables global_system_variables;
2066 2067
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
2068
extern struct system_variables max_system_variables;
2069
extern struct system_status_var global_status_var;
2070
extern struct rand_struct sql_rand;
2071

2072 2073
extern const char *opt_date_time_formats[];
extern KNOWN_DATE_TIME_FORMAT known_date_time_formats[];
2074

2075
extern String null_string;
2076
extern HASH open_cache, lock_db_cache;
2077 2078 2079
extern TABLE *unused_tables;
extern const char* any_db;
extern struct my_option my_long_options[];
2080
extern const LEX_STRING view_type;
2081 2082 2083
extern scheduler_functions thread_scheduler;
extern TYPELIB thread_handling_typelib;
extern uint8 uc_update_queries[SQLCOM_END+1];
2084
extern uint sql_command_flags[];
2085
extern TYPELIB log_output_typelib;
2086

2087
/* optional things, have_* variables */
2088
extern SHOW_COMP_OPTION have_community_features;
brian@zim.(none)'s avatar
brian@zim.(none) committed
2089

2090 2091 2092
extern handlerton *partition_hton;
extern handlerton *myisam_hton;
extern handlerton *heap_hton;
2093

2094
extern SHOW_COMP_OPTION have_ssl, have_symlink, have_dlopen;
2095
extern SHOW_COMP_OPTION have_query_cache;
2096
extern SHOW_COMP_OPTION have_geometry, have_rtree_keys;
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
2097
extern SHOW_COMP_OPTION have_crypt;
2098
extern SHOW_COMP_OPTION have_compress;
2099

2100 2101 2102
extern int orig_argc;
extern char **orig_argv;
extern const char *load_default_groups[];
2103

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2104 2105 2106 2107
#ifndef __WIN__
extern pthread_t signal_thread;
#endif

2108
#ifdef HAVE_OPENSSL
2109
extern struct st_VioSSLFd * ssl_acceptor_fd;
2110 2111
#endif /* HAVE_OPENSSL */

2112 2113
MYSQL_LOCK *mysql_lock_tables(THD *thd, TABLE **table, uint count,
                              uint flags, bool *need_reopen);
2114
/* mysql_lock_tables() and open_table() flags bits */
2115 2116
#define MYSQL_LOCK_IGNORE_GLOBAL_READ_LOCK      0x0001
#define MYSQL_LOCK_IGNORE_FLUSH                 0x0002
2117
#define MYSQL_LOCK_NOTIFY_IF_NEED_REOPEN        0x0004
dlenev@mockturtle.local's avatar
dlenev@mockturtle.local committed
2118
#define MYSQL_OPEN_TEMPORARY_ONLY               0x0008
2119
#define MYSQL_LOCK_IGNORE_GLOBAL_READ_ONLY      0x0010
2120
#define MYSQL_LOCK_PERF_SCHEMA                  0x0020
2121

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2122 2123 2124
void mysql_unlock_tables(THD *thd, MYSQL_LOCK *sql_lock);
void mysql_unlock_read_tables(THD *thd, MYSQL_LOCK *sql_lock);
void mysql_unlock_some_tables(THD *thd, TABLE **table,uint count);
2125 2126
void mysql_lock_remove(THD *thd, MYSQL_LOCK *locked,TABLE *table,
                       bool always_unlock);
2127 2128 2129
void mysql_lock_abort(THD *thd, TABLE *table, bool upgrade_lock);
void mysql_lock_downgrade_write(THD *thd, TABLE *table,
                                thr_lock_type new_lock_type);
mronstrom@mysql.com's avatar
mronstrom@mysql.com committed
2130
bool mysql_lock_abort_for_thread(THD *thd, TABLE *table);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2131
MYSQL_LOCK *mysql_lock_merge(MYSQL_LOCK *a,MYSQL_LOCK *b);
2132 2133
TABLE_LIST *mysql_lock_have_duplicate(THD *thd, TABLE_LIST *needle,
                                      TABLE_LIST *haystack);
2134 2135
bool lock_global_read_lock(THD *thd);
void unlock_global_read_lock(THD *thd);
2136 2137
bool wait_if_global_read_lock(THD *thd, bool abort_on_refresh,
                              bool is_not_commit);
2138
void start_waiting_global_read_lock(THD *thd);
2139
bool make_global_read_lock_block_commit(THD *thd);
2140 2141
bool set_protect_against_global_read_lock(void);
void unset_protect_against_global_read_lock(void);
2142
void broadcast_refresh(void);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2143

2144
/* Lock based on name */
2145
int lock_and_wait_for_table_name(THD *thd, TABLE_LIST *table_list);
2146
int lock_table_name(THD *thd, TABLE_LIST *table_list, bool check_in_use);
2147 2148
void unlock_table_name(THD *thd, TABLE_LIST *table_list);
bool wait_for_locked_table_names(THD *thd, TABLE_LIST *table_list);
2149 2150
bool lock_table_names(THD *thd, TABLE_LIST *table_list);
void unlock_table_names(THD *thd, TABLE_LIST *table_list,
monty@mysql.com's avatar
monty@mysql.com committed
2151
			TABLE_LIST *last_table);
2152 2153 2154 2155 2156
bool lock_table_names_exclusively(THD *thd, TABLE_LIST *table_list);
bool is_table_name_exclusively_locked_by_this_thread(THD *thd, 
                                                     TABLE_LIST *table_list);
bool is_table_name_exclusively_locked_by_this_thread(THD *thd, uchar *key,
                                                     int key_length);
2157

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2158 2159 2160 2161

/* old unireg functions */

void unireg_init(ulong options);
2162
void unireg_end(void) __attribute__((noreturn));
2163
bool mysql_create_frm(THD *thd, const char *file_name,
monty@mysql.com's avatar
monty@mysql.com committed
2164
                      const char *db, const char *table,
2165
		      HA_CREATE_INFO *create_info,
2166
		      List<Create_field> &create_field,
2167
		      uint key_count,KEY *key_info,handler *db_type);
2168 2169
int rea_create_table(THD *thd, const char *path,
                     const char *db, const char *table_name,
2170
                     HA_CREATE_INFO *create_info,
2171
  		     List<Create_field> &create_field,
2172 2173
                     uint key_count,KEY *key_info,
                     handler *file);
2174 2175
int format_number(uint inputflag,uint max_length,char * pos,uint length,
		  char * *errpos);
2176 2177

/* table.cc */
2178
TABLE_SHARE *alloc_table_share(TABLE_LIST *table_list, char *key,
2179
                               uint key_length);
2180 2181
void init_tmp_table_share(THD *thd, TABLE_SHARE *share, const char *key,
                          uint key_length,
2182 2183 2184 2185 2186 2187
                          const char *table_name, const char *path);
void free_table_share(TABLE_SHARE *share);
int open_table_def(THD *thd, TABLE_SHARE *share, uint db_flags);
void open_table_error(TABLE_SHARE *share, int error, int db_errno, int errarg);
int open_table_from_share(THD *thd, TABLE_SHARE *share, const char *alias,
                          uint db_stat, uint prgflag, uint ha_open_flags,
2188
                          TABLE *outparam, bool is_create_table);
2189 2190
int readfrm(const char *name, uchar **data, size_t *length);
int writefrm(const char* name, const uchar* data, size_t len);
2191
int closefrm(TABLE *table, bool free_share);
2192
int read_string(File file, uchar* *to, size_t length);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2193
void free_blobs(TABLE *table);
2194
void free_field_buffers_larger_than(TABLE *table, uint32 size);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2195 2196 2197 2198 2199
int set_zone(int nr,int min_zone,int max_zone);
ulong convert_period_to_month(ulong period);
ulong convert_month_to_period(ulong month);
void get_date_from_daynr(long daynr,uint *year, uint *month,
			 uint *day);
2200 2201
my_time_t TIME_to_timestamp(THD *thd, const MYSQL_TIME *t, my_bool *not_exist);
bool str_to_time_with_warn(const char *str,uint length,MYSQL_TIME *l_time);
2202
timestamp_type str_to_datetime_with_warn(const char *str, uint length,
2203 2204 2205
                                         MYSQL_TIME *l_time, uint flags);
void localtime_to_TIME(MYSQL_TIME *to, struct tm *from);
void calc_time_from_sec(MYSQL_TIME *to, long seconds, long microseconds);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2206

2207 2208
void make_truncated_value_warning(THD *thd, MYSQL_ERROR::enum_warning_level level,
                                  const char *str_val,
2209 2210
				  uint str_length, timestamp_type time_type,
                                  const char *field_name);
2211

2212 2213
bool date_add_interval(MYSQL_TIME *ltime, interval_type int_type, INTERVAL interval);
bool calc_time_diff(MYSQL_TIME *l_time1, MYSQL_TIME *l_time2, int l_sign,
2214
                    longlong *seconds_out, long *microseconds_out);
2215

2216 2217
extern LEX_STRING interval_type_to_name[];

2218 2219 2220 2221 2222 2223 2224
extern DATE_TIME_FORMAT *date_time_format_make(timestamp_type format_type,
					       const char *format_str,
					       uint format_length);
extern DATE_TIME_FORMAT *date_time_format_copy(THD *thd,
					       DATE_TIME_FORMAT *format);
const char *get_date_time_format_str(KNOWN_DATE_TIME_FORMAT *format,
				     timestamp_type type);
2225
extern bool make_date_time(DATE_TIME_FORMAT *format, MYSQL_TIME *l_time,
2226
			   timestamp_type type, String *str);
2227
void make_datetime(const DATE_TIME_FORMAT *format, const MYSQL_TIME *l_time,
2228
                   String *str);
2229
void make_date(const DATE_TIME_FORMAT *format, const MYSQL_TIME *l_time,
2230
               String *str);
2231
void make_time(const DATE_TIME_FORMAT *format, const MYSQL_TIME *l_time,
2232
               String *str);
2233
int my_time_compare(MYSQL_TIME *a, MYSQL_TIME *b);
2234 2235
longlong get_datetime_value(THD *thd, Item ***item_arg, Item **cache_arg,
                            Item *warn_item, bool *is_null);
2236

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2237
int test_if_number(char *str,int *res,bool allow_wildcards);
2238
void change_byte(uchar *,uint,char,char);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2239
void init_read_record(READ_RECORD *info, THD *thd, TABLE *reg_form,
2240 2241
		      SQL_SELECT *select, int use_record_cache, 
                      bool print_errors, bool disable_rr_cache);
2242 2243
void init_read_record_idx(READ_RECORD *info, THD *thd, TABLE *table, 
                          bool print_error, uint idx);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2244
void end_read_record(READ_RECORD *info);
2245 2246
ha_rows filesort(THD *thd, TABLE *form,struct st_sort_field *sortorder,
		 uint s_length, SQL_SELECT *select,
2247 2248
		 ha_rows max_rows, bool sort_positions,
                 ha_rows *examined_rows);
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
2249
void filesort_free_buffers(TABLE *table, bool full);
2250
void change_double_for_sort(double nr,uchar *to);
2251 2252
double my_double_round(double value, longlong dec, bool dec_unsigned,
                       bool truncate);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2253
int get_quick_record(SQL_SELECT *select);
2254

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2255
int calc_weekday(long daynr,bool sunday_first_day_of_week);
2256
uint calc_week(MYSQL_TIME *l_time, uint week_behaviour, uint *year);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2257
void find_date(char *pos,uint *vek,uint flag);
2258
TYPELIB *convert_strings_to_array_type(char * *typelibs, char * *end);
2259
TYPELIB *typelib(MEM_ROOT *mem_root, List<String> &strings);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2260 2261 2262 2263
ulong get_form_pos(File file, uchar *head, TYPELIB *save_names);
ulong make_new_entry(File file,uchar *fileinfo,TYPELIB *formnames,
		     const char *newname);
ulong next_io_size(ulong pos);
2264
void append_unescaped(String *res, const char *pos, uint length);
2265 2266
int create_frm(THD *thd, const char *name, const char *db, const char *table,
               uint reclength, uchar *fileinfo,
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2267 2268 2269
	       HA_CREATE_INFO *create_info, uint keys);
void update_create_info_from_table(HA_CREATE_INFO *info, TABLE *form);
int rename_file_ext(const char * from,const char * to,const char * ext);
2270
bool check_db_name(LEX_STRING *db);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2271 2272
bool check_column_name(const char *name);
bool check_table_name(const char *name, uint length);
2273
char *get_field(MEM_ROOT *mem, Field *field);
vva@eagle.mysql.r18.ru's avatar
vva@eagle.mysql.r18.ru committed
2274
bool get_field(MEM_ROOT *mem, Field *field, class String *res);
2275
int wild_case_compare(CHARSET_INFO *cs, const char *str,const char *wildstr);
2276 2277 2278
char *fn_rext(char *name);

/* Conversion functions */
2279 2280
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
2281
uint strconvert(CHARSET_INFO *from_cs, const char *from,
2282
                CHARSET_INFO *to_cs, char *to, uint to_length, uint *errors);
2283 2284 2285 2286 2287 2288
/* depends on errmsg.txt Database `db`, Table `t` ... */
#define EXPLAIN_FILENAME_MAX_EXTRA_LENGTH 63
enum enum_explain_filename_mode
{
  EXPLAIN_ALL_VERBOSE= 0,
  EXPLAIN_PARTITIONS_VERBOSE,
2289
  EXPLAIN_PARTITIONS_AS_COMMENT
2290
};
2291
uint explain_filename(THD* thd, const char *from, char *to, uint to_length,
2292
                      enum_explain_filename_mode explain_mode);
2293 2294
uint filename_to_tablename(const char *from, char *to, uint to_length);
uint tablename_to_filename(const char *from, char *to, uint to_length);
Ramil Kalimullin's avatar
Ramil Kalimullin committed
2295
uint check_n_cut_mysql50_prefix(const char *from, char *to, uint to_length);
2296 2297
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
2298
uint build_table_filename(char *buff, size_t bufflen, const char *db,
2299
                          const char *table, const char *ext, uint flags);
2300 2301
const char *get_canonical_filename(handler *file, const char *path,
                                   char *tmp_path);
2302 2303 2304 2305

#define MYSQL50_TABLE_NAME_PREFIX         "#mysql50#"
#define MYSQL50_TABLE_NAME_PREFIX_LENGTH  9

2306 2307
uint build_table_shadow_filename(char *buff, size_t bufflen, 
                                 ALTER_PARTITION_PARAM_TYPE *lpt);
2308 2309 2310 2311
/* Flags for conversion functions. */
#define FN_FROM_IS_TMP  (1 << 0)
#define FN_TO_IS_TMP    (1 << 1)
#define FN_IS_TMP       (FN_FROM_IS_TMP | FN_TO_IS_TMP)
2312
#define NO_FRM_RENAME   (1 << 2)
2313
#define FRM_ONLY        (1 << 3)
2314

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2315 2316
/* from hostname.cc */
struct in_addr;
2317
char * ip_to_hostname(struct in_addr *in,uint *errors);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2318 2319 2320 2321 2322
void inc_host_errors(struct in_addr *in);
void reset_host_errors(struct in_addr *in);
bool hostname_cache_init();
void hostname_cache_free();
void hostname_cache_refresh(void);
2323

2324
/* sql_cache.cc */
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2325 2326 2327 2328
extern bool sql_cache_init();
extern void sql_cache_free();
extern int sql_cache_hit(THD *thd, char *inBuf, uint length);

2329
/* item_func.cc */
2330 2331
Item *get_system_var(THD *thd, enum_var_type var_type, LEX_STRING name,
		     LEX_STRING component);
2332 2333
int get_var_with_binlog(THD *thd, enum_sql_command sql_command,
                        LEX_STRING &name, user_var_entry **out_entry);
2334 2335
/* log.cc */
bool flush_error_log(void);
2336

2337 2338 2339 2340
/* sql_list.cc */
void free_list(I_List <i_string_pair> *list);
void free_list(I_List <i_string> *list);

2341
/* sql_yacc.cc */
2342 2343 2344
#ifndef DBUG_OFF
extern void turn_parser_debug_on();
#endif
2345 2346 2347 2348 2349 2350

/* frm_crypt.cc */
#ifdef HAVE_CRYPTED_FRM
SQL_CRYPT *get_crypt_for_frm(void);
#endif

2351 2352 2353 2354 2355 2356
/* password.c */
extern "C" void my_make_scrambled_password_323(char *to, const char *password,
                                               size_t pass_len);
extern "C" void my_make_scrambled_password(char *to, const char *password,
                                           size_t pass_len);

bell@sanja.is.com.ua's avatar
VIEW  
bell@sanja.is.com.ua committed
2357 2358
#include "sql_view.h"

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2359 2360
/* Some inline functions for more speed */

monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
2361
inline bool add_item_to_list(THD *thd, Item *item)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2362
{
2363
  return thd->lex->current_select->add_item_to_list(thd, item);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2364
}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
2365 2366

inline bool add_value_to_list(THD *thd, Item *value)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2367
{
2368
  return thd->lex->value_list.push_back(value);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2369
}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
2370 2371

inline bool add_order_to_list(THD *thd, Item *item, bool asc)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2372
{
2373
  return thd->lex->current_select->add_order_to_list(thd, item, asc);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2374
}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
2375 2376

inline bool add_group_to_list(THD *thd, Item *item, bool asc)
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2377
{
2378
  return thd->lex->current_select->add_group_to_list(thd, item, asc);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2379
}
monty@mashka.mysql.fi's avatar
monty@mashka.mysql.fi committed
2380

bk@work.mysql.com's avatar
bk@work.mysql.com committed
2381 2382 2383
inline void mark_as_null_row(TABLE *table)
{
  table->null_row=1;
2384
  table->status|=STATUS_NULL_ROW;
2385
  bfill(table->null_flags,table->s->null_bytes,255);
bk@work.mysql.com's avatar
bk@work.mysql.com committed
2386
}
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2387

2388 2389 2390
inline void table_case_convert(char * name, uint length)
{
  if (lower_case_table_names)
2391 2392
    files_charset_info->cset->casedn(files_charset_info,
                                     name, length, name, length);
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
2393 2394
}

2395 2396 2397 2398
inline const char *table_case_name(HA_CREATE_INFO *info, const char *name)
{
  return ((lower_case_table_names == 2 && info->alias) ? info->alias : name);
}
monty@mysql.com's avatar
monty@mysql.com committed
2399

2400 2401 2402 2403 2404 2405 2406 2407
inline ulong sql_rnd_with_mutex()
{
  pthread_mutex_lock(&LOCK_thread_count);
  ulong tmp=(ulong) (my_rnd(&sql_rand) * 0xffffffff); /* make all bits random */
  pthread_mutex_unlock(&LOCK_thread_count);
  return tmp;
}

bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2408 2409 2410 2411 2412 2413
Comp_creator *comp_eq_creator(bool invert);
Comp_creator *comp_ge_creator(bool invert);
Comp_creator *comp_gt_creator(bool invert);
Comp_creator *comp_le_creator(bool invert);
Comp_creator *comp_lt_creator(bool invert);
Comp_creator *comp_ne_creator(bool invert);
bell@sanja.is.com.ua's avatar
bell@sanja.is.com.ua committed
2414

2415 2416 2417 2418 2419
Item * all_any_subquery_creator(Item *left_expr,
				chooser_compare_func_creator cmp,
				bool all,
				SELECT_LEX *select_lex);

2420 2421
/**
  clean/setup table fields and map.
2422

2423 2424 2425
  @param table        TABLE structure pointer (which should be setup)
  @param table_list   TABLE_LIST structure pointer (owner of TABLE)
  @param tablenr     table number
2426
*/
monty@narttu.mysql.fi's avatar
monty@narttu.mysql.fi committed
2427

2428

2429 2430 2431 2432
inline void setup_table_map(TABLE *table, TABLE_LIST *table_list, uint tablenr)
{
  table->used_fields= 0;
  table->const_table= 0;
2433
  table->null_row= 0;
2434
  table->status= STATUS_NO_RECORD;
2435
  table->maybe_null= table_list->outer_join;
igor@rurik.mysql.com's avatar
igor@rurik.mysql.com committed
2436 2437 2438 2439 2440 2441
  TABLE_LIST *embedding= table_list->embedding;
  while (!table->maybe_null && embedding)
  {
    table->maybe_null= embedding->outer_join;
    embedding= embedding->embedding;
  }
2442 2443 2444
  table->tablenr= tablenr;
  table->map= (table_map) 1 << tablenr;
  table->force_index= table_list->force_index;
2445
  table->force_index_order= table->force_index_group= 0;
2446 2447
  table->covering_keys= table->s->keys_for_keyread;
  table->merge_keys.clear_all();
2448
}
2449

hf@deer.(none)'s avatar
SCRUM  
hf@deer.(none) committed
2450

2451 2452
/**
  convert a hex digit into number.
2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464
*/

inline int hexchar_to_int(char c)
{
  if (c <= '9' && c >= '0')
    return c-'0';
  c|=32;
  if (c <= 'f' && c >= 'a')
    return c-'a'+10;
  return -1;
}

2465 2466
/**
  return true if the table was created explicitly.
2467 2468 2469 2470 2471 2472
*/
inline bool is_user_table(TABLE * table)
{
  const char *name= table->s->table_name.str;
  return strncmp(name, tmp_file_prefix, tmp_file_prefix_length);
}
2473

2474 2475 2476 2477 2478 2479
/*
  Some functions that are different in the embedded library and the normal
  server
*/

#ifndef EMBEDDED_LIBRARY
2480
extern "C" void unireg_abort(int exit_code) __attribute__((noreturn));
2481
void kill_delayed_threads(void);
2482
bool check_stack_overrun(THD *thd, long margin, uchar *dummy);
2483
#else
2484 2485
extern "C" void unireg_clear(int exit_code);
#define unireg_abort(exit_code) do { unireg_clear(exit_code); DBUG_RETURN(exit_code); } while(0)
2486
inline void kill_delayed_threads(void) {}
2487
#define check_stack_overrun(A, B, C) 0
2488
#endif
pem@mysql.com's avatar
pem@mysql.com committed
2489

2490
/* Used by handlers to store things in schema tables */
2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529
#define IS_FILES_FILE_ID              0
#define IS_FILES_FILE_NAME            1
#define IS_FILES_FILE_TYPE            2
#define IS_FILES_TABLESPACE_NAME      3
#define IS_FILES_TABLE_CATALOG        4
#define IS_FILES_TABLE_SCHEMA         5
#define IS_FILES_TABLE_NAME           6
#define IS_FILES_LOGFILE_GROUP_NAME   7
#define IS_FILES_LOGFILE_GROUP_NUMBER 8
#define IS_FILES_ENGINE               9
#define IS_FILES_FULLTEXT_KEYS       10
#define IS_FILES_DELETED_ROWS        11
#define IS_FILES_UPDATE_COUNT        12
#define IS_FILES_FREE_EXTENTS        13
#define IS_FILES_TOTAL_EXTENTS       14
#define IS_FILES_EXTENT_SIZE         15
#define IS_FILES_INITIAL_SIZE        16
#define IS_FILES_MAXIMUM_SIZE        17
#define IS_FILES_AUTOEXTEND_SIZE     18
#define IS_FILES_CREATION_TIME       19
#define IS_FILES_LAST_UPDATE_TIME    20
#define IS_FILES_LAST_ACCESS_TIME    21
#define IS_FILES_RECOVER_TIME        22
#define IS_FILES_TRANSACTION_COUNTER 23
#define IS_FILES_VERSION             24
#define IS_FILES_ROW_FORMAT          25
#define IS_FILES_TABLE_ROWS          26
#define IS_FILES_AVG_ROW_LENGTH      27
#define IS_FILES_DATA_LENGTH         28
#define IS_FILES_MAX_DATA_LENGTH     29
#define IS_FILES_INDEX_LENGTH        30
#define IS_FILES_DATA_FREE           31
#define IS_FILES_CREATE_TIME         32
#define IS_FILES_UPDATE_TIME         33
#define IS_FILES_CHECK_TIME          34
#define IS_FILES_CHECKSUM            35
#define IS_FILES_STATUS              36
#define IS_FILES_EXTRA               37
void init_fill_schema_files_row(TABLE* table);
2530 2531
bool schema_table_store_record(THD *thd, TABLE *table);

2532 2533 2534 2535
/* sql/item_create.cc */
int item_create_init();
void item_create_cleanup();

2536 2537
bool show_create_trigger(THD *thd, const sp_name *trg_name);

2538 2539 2540 2541 2542 2543
inline void lex_string_set(LEX_STRING *lex_str, const char *c_str)
{
  lex_str->str= (char *) c_str;
  lex_str->length= strlen(c_str);
}

2544 2545 2546 2547 2548 2549 2550 2551 2552 2553
bool load_charset(MEM_ROOT *mem_root,
                  Field *field,
                  CHARSET_INFO *dflt_cs,
                  CHARSET_INFO **cs);

bool load_collation(MEM_ROOT *mem_root,
                    Field *field,
                    CHARSET_INFO *dflt_cl,
                    CHARSET_INFO **cl);

2554
#endif /* MYSQL_SERVER */
2555 2556
extern "C" int test_if_data_home_dir(const char *dir);

2557
#endif /* MYSQL_CLIENT */
2558 2559

#endif /* MYSQL_PRIV_H */