mysql_priv.h 89 KB
Newer Older
unknown's avatar
unknown committed
1
/* Copyright (C) 2000-2003 MySQL AB
2

unknown's avatar
unknown 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
unknown's avatar
unknown committed
5
   the Free Software Foundation; version 2 of the License.
6

unknown's avatar
unknown 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

unknown's avatar
unknown 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 20 21 22
/*
  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).
  The consequence is that 90% of the file is wrapped in #ifndef MYSQL_CLIENT,
  except the part which must be in the server and in the client.
*/

23 24 25
#ifndef MYSQL_PRIV_H
#define MYSQL_PRIV_H

26 27
#ifndef MYSQL_CLIENT

unknown's avatar
unknown committed
28
#include <my_global.h>
unknown's avatar
unknown committed
29 30
#include <mysql_version.h>
#include <mysql_embed.h>
unknown's avatar
unknown committed
31
#include <my_sys.h>
32
#include <my_time.h>
unknown's avatar
unknown committed
33 34 35 36 37
#include <m_string.h>
#include <hash.h>
#include <signal.h>
#include <thr_lock.h>
#include <my_base.h>			/* Needed by field.h */
38
#include <queues.h>
39
#include "sql_bitmap.h"
40
#include "sql_array.h"
unknown's avatar
unknown committed
41
#include "sql_plugin.h"
unknown's avatar
unknown committed
42
#include "scheduler.h"
unknown's avatar
unknown committed
43

44 45
/* TODO convert all these three maps to Bitmap classes */
typedef ulonglong table_map;          /* Used for table bits in join */
46 47 48 49 50
#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
unknown's avatar
unknown committed
51
typedef ulong nesting_map;  /* Used for flags of nesting constructs */
52
/*
53 54 55
  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)
56 57
*/
typedef ulonglong nested_join_map;
58

59 60
/* query_id */
typedef ulonglong query_id_t;
61
extern query_id_t global_query_id;
62 63

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

66 67
/* useful constants */
extern const key_map key_map_empty;
68
extern key_map key_map_full;          /* Should be threaded as const */
69
extern const char *primary_key_name;
unknown's avatar
unknown committed
70 71

#include "mysql_com.h"
unknown's avatar
unknown committed
72
#include <violite.h>
unknown's avatar
unknown committed
73 74
#include "unireg.h"

75
void init_sql_alloc(MEM_ROOT *root, uint block_size, uint pre_alloc_size);
76 77
void *sql_alloc(size_t);
void *sql_calloc(size_t);
unknown's avatar
unknown committed
78
char *sql_strdup(const char *str);
79 80
char *sql_strmake(const char *str, size_t len);
void *sql_memdup(const void * ptr, size_t size);
unknown's avatar
unknown committed
81
void sql_element_free(void *ptr);
82
char *sql_strmake_with_convert(const char *str, size_t arg_length,
unknown's avatar
unknown committed
83
			       CHARSET_INFO *from_cs,
84 85
			       size_t max_res_length,
			       CHARSET_INFO *to_cs, size_t *result_length);
86 87
uint kill_one_thread(THD *thd, ulong id, bool only_kill_query);
void sql_kill(THD *thd, ulong id, bool only_kill_query);
88
bool net_request_file(NET* net, const char* fname);
unknown's avatar
unknown committed
89
char* query_table_status(THD *thd,const char *db,const char *table_name);
unknown's avatar
unknown committed
90

91 92
#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; } }
unknown's avatar
unknown committed
93 94 95
#define PREV_BITS(type,A)	((type) (((type) 1 << (A)) -1))
#define all_bits_set(A,B) ((A) & (B) != (B))

96 97 98
#define WARN_DEPRECATED(Thd,Ver,Old,New)                                             \
  do {                                                                               \
    DBUG_ASSERT(strncmp(Ver, MYSQL_SERVER_VERSION, sizeof(Ver)-1) > 0);              \
99
    if (((uchar*)Thd) != NULL)                                                         \
100
      push_warning_printf(((THD *)Thd), MYSQL_ERROR::WARN_LEVEL_WARN,                \
101
                        ER_WARN_DEPRECATED_SYNTAX, ER(ER_WARN_DEPRECATED_SYNTAX_WITH_VER), \
102 103
                        (Old), (Ver), (New));                                        \
    else                                                                             \
104
      sql_print_warning("The syntax '%s' is deprecated and will be removed "         \
105
                        "in MySQL %s. Please use %s instead.", (Old), (Ver), (New)); \
106 107
  } while(0)

108 109
extern CHARSET_INFO *system_charset_info, *files_charset_info ;
extern CHARSET_INFO *national_charset_info, *table_alias_charset;
110

unknown's avatar
unknown committed
111

112 113 114 115 116 117 118 119 120 121 122
enum Derivation
{
  DERIVATION_IGNORABLE= 5,
  DERIVATION_COERCIBLE= 4,
  DERIVATION_SYSCONST= 3,
  DERIVATION_IMPLICIT= 2,
  DERIVATION_NONE= 1,
  DERIVATION_EXPLICIT= 0
};


unknown's avatar
unknown committed
123 124
typedef struct my_locale_st
{
125
  uint  number;
unknown's avatar
unknown committed
126 127 128 129 130 131 132
  const char *name;
  const char *description;
  const bool is_ascii;
  TYPELIB *month_names;
  TYPELIB *ab_month_names;
  TYPELIB *day_names;
  TYPELIB *ab_day_names;
unknown's avatar
unknown committed
133
#ifdef __cplusplus 
134 135
  my_locale_st(uint number_par,
               const char *name_par, const char *descr_par, bool is_ascii_par,
unknown's avatar
unknown committed
136 137
               TYPELIB *month_names_par, TYPELIB *ab_month_names_par,
               TYPELIB *day_names_par, TYPELIB *ab_day_names_par) : 
138
    number(number_par),
unknown's avatar
unknown committed
139
    name(name_par), description(descr_par), is_ascii(is_ascii_par),
140
    month_names(month_names_par), ab_month_names(ab_month_names_par),
unknown's avatar
unknown committed
141 142 143
    day_names(day_names_par), ab_day_names(ab_day_names_par)
  {}
#endif
unknown's avatar
unknown committed
144 145 146 147
} MY_LOCALE;

extern MY_LOCALE my_locale_en_US;
extern MY_LOCALE *my_locales[];
148
extern MY_LOCALE *my_default_lc_time_names;
unknown's avatar
unknown committed
149 150

MY_LOCALE *my_locale_by_name(const char *name);
151
MY_LOCALE *my_locale_by_number(uint number);
unknown's avatar
unknown committed
152

unknown's avatar
unknown committed
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
/*************************************************************************/

/**
 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:
170
  Object_creation_ctx() {}
171
  virtual Object_creation_ctx *create_backup_ctx(THD *thd) const = 0;
unknown's avatar
unknown committed
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206

  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:
207
  virtual Object_creation_ctx *create_backup_ctx(THD *thd) const;
unknown's avatar
unknown committed
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

  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;
};

unknown's avatar
unknown committed
234
/***************************************************************************
235
  Configuration parameters
unknown's avatar
unknown committed
236 237 238
****************************************************************************/

#define ACL_CACHE_SIZE		256
239
#define MAX_PASSWORD_LENGTH	32
unknown's avatar
unknown committed
240 241 242 243
#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
244 245
#define TABLE_OPEN_CACHE_MIN    64
#define TABLE_OPEN_CACHE_DEFAULT 64
246 247 248 249 250 251 252 253 254 255

/* 
 Value of 9236 discovered through binary search 2006-09-26 on Ubuntu Dapper
 Drake, libc6 2.3.6-0ubuntu2, Linux kernel 2.6.15-27-686, on x86.  (Added 
 100 bytes as reasonable buffer against growth and other environments'
 requirements.)

 Feel free to raise this by the smallest amount you can to get the
 "execution_constants" test to pass.
 */
256
#define STACK_MIN_SIZE          12000   // Abort if less stack during eval.
257

258
#define STACK_MIN_SIZE_FOR_OPEN 1024*80
259
#define STACK_BUFF_ALLOC        352     // For stack overrun checks
unknown's avatar
unknown committed
260 261 262
#ifndef MYSQLD_NET_RETRY_COUNT
#define MYSQLD_NET_RETRY_COUNT  10	// Abort read after this many int.
#endif
263
#define TEMP_POOL_SIZE          128
264 265 266 267 268 269 270 271 272

#define QUERY_ALLOC_BLOCK_SIZE		8192
#define QUERY_ALLOC_PREALLOC_SIZE   	8192
#define TRANS_ALLOC_BLOCK_SIZE		4096
#define TRANS_ALLOC_PREALLOC_SIZE	4096
#define RANGE_ALLOC_BLOCK_SIZE		2048
#define ACL_ALLOC_BLOCK_SIZE		1024
#define UDF_ALLOC_BLOCK_SIZE		1024
#define TABLE_ALLOC_BLOCK_SIZE		1024
unknown's avatar
unknown committed
273 274 275
#define BDB_LOG_ALLOC_BLOCK_SIZE	1024
#define WARN_ALLOC_BLOCK_SIZE		2048
#define WARN_ALLOC_PREALLOC_SIZE	1024
276

277 278
/*
  The following parameters is to decide when to use an extra cache to
unknown's avatar
unknown committed
279
  optimise seeks when reading a big table in sorted order
280
*/
281
#define MIN_FILE_LENGTH_TO_USE_ROW_CACHE (10L*1024*1024)
unknown's avatar
unknown committed
282
#define MIN_ROWS_TO_USE_TABLE_CACHE	 100
283
#define MIN_ROWS_TO_USE_BULK_INSERT	 100
unknown's avatar
unknown committed
284

285 286 287 288 289
/*
  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.
*/
290
#define TIME_FOR_COMPARE   5	// 5 compares == one read
291

292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
/*
  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)


312 313 314 315 316
/*
  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.
*/
317
#define MATCHING_ROWS_IN_OTHER_TABLE 10
unknown's avatar
unknown committed
318 319 320 321 322 323

/* Don't pack string keys shorter than this (if PACK_KEYS=1 isn't used) */
#define KEY_DEFAULT_PACK_LENGTH 8

/* Characters shown for the command in 'show processlist' */
#define PROCESS_LIST_WIDTH 100
324 325
/* Characters shown for the command in 'information_schema.processlist' */
#define PROCESS_LIST_INFO_WIDTH 65535
unknown's avatar
unknown committed
326 327 328 329

#define PRECISION_FOR_DOUBLE 53
#define PRECISION_FOR_FLOAT  24

330 331 332 333 334 335
/*
  Default time to wait before aborting a new client connection
  that does not respond to "initial server greeting" timely
*/
#define CONNECT_TIMEOUT		10

unknown's avatar
unknown committed
336 337 338 339 340 341 342 343
/* The following can also be changed from the command line */
#define DEFAULT_CONCURRENCY	10
#define DELAYED_LIMIT		100		/* pause after xxx inserts */
#define DELAYED_QUEUE_SIZE	1000
#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

unknown's avatar
unknown committed
344
#ifdef __NETWARE__
unknown's avatar
unknown committed
345
#define IF_NETWARE(A,B) A
unknown's avatar
unknown committed
346
#else
unknown's avatar
unknown committed
347
#define IF_NETWARE(A,B) B
unknown's avatar
unknown committed
348
#endif
349

350
#if defined(__WIN__)
unknown's avatar
unknown committed
351 352 353 354 355 356 357 358 359 360 361 362 363 364
#undef	FLUSH_TIME
#define FLUSH_TIME	1800			/* Flush every half hour */

#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__ */

unknown's avatar
unknown committed
365
	/* Bits from testflag */
unknown's avatar
unknown committed
366 367 368 369 370 371 372
#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
#define TEST_READCHECK		64	/* Force use of readcheck */
#define TEST_NO_EXTRA		128
373
#define TEST_CORE_ON_SIGNAL	256	/* Give core if signal */
unknown's avatar
unknown committed
374
#define TEST_NO_STACKTRACE	512
375
#define TEST_SIGINT		1024	/* Allow sigint on threads */
unknown's avatar
unknown committed
376 377
#define TEST_SYNCHRONIZATION    2048    /* get server to do sleep in
                                           some places */
378 379
#endif

unknown's avatar
unknown committed
380
/*
381 382
   This is included in the server and in the client.
   Options for select set by the yacc parser (stored in lex->options).
unknown's avatar
unknown committed
383 384 385 386 387 388 389 390 391 392 393 394 395

   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.
396 397
*/

398 399 400 401 402 403 404 405 406 407 408
#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
409
#define OPTION_QUOTE_SHOW_CREATE (ULL(1) << 11)   // THD, user, unused
410 411 412 413 414 415 416 417 418 419 420
#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)
421
#define OPTION_KEEP_LOG         (ULL(1) << 23)    // THD, user
unknown's avatar
unknown committed
422

423
/* The following is used to detect a conflict with DISTINCT */
424
#define SELECT_ALL              (ULL(1) << 24)    // SELECT, user, parser
unknown's avatar
unknown committed
425

unknown's avatar
unknown committed
426 427
/* The following can be set when importing tables in a 'wrong order'
   to suppress foreign key checks */
428
#define OPTION_NO_FOREIGN_KEY_CHECKS    (ULL(1) << 26) // THD, user, binlog
unknown's avatar
unknown committed
429 430
/* The following speeds up inserts to InnoDB tables by suppressing unique
   key checks in some cases */
431 432 433
#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
434
/* Flag set if setup_tables already done */
435
#define OPTION_SETUP_TABLES_DONE        (ULL(1) << 30) // intern
unknown's avatar
unknown committed
436
/* If not set then the thread will ignore all warnings with level notes. */
437
#define OPTION_SQL_NOTES                (ULL(1) << 31) // THD, user
438 439 440 441
/* 
  Force the used temporary table to be a MyISAM table (because we will use
  fulltext functions when reading from it.
*/
442
#define TMP_TABLE_FORCE_MYISAM          (ULL(1) << 32)
443

444

unknown's avatar
unknown committed
445 446
/*
  Maximum length of time zone name that we support
447 448
  (Time zone name is char(64) in db). mysqlbinlog needs it.
*/
449
#define MAX_TIME_ZONE_NAME_LENGTH       (NAME_LEN + 1)
450

451 452 453
/* The rest of the file is included in the server only */
#ifndef MYSQL_CLIENT

454
/* Bits for different SQL modes modes (including ANSI mode) */
unknown's avatar
unknown committed
455 456 457
#define MODE_REAL_AS_FLOAT              1
#define MODE_PIPES_AS_CONCAT            2
#define MODE_ANSI_QUOTES                4
458
#define MODE_IGNORE_SPACE		8
459
#define MODE_NOT_USED			16
460 461
#define MODE_ONLY_FULL_GROUP_BY		32
#define MODE_NO_UNSIGNED_SUBTRACTION	64
462
#define MODE_NO_DIR_IN_CREATE		128
unknown's avatar
unknown committed
463 464 465 466
#define MODE_POSTGRESQL			256
#define MODE_ORACLE			512
#define MODE_MSSQL			1024
#define MODE_DB2			2048
467
#define MODE_MAXDB			4096
unknown's avatar
unknown committed
468
#define MODE_NO_KEY_OPTIONS             8192
469
#define MODE_NO_TABLE_OPTIONS           16384
unknown's avatar
unknown committed
470
#define MODE_NO_FIELD_OPTIONS           32768
471
#define MODE_MYSQL323                   65536L
unknown's avatar
unknown committed
472 473 474 475 476 477 478 479 480 481 482
#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)
483
#define MODE_NO_AUTO_CREATE_USER	(MODE_TRADITIONAL*2)
484
#define MODE_HIGH_NOT_PRECEDENCE	(MODE_NO_AUTO_CREATE_USER*2)
485
#define MODE_NO_ENGINE_SUBSTITUTION     (MODE_HIGH_NOT_PRECEDENCE*2)
486
#define MODE_PAD_CHAR_TO_FULL_LENGTH    (ULL(1) << 31)
487

488 489 490 491 492
/*
  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).
493 494

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

498
*/
499

unknown's avatar
unknown committed
500 501
#define RAID_BLOCK_SIZE 1024

unknown's avatar
unknown committed
502 503
#define MY_CHARSET_BIN_MB_MAXLEN 1

504 505 506
// uncachable cause
#define UNCACHEABLE_DEPENDENT   1
#define UNCACHEABLE_RAND        2
507 508 509
#define UNCACHEABLE_SIDEEFFECT	4
// forcing to save JOIN for explain
#define UNCACHEABLE_EXPLAIN     8
510 511
/* Don't evaluate subqueries in prepare even if they're not correlated */
#define UNCACHEABLE_PREPARE    16
512 513
/* For uncorrelated SELECT in an UNION with some correlated SELECTs */
#define UNCACHEABLE_UNITED     32
514

515
/* Used to check GROUP BY list in the MODE_ONLY_FULL_GROUP_BY mode */
516
#define UNDEF_POS (-1)
517
#ifdef EXTRA_DEBUG
518 519 520 521 522 523 524
/*
  Sync points allow us to force the server to reach a certain line of code
  and block there until the client tells the server it is ok to go on.
  The client tells the server to block with SELECT GET_LOCK()
  and unblocks it with SELECT RELEASE_LOCK(). Used for debugging difficult
  concurrency problems
*/
525 526 527 528 529
#define DBUG_SYNC_POINT(lock_name,lock_timeout) \
 debug_sync_point(lock_name,lock_timeout)
void debug_sync_point(const char* lock_name, uint lock_timeout);
#else
#define DBUG_SYNC_POINT(lock_name,lock_timeout)
530
#endif /* EXTRA_DEBUG */
531

unknown's avatar
unknown committed
532 533 534 535
/* BINLOG_DUMP options */

#define BINLOG_DUMP_NON_BLOCK   1

unknown's avatar
unknown committed
536 537 538 539
/* sql_show.cc:show_log_files() */
#define SHOW_LOG_STATUS_FREE "FREE"
#define SHOW_LOG_STATUS_INUSE "IN USE"

540
struct TABLE_LIST;
541
class String;
542
void view_store_options(THD *thd, TABLE_LIST *table, String *buff);
543

544 545 546
/* Options to add_table_to_list() */
#define TL_OPTION_UPDATING	1
#define TL_OPTION_FORCE_INDEX	2
unknown's avatar
unknown committed
547
#define TL_OPTION_IGNORE_LEAVES 4
548
#define TL_OPTION_ALIAS         8
549

unknown's avatar
unknown committed
550 551 552 553 554 555 556
/* Some portable defines */

#define portable_sizeof_char_ptr 8

#define tmp_file_prefix "#sql"			/* Prefix for tmp tables */
#define tmp_file_prefix_length 4

557 558 559 560 561
/* Flags for calc_week() function.  */
#define WEEK_MONDAY_FIRST    1
#define WEEK_YEAR            2
#define WEEK_FIRST_WEEKDAY   4

unknown's avatar
unknown committed
562 563
#define STRING_BUFFER_USUAL_SIZE 80

unknown's avatar
unknown committed
564 565 566 567 568 569 570
/*
  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

571 572 573 574
enum enum_parsing_place
{
  NO_MATTER,
  IN_HAVING,
unknown's avatar
unknown committed
575
  SELECT_LIST,
unknown's avatar
unknown committed
576 577
  IN_WHERE,
  IN_ON
578 579
};

unknown's avatar
unknown committed
580 581 582
struct st_table;
class THD;

583 584 585 586 587 588 589
enum enum_check_fields
{
  CHECK_FIELD_IGNORE,
  CHECK_FIELD_WARN,
  CHECK_FIELD_ERROR_FOR_NULL
};
                                  
unknown's avatar
unknown committed
590 591 592 593
/* Struct to handle simple linked lists */

typedef struct st_sql_list {
  uint elements;
594 595
  uchar *first;
  uchar **next;
unknown's avatar
unknown committed
596

597
  st_sql_list() {}                              /* Remove gcc warning */
unknown's avatar
unknown committed
598 599 600 601 602 603
  inline void empty()
  {
    elements=0;
    first=0;
    next= &first;
  }
604
  inline void link_in_list(uchar *element,uchar **next_ptr)
unknown's avatar
unknown committed
605 606 607 608 609 610
  {
    elements++;
    (*next)=element;
    next= next_ptr;
    *next=0;
  }
611 612 613 614 615 616 617 618 619 620 621
  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;
  }
622 623 624 625 626 627 628 629 630
  inline void push_back(struct st_sql_list *save)
  {
    if (save->first)
    {
      *next= save->first;
      next= save->next;
      elements+= save->elements;
    }
  }
unknown's avatar
unknown committed
631 632 633 634 635 636 637 638 639 640
} SQL_LIST;


extern pthread_key(THD*, THR_THD);
inline THD *_current_thd(void)
{
  return my_pthread_getspecific_ptr(THD*,THR_THD);
}
#define current_thd _current_thd()

641

642 643 644 645 646
/*
  External variables
*/
extern ulong server_id, concurrency;

unknown's avatar
unknown committed
647

unknown's avatar
unknown committed
648 649 650
typedef my_bool (*qc_engine_callback)(THD *thd, char *table_key,
                                      uint key_length,
                                      ulonglong *engine_data);
unknown's avatar
unknown committed
651 652 653
#include "sql_string.h"
#include "sql_list.h"
#include "sql_map.h"
unknown's avatar
unknown committed
654
#include "my_decimal.h"
unknown's avatar
unknown committed
655
#include "handler.h"
unknown's avatar
unknown committed
656
#include "parse_file.h"
unknown's avatar
unknown committed
657
#include "table.h"
658
#include "sql_error.h"
unknown's avatar
unknown committed
659
#include "field.h"				/* Field definitions */
660
#include "protocol.h"
unknown's avatar
unknown committed
661
#include "sql_udf.h"
662 663
#include "sql_partition.h"

664
class user_var_entry;
665
class Security_context;
666 667
enum enum_var_type
{
unknown's avatar
unknown committed
668
  OPT_DEFAULT= 0, OPT_SESSION, OPT_GLOBAL
669 670
};
class sys_var;
671
#ifdef MYSQL_SERVER
672
class Comp_creator;
unknown's avatar
unknown committed
673
typedef Comp_creator* (*chooser_compare_func_creator)(bool invert);
674
#endif
675
#include "item.h"
unknown's avatar
unknown committed
676 677
extern my_decimal decimal_zero;

678 679 680
/* sql_parse.cc */
void free_items(Item *item);
void cleanup_items(Item *item);
681
class THD;
682
void close_thread_tables(THD *thd, bool locked=0, bool skip_derived=0);
683
bool check_one_table_access(THD *thd, ulong privilege, TABLE_LIST *tables);
684
bool check_single_table_access(THD *thd, ulong privilege,
685
			   TABLE_LIST *tables, bool no_errors);
686 687
bool check_routine_access(THD *thd,ulong want_access,char *db,char *name,
			  bool is_proc, bool no_errors);
688
bool check_some_access(THD *thd, ulong want_access, TABLE_LIST *table);
689
bool check_merge_table_access(THD *thd, char *db, TABLE_LIST *table_list);
690
bool check_some_routine_access(THD *thd, const char *db, const char *name, bool is_proc);
unknown's avatar
unknown committed
691
bool multi_update_precheck(THD *thd, TABLE_LIST *tables);
692
bool multi_delete_precheck(THD *thd, TABLE_LIST *tables);
unknown's avatar
unknown committed
693 694 695 696 697
bool mysql_multi_update_prepare(THD *thd);
bool mysql_multi_delete_prepare(THD *thd);
bool mysql_insert_select_prepare(THD *thd);
bool update_precheck(THD *thd, TABLE_LIST *tables);
bool delete_precheck(THD *thd, TABLE_LIST *tables);
unknown's avatar
merge  
unknown committed
698
bool insert_precheck(THD *thd, TABLE_LIST *tables);
unknown's avatar
unknown committed
699 700
bool create_table_precheck(THD *thd, TABLE_LIST *tables,
                           TABLE_LIST *create_table);
701 702
int append_query_string(CHARSET_INFO *csinfo,
                        String const *from, String *to);
703

704
void get_default_definer(THD *thd, LEX_USER *definer);
705
LEX_USER *create_default_definer(THD *thd);
706
LEX_USER *create_definer(THD *thd, LEX_STRING *user_name, LEX_STRING *host_name);
707
LEX_USER *get_current_user(THD *thd, LEX_USER *user);
708 709 710 711 712
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);
713

unknown's avatar
unknown committed
714 715 716
bool parse_sql(THD *thd,
               class Lex_input_stream *lip,
               class Object_creation_ctx *creation_ctx);
717

718 719 720 721 722
enum enum_mysql_completiontype {
  ROLLBACK_RELEASE=-2, ROLLBACK=1,  ROLLBACK_AND_CHAIN=7,
  COMMIT_RELEASE=-1,   COMMIT=0,    COMMIT_AND_CHAIN=6
};

unknown's avatar
unknown committed
723
bool begin_trans(THD *thd);
724
bool end_active_trans(THD *thd);
725 726
int end_trans(THD *thd, enum enum_mysql_completiontype completion);

unknown's avatar
unknown committed
727
Item *negate_expression(THD *thd, Item *expr);
728 729

/* log.cc */
730
int vprint_msg_to_log(enum loglevel level, const char *format, va_list args);
731 732 733 734
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);
735 736 737 738 739 740 741 742
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,
743
                    ulonglong current_utime);
744 745 746

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

748 749 750
bool general_log_write(THD *thd, enum enum_server_command command,
                       const char *query, uint query_length);

unknown's avatar
unknown committed
751
#include "sql_class.h"
752 753
#include "sql_acl.h"
#include "tztime.h"
754
#ifdef MYSQL_SERVER
unknown's avatar
unknown committed
755
#include "sql_servers.h"
unknown's avatar
unknown committed
756
#include "opt_range.h"
unknown's avatar
unknown committed
757 758

#ifdef HAVE_QUERY_CACHE
759 760 761
struct Query_cache_query_flags
{
  unsigned int client_long_flag:1;
762
  unsigned int client_protocol_41:1;
763
  unsigned int result_in_binary_protocol:1;
764
  unsigned int more_results_exists:1;
765
  unsigned int pkt_nr;
unknown's avatar
unknown committed
766 767 768
  uint character_set_client_num;
  uint character_set_results_num;
  uint collation_connection_num;
769
  ha_rows limit;
770
  Time_zone *time_zone;
771 772 773
  ulong sql_mode;
  ulong max_sort_length;
  ulong group_concat_max_len;
774
  ulong default_week_format;
775
  ulong div_precision_increment;
unknown's avatar
unknown committed
776
  MY_LOCALE *lc_time_names;
777 778
};
#define QUERY_CACHE_FLAGS_SIZE sizeof(Query_cache_query_flags)
unknown's avatar
unknown committed
779
#include "sql_cache.h"
unknown's avatar
unknown committed
780 781 782
#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)
783
#define query_cache_init() query_cache.init()
unknown's avatar
unknown committed
784
#define query_cache_resize(A) query_cache.resize(A)
785
#define query_cache_set_min_res_unit(A) query_cache.set_min_res_unit(A)
unknown's avatar
unknown committed
786 787 788 789 790 791
#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
792 793 794 795 796
/* 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)
unknown's avatar
unknown committed
797
#else
798
#define QUERY_CACHE_FLAGS_SIZE 0
unknown's avatar
unknown committed
799 800 801
#define query_cache_store_query(A, B)
#define query_cache_destroy()
#define query_cache_result_size_limit(A)
802
#define query_cache_init()
unknown's avatar
unknown committed
803
#define query_cache_resize(A)
804
#define query_cache_set_min_res_unit(A)
unknown's avatar
unknown committed
805 806 807 808 809 810 811 812
#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
813 814
#define query_cache_maybe_disabled(T) 1
#define query_cache_is_cacheable_query(L) 0
unknown's avatar
unknown committed
815
#endif /*HAVE_QUERY_CACHE*/
unknown's avatar
unknown committed
816

817 818 819 820 821
/*
  Error injector Macros to enable easy testing of recovery after failures
  in various error cases.
*/
#ifndef ERROR_INJECT_SUPPORT
822

823
#define ERROR_INJECT(x) 0
824
#define ERROR_INJECT_ACTION(x,action) 0
825
#define ERROR_INJECT_CRASH(x) 0
826 827 828
#define ERROR_INJECT_VALUE(x) 0
#define ERROR_INJECT_VALUE_ACTION(x,action) 0
#define ERROR_INJECT_VALUE_CRASH(x) 0
829
#define SET_ERROR_INJECT_VALUE(x)
830

831 832
#else

833
inline bool check_and_unset_keyword(const char *dbug_str)
unknown's avatar
unknown committed
834
{
835 836 837
  const char *extra_str= "-d,";
  char total_str[200];
  if (_db_strict_keyword_ (dbug_str))
unknown's avatar
unknown committed
838
  {
839 840
    strxmov(total_str, extra_str, dbug_str, NullS);
    DBUG_SET(total_str);
unknown's avatar
unknown committed
841 842 843 844 845 846
    return 1;
  }
  return 0;
}


847
inline bool
848
check_and_unset_inject_value(int value)
849
{
unknown's avatar
unknown committed
850
  THD *thd= current_thd;
851
  if (thd->error_inject_value == (uint)value)
unknown's avatar
unknown committed
852
  {
853
    thd->error_inject_value= 0;
unknown's avatar
unknown committed
854 855 856
    return 1;
  }
  return 0;
857 858
}

859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895
/*
  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)
896
#define ERROR_INJECT_CRASH(code) \
897
  DBUG_EVALUATE_IF(code, (abort(), 0), 0)
898
#define ERROR_INJECT_ACTION(code, action) \
899
  (check_and_unset_keyword(code) ? ((action), 0) : 0)
900
#define ERROR_INJECT(code) \
901
  check_and_unset_keyword(code)
902
#define ERROR_INJECT_VALUE(value) \
903
  check_and_unset_inject_value(value)
904
#define ERROR_INJECT_VALUE_ACTION(value,action) \
905
  (check_and_unset_inject_value(value) ? (action) : 0)
906
#define ERROR_INJECT_VALUE_CRASH(value) \
907
  ERROR_INJECT_VALUE_ACTION(value, (abort(), 0))
908

909
#endif
910

unknown's avatar
unknown committed
911 912 913
void write_bin_log(THD *thd, bool clear_error,
                   char const *query, ulong query_length);

unknown's avatar
unknown committed
914 915 916 917 918 919 920 921 922 923 924 925 926 927 928
/* 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);
bool login_connection(THD *thd);
void end_connection(THD *thd);

unknown's avatar
unknown committed
929 930 931
bool mysql_create_db(THD *thd, char *db, HA_CREATE_INFO *create, bool silent);
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);
932
bool mysql_upgrade_db(THD *thd, LEX_STRING *old_db);
933
void mysql_binlog_send(THD* thd, char* log_ident, my_off_t pos, ushort flags);
934
void mysql_client_binlog_statement(THD *thd);
unknown's avatar
unknown committed
935 936
bool mysql_rm_table(THD *thd,TABLE_LIST *tables, my_bool if_exists,
                    my_bool drop_temporary);
937
int mysql_rm_table_part2(THD *thd, TABLE_LIST *tables, bool if_exists,
938
                         bool drop_temporary, bool drop_view, bool log_query);
unknown's avatar
unknown committed
939
bool quick_rm_table(handlerton *base,const char *db,
940
                    const char *table_name, uint flags);
941
void close_cached_table(THD *thd, TABLE *table);
unknown's avatar
unknown committed
942
bool mysql_rename_tables(THD *thd, TABLE_LIST *table_list, bool silent);
943 944 945
bool do_rename(THD *thd, TABLE_LIST *ren_table, char *new_db,
                      char *new_table_name, char *new_table_alias,
                      bool skip_error);
946

947 948
bool mysql_change_db(THD *thd, const LEX_STRING *new_db_name,
                     bool force_switch);
949

950 951 952 953 954 955
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);

956 957 958
void mysql_parse(THD *thd, const char *inBuf, uint length,
                 const char ** semicolon);

959
bool mysql_test_parse_for_slave(THD *thd,char *inBuf,uint length);
960
bool is_update_query(enum enum_sql_command command);
961
bool is_log_table_write_query(enum enum_sql_command command);
962
bool alloc_query(THD *thd, const char *packet, uint packet_length);
963
void mysql_init_select(LEX *lex);
964
void mysql_reset_thd_for_next_command(THD *thd);
unknown's avatar
unknown committed
965
bool mysql_new_select(LEX *lex, bool move_down);
966
void create_select_for_variable(const char *var_name);
unknown's avatar
unknown committed
967
void mysql_init_multi_delete(LEX *lex);
968
bool multi_delete_set_locks_and_link_aux_tables(LEX *lex);
unknown's avatar
unknown committed
969
void init_max_user_conn(void);
970
void init_update_queries(void);
unknown's avatar
unknown committed
971
void free_max_user_conn(void);
972
pthread_handler_t handle_bootstrap(void *arg);
unknown's avatar
unknown committed
973
bool mysql_execute_command(THD *thd);
unknown's avatar
unknown committed
974
bool do_command(THD *thd);
975 976
bool dispatch_command(enum enum_server_command command, THD *thd,
		      char* packet, uint packet_length);
unknown's avatar
unknown committed
977
void log_slow_statement(THD *thd);
978
bool check_dup(const char *db, const char *name, TABLE_LIST *tables);
unknown's avatar
unknown committed
979
bool compare_record(TABLE *table);
980 981
bool append_file_to_dir(THD *thd, const char **filename_ptr, 
                        const char *table_name);
982

983
bool table_cache_init(void);
unknown's avatar
unknown committed
984
void table_cache_free(void);
unknown's avatar
unknown committed
985 986
bool table_def_init(void);
void table_def_free(void);
987
void assign_new_table_id(TABLE_SHARE *share);
unknown's avatar
unknown committed
988 989
uint cached_open_tables(void);
uint cached_table_definitions(void);
unknown's avatar
unknown committed
990
void kill_mysql(void);
991
void close_connection(THD *thd, uint errcode, bool lock);
unknown's avatar
unknown committed
992 993 994
bool reload_acl_and_cache(THD *thd, ulong options, TABLE_LIST *tables, 
                          bool *write_to_binlog);
bool check_access(THD *thd, ulong access, const char *db, ulong *save_priv,
995
		  bool no_grant, bool no_errors, bool schema_db);
unknown's avatar
unknown committed
996
bool check_table_access(THD *thd, ulong want_access, TABLE_LIST *tables,
unknown's avatar
unknown committed
997
			bool no_errors);
unknown's avatar
unknown committed
998
bool check_global_access(THD *thd, ulong want_access);
unknown's avatar
unknown committed
999

unknown's avatar
unknown committed
1000 1001 1002 1003
/*
  Support routine for SQL parser on partitioning syntax
*/
my_bool is_partition_management(LEX *lex);
1004 1005 1006 1007 1008 1009 1010 1011
/*
  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.
*/

1012 1013 1014
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);
1015

unknown's avatar
unknown committed
1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031
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);
unknown's avatar
unknown committed
1032 1033
int reassign_keycache_tables(THD* thd, KEY_CACHE *src_cache,
                             KEY_CACHE *dst_cache);
unknown's avatar
unknown committed
1034
TABLE *create_virtual_tmp_table(THD *thd, List<Create_field> &field_list);
unknown's avatar
unknown committed
1035

1036 1037
bool mysql_xa_recover(THD *thd);

1038
bool check_simple_select();
unknown's avatar
unknown committed
1039
int mysql_alter_tablespace(THD* thd, st_alter_tablespace *ts_info);
unknown's avatar
unknown committed
1040

1041 1042
SORT_FIELD * make_unireg_sortorder(ORDER *order, uint *length,
                                  SORT_FIELD *sortorder);
1043 1044 1045 1046
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,
unknown's avatar
unknown committed
1047
		bool *hidden_group_fields);
1048 1049
bool fix_inner_refs(THD *thd, List<Item> &all_fields, SELECT_LEX *select,
                   Item **ref_pointer_array);
unknown's avatar
unknown committed
1050

1051 1052
bool handle_select(THD *thd, LEX *lex, select_result *result,
                   ulong setup_tables_done_option);
unknown's avatar
unknown committed
1053 1054 1055
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,
1056
                  Item *having, ORDER *proc_param, ulonglong select_type, 
unknown's avatar
unknown committed
1057 1058
                  select_result *result, SELECT_LEX_UNIT *unit, 
                  SELECT_LEX *select_lex);
unknown's avatar
unknown committed
1059
void free_underlaid_joins(THD *thd, SELECT_LEX *select);
unknown's avatar
unknown committed
1060 1061
bool mysql_explain_union(THD *thd, SELECT_LEX_UNIT *unit,
                         select_result *result);
unknown's avatar
unknown committed
1062 1063
int mysql_explain_select(THD *thd, SELECT_LEX *sl, char const *type,
			 select_result *result);
unknown's avatar
unknown committed
1064
bool mysql_union(THD *thd, LEX *lex, select_result *result,
1065
                 SELECT_LEX_UNIT *unit, ulong setup_tables_done_option);
1066 1067 1068 1069 1070
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);
unknown's avatar
unknown committed
1071
Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
unknown's avatar
unknown committed
1072
			Item ***copy_func, Field **from_field,
1073
                        Field **def_field,
unknown's avatar
unknown committed
1074
			bool group, bool modify_item,
unknown's avatar
unknown committed
1075
			bool table_cant_handle_bit_fields,
unknown's avatar
unknown committed
1076
                        bool make_copy_field,
unknown's avatar
unknown committed
1077
                        uint convert_blob_length);
unknown's avatar
unknown committed
1078 1079
void sp_prepare_create_field(THD *thd, Create_field *sql_field);
int prepare_create_field(Create_field *sql_field, 
unknown's avatar
unknown committed
1080 1081
			 uint *blob_columns, 
			 int *timestamps, int *timestamps_with_niladic,
1082
			 longlong table_flags);
unknown's avatar
unknown committed
1083 1084
bool mysql_create_table(THD *thd,const char *db, const char *table_name,
                        HA_CREATE_INFO *create_info,
1085 1086
                        Alter_info *alter_info,
                        bool tmp_table, uint select_field_count);
unknown's avatar
unknown committed
1087 1088 1089
bool mysql_create_table_no_lock(THD *thd, const char *db,
                                const char *table_name,
                                HA_CREATE_INFO *create_info,
1090 1091
                                Alter_info *alter_info,
                                bool tmp_table, uint select_field_count);
unknown's avatar
unknown committed
1092

unknown's avatar
unknown committed
1093 1094 1095
bool mysql_alter_table(THD *thd, char *new_db, char *new_name,
                       HA_CREATE_INFO *create_info,
                       TABLE_LIST *table_list,
1096 1097 1098
                       Alter_info *alter_info,
                       uint order_num, ORDER *order, bool ignore);
bool mysql_recreate_table(THD *thd, TABLE_LIST *table_list);
unknown's avatar
unknown committed
1099
bool mysql_create_like_table(THD *thd, TABLE_LIST *table,
1100
                             TABLE_LIST *src_table,
unknown's avatar
unknown committed
1101
                             HA_CREATE_INFO *create_info);
1102 1103 1104
bool mysql_rename_table(handlerton *base, const char *old_db,
                        const char * old_name, const char *new_db,
                        const char * new_name, uint flags);
unknown's avatar
unknown committed
1105 1106
bool mysql_prepare_update(THD *thd, TABLE_LIST *table_list,
                          Item **conds, uint order_num, ORDER *order);
unknown's avatar
unknown committed
1107 1108 1109
int mysql_update(THD *thd,TABLE_LIST *tables,List<Item> &fields,
		 List<Item> &values,COND *conds,
		 uint order_num, ORDER *order, ha_rows limit,
1110
		 enum enum_duplicates handle_duplicates, bool ignore);
unknown's avatar
unknown committed
1111 1112
bool mysql_multi_update(THD *thd, TABLE_LIST *table_list,
                        List<Item> *fields, List<Item> *values,
1113
                        COND *conds, ulonglong options,
1114
                        enum enum_duplicates handle_duplicates, bool ignore,
unknown's avatar
unknown committed
1115 1116 1117 1118
                        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,
unknown's avatar
unknown committed
1119
                          List<Item> &update_values, enum_duplicates duplic,
unknown's avatar
unknown committed
1120 1121
                          COND **where, bool select_insert,
                          bool check_fields, bool abort_on_warning);
unknown's avatar
unknown committed
1122 1123
bool mysql_insert(THD *thd,TABLE_LIST *table,List<Item> &fields,
                  List<List_item> &values, List<Item> &update_fields,
1124 1125
                  List<Item> &update_values, enum_duplicates flag,
                  bool ignore);
1126 1127
int check_that_all_fields_are_given_values(THD *thd, TABLE *entry,
                                           TABLE_LIST *table_list);
unknown's avatar
unknown committed
1128
void prepare_triggers_for_insert_stmt(TABLE *table);
unknown's avatar
unknown committed
1129
bool mysql_prepare_delete(THD *thd, TABLE_LIST *table_list, Item **conds);
unknown's avatar
unknown committed
1130 1131 1132
bool mysql_delete(THD *thd, TABLE_LIST *table_list, COND *conds,
                  SQL_LIST *order, ha_rows rows, ulonglong options,
                  bool reset_auto_increment);
unknown's avatar
unknown committed
1133 1134
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);
1135
uint create_table_def_key(THD *thd, char *key, TABLE_LIST *table_list,
unknown's avatar
unknown committed
1136
                          bool tmp_table);
1137
TABLE_SHARE *get_table_share(THD *thd, TABLE_LIST *table_list, char *key,
unknown's avatar
unknown committed
1138 1139 1140
                             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);
1141 1142
TABLE *open_ltable(THD *thd, TABLE_LIST *table_list, thr_lock_type update,
                   uint lock_flags);
unknown's avatar
VIEW  
unknown committed
1143
TABLE *open_table(THD *thd, TABLE_LIST *table_list, MEM_ROOT* mem,
1144
		  bool *refresh, uint flags);
unknown's avatar
unknown committed
1145 1146 1147 1148 1149
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);
unknown's avatar
unknown committed
1150
TABLE *find_locked_table(THD *thd, const char *db,const char *table_name);
1151
bool reopen_table(TABLE *table);
unknown's avatar
unknown committed
1152
bool reopen_tables(THD *thd,bool get_locks,bool in_refresh);
1153 1154 1155
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);
unknown's avatar
unknown committed
1156
bool wait_for_tables(THD *thd);
unknown's avatar
unknown committed
1157
bool table_is_used(TABLE *table, bool wait_for_name_lock);
1158
TABLE *drop_locked_tables(THD *thd,const char *db, const char *table_name);
unknown's avatar
unknown committed
1159
void abort_locked_tables(THD *thd,const char *db, const char *table_name);
1160 1161
void execute_init_command(THD *thd, sys_var_str *init_command_var,
			  rw_lock_t *var_mutex);
unknown's avatar
unknown committed
1162 1163
extern Field *not_found_field;
extern Field *view_ref_found;
1164 1165 1166 1167

enum find_item_error_report_type {REPORT_ALL_ERRORS, REPORT_EXCEPT_NOT_FOUND,
				  IGNORE_ERRORS, REPORT_EXCEPT_NON_UNIQUE,
                                  IGNORE_EXCEPT_NON_UNIQUE};
1168
Field *
unknown's avatar
unknown committed
1169 1170 1171 1172
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);
1173
Field *
unknown's avatar
unknown committed
1174
find_field_in_table_ref(THD *thd, TABLE_LIST *table_list,
1175 1176 1177
                        const char *name, uint length,
                        const char *item_name, const char *db_name,
                        const char *table_name, Item **ref,
1178
                        bool check_privileges, bool allow_rowid,
unknown's avatar
unknown committed
1179 1180
                        uint *cached_field_index_ptr,
                        bool register_tree_change, TABLE_LIST **actual_table);
1181
Field *
1182 1183
find_field_in_table(THD *thd, TABLE *table, const char *name, uint length,
                    bool allow_rowid, uint *cached_field_index_ptr);
1184 1185 1186
Field *
find_field_in_table_sef(TABLE *table, const char *name);

1187 1188
#endif /* MYSQL_SERVER */

unknown's avatar
unknown committed
1189
#ifdef HAVE_OPENSSL
1190
#include <openssl/des.h>
1191 1192
struct st_des_keyblock
{
unknown's avatar
unknown committed
1193
  DES_cblock key1, key2, key3;
unknown's avatar
unknown committed
1194 1195 1196
};
struct st_des_keyschedule
{
1197
  DES_key_schedule ks1, ks2, ks3;
unknown's avatar
unknown committed
1198
};
unknown's avatar
unknown committed
1199
extern char *des_key_file;
unknown's avatar
unknown committed
1200
extern struct st_des_keyschedule des_keyschedule[10];
unknown's avatar
unknown committed
1201
extern uint des_default_key;
unknown's avatar
unknown committed
1202 1203
extern pthread_mutex_t LOCK_des_key_file;
bool load_des_key_file(const char *file_name);
unknown's avatar
unknown committed
1204
#endif /* HAVE_OPENSSL */
unknown's avatar
unknown committed
1205

1206
#ifdef MYSQL_SERVER
unknown's avatar
unknown committed
1207
/* sql_do.cc */
unknown's avatar
unknown committed
1208
bool mysql_do(THD *thd, List<Item> &values);
unknown's avatar
unknown committed
1209

1210 1211 1212
/* sql_analyse.h */
bool append_escaped(String *to_str, String *from_str);

unknown's avatar
unknown committed
1213
/* sql_show.cc */
unknown's avatar
unknown committed
1214 1215
bool mysqld_show_open_tables(THD *thd,const char *wild);
bool mysqld_show_logs(THD *thd);
1216 1217
void append_identifier(THD *thd, String *packet, const char *name,
		       uint length);
1218 1219
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1220
int get_quote_char_for_identifier(THD *thd, const char *name, uint length);
1221 1222
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
unknown's avatar
unknown committed
1223
void mysqld_list_fields(THD *thd,TABLE_LIST *table, const char *wild);
unknown's avatar
unknown committed
1224
int mysqld_dump_create_info(THD *thd, TABLE_LIST *table_list, int fd);
unknown's avatar
unknown committed
1225 1226
bool mysqld_show_create(THD *thd, TABLE_LIST *table_list);
bool mysqld_show_create_db(THD *thd, char *dbname, HA_CREATE_INFO *create);
unknown's avatar
unknown committed
1227 1228 1229 1230

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);
unknown's avatar
unknown committed
1231
bool mysqld_show_storage_engines(THD *thd);
unknown's avatar
unknown committed
1232
bool mysqld_show_authors(THD *thd);
1233
bool mysqld_show_contributors(THD *thd);
unknown's avatar
unknown committed
1234 1235 1236
bool mysqld_show_privileges(THD *thd);
bool mysqld_show_column_types(THD *thd);
bool mysqld_help (THD *thd, const char *text);
1237
void calc_sum_of_all_status(STATUS_VAR *to);
unknown's avatar
unknown committed
1238

1239 1240 1241
void append_definer(THD *thd, String *buffer, const LEX_STRING *definer_user,
                    const LEX_STRING *definer_host);

1242 1243 1244 1245
int add_status_vars(SHOW_VAR *list);
void remove_status_vars(SHOW_VAR *list);
void init_status_vars();
void free_status_vars();
unknown's avatar
unknown committed
1246
void reset_status_vars();
1247

1248
/* information schema */
1249
extern LEX_STRING INFORMATION_SCHEMA_NAME;
1250 1251 1252 1253 1254
/* log tables */
extern LEX_STRING MYSQL_SCHEMA_NAME;
extern LEX_STRING GENERAL_LOG_NAME;
extern LEX_STRING SLOW_LOG_NAME;

unknown's avatar
unknown committed
1255
extern const LEX_STRING partition_keywords[];
1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266
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);
1267 1268
bool get_schema_tables_result(JOIN *join,
                              enum enum_schema_table_state executed_place);
1269 1270
enum enum_schema_tables get_schema_table_idx(ST_SCHEMA_TABLE *schema_table);

1271
#define is_schema_db(X) \
1272
  !my_strcasecmp(system_charset_info, INFORMATION_SCHEMA_NAME.str, (X))
1273

unknown's avatar
unknown committed
1274
/* sql_prepare.cc */
1275 1276

void mysql_stmt_prepare(THD *thd, const char *packet, uint packet_length);
1277
void mysql_stmt_execute(THD *thd, char *packet, uint packet_length);
1278
void mysql_stmt_close(THD *thd, char *packet);
1279 1280 1281 1282
void mysql_sql_stmt_prepare(THD *thd);
void mysql_sql_stmt_execute(THD *thd);
void mysql_sql_stmt_close(THD *thd);
void mysql_stmt_fetch(THD *thd, char *packet, uint packet_length);
1283
void mysql_stmt_reset(THD *thd, char *packet);
1284
void mysql_stmt_get_longdata(THD *thd, char *pos, ulong packet_length);
1285
void reinit_stmt_before_use(THD *thd, LEX *lex);
unknown's avatar
unknown committed
1286

1287
/* sql_handler.cc */
unknown's avatar
unknown committed
1288
bool mysql_ha_open(THD *thd, TABLE_LIST *tables, bool reopen);
unknown's avatar
merge  
unknown committed
1289
bool mysql_ha_close(THD *thd, TABLE_LIST *tables);
unknown's avatar
unknown committed
1290 1291
bool mysql_ha_read(THD *, TABLE_LIST *,enum enum_ha_read_modes,char *,
                   List<Item> *,enum ha_rkey_function,Item *,ha_rows,ha_rows);
1292 1293
int mysql_ha_flush(THD *thd, TABLE_LIST *tables, uint mode_flags,
                   bool is_locked);
1294 1295 1296 1297
/* mysql_ha_flush mode_flags bits */
#define MYSQL_HA_CLOSE_FINAL        0x00
#define MYSQL_HA_REOPEN_ON_USAGE    0x01
#define MYSQL_HA_FLUSH_ALL          0x02
1298

unknown's avatar
unknown committed
1299
/* sql_base.cc */
unknown's avatar
unknown committed
1300
#define TMP_TABLE_KEY_EXTRA 8
unknown's avatar
unknown committed
1301
void set_item_name(Item *item,char *pos,uint length);
1302
bool add_field_to_list(THD *thd, LEX_STRING *field_name, enum enum_field_types type,
unknown's avatar
unknown committed
1303
		       char *length, char *decimal,
1304
		       uint type_modifier,
1305
		       Item *default_value, Item *on_update_value,
unknown's avatar
unknown committed
1306
		       LEX_STRING *comment,
1307 1308
		       char *change, List<String> *interval_list,
		       CHARSET_INFO *cs,
unknown's avatar
unknown committed
1309
		       uint uint_geom_type);
unknown's avatar
unknown committed
1310
Create_field * new_create_field(THD *thd, char *field_name, enum_field_types type,
unknown's avatar
unknown committed
1311 1312 1313 1314 1315 1316
				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);
unknown's avatar
unknown committed
1317
void store_position_for_column(const char *name);
unknown's avatar
unknown committed
1318
bool add_to_list(THD *thd, SQL_LIST &list,Item *group,bool asc);
1319 1320 1321
bool push_new_name_resolution_context(THD *thd,
                                      TABLE_LIST *left_op,
                                      TABLE_LIST *right_op);
unknown's avatar
unknown committed
1322
void add_join_on(TABLE_LIST *b,Item *expr);
1323 1324
void add_join_natural(TABLE_LIST *a,TABLE_LIST *b,List<String> *using_fields,
                      SELECT_LEX *lex);
unknown's avatar
unknown committed
1325
bool add_proc_to_list(THD *thd, Item *item);
unknown's avatar
unknown committed
1326 1327 1328
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);
1329 1330 1331
void update_non_unique_table_error(TABLE_LIST *update,
                                   const char *operation,
                                   TABLE_LIST *duplicate);
unknown's avatar
unknown committed
1332 1333

SQL_SELECT *make_select(TABLE *head, table_map const_tables,
unknown's avatar
unknown committed
1334 1335
			table_map read_tables, COND *conds,
                        bool allow_null_cond,  int *error);
unknown's avatar
unknown committed
1336
extern Item **not_found_item;
unknown's avatar
unknown committed
1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356

/*
  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
};
1357
Item ** find_item_in_list(Item *item, List<Item> &items, uint *counter,
1358
                          find_item_error_report_type report_error,
unknown's avatar
unknown committed
1359
                          enum_resolution_type *resolution);
1360
bool get_key_map_from_key_list(key_map *map, TABLE *table,
1361
                               List<String> *index_list);
1362
bool insert_fields(THD *thd, Name_resolution_context *context,
1363
		   const char *db_name, const char *table_name,
1364 1365
                   List_iterator<Item> *it, bool any_privileges);
bool setup_tables(THD *thd, Name_resolution_context *context,
unknown's avatar
unknown committed
1366
                  List<TABLE_LIST> *from_clause, TABLE_LIST *tables,
1367
                  TABLE_LIST **leaves, bool select_insert);
1368 1369 1370 1371 1372 1373
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,
1374
                                   ulong want_access_first,
1375
                                   ulong want_access);
1376 1377
int setup_wild(THD *thd, TABLE_LIST *tables, List<Item> &fields,
	       List<Item> *sum_func_list, uint wild_num);
1378
bool setup_fields(THD *thd, Item** ref_pointer_array,
1379
                  List<Item> &item, enum_mark_columns mark_used_columns,
unknown's avatar
unknown committed
1380
                  List<Item> *sum_func_list, bool allow_sum_func);
1381
inline bool setup_fields_with_no_wrap(THD *thd, Item **ref_pointer_array,
1382 1383 1384 1385
                                      List<Item> &item,
                                      enum_mark_columns mark_used_columns,
                                      List<Item> *sum_func_list,
                                      bool allow_sum_func)
1386 1387 1388
{
  bool res;
  thd->lex->select_lex.no_wrap_view_item= TRUE;
1389
  res= setup_fields(thd, ref_pointer_array, item, mark_used_columns, sum_func_list,
1390 1391 1392 1393
                    allow_sum_func);
  thd->lex->select_lex.no_wrap_view_item= FALSE;
  return res;
}
1394 1395
int setup_conds(THD *thd, TABLE_LIST *tables, TABLE_LIST *leaves,
		COND **conds);
1396 1397
int setup_ftfuncs(SELECT_LEX* select);
int init_ftfuncs(THD *thd, SELECT_LEX* select, bool no_order);
unknown's avatar
unknown committed
1398 1399
void wait_for_condition(THD *thd, pthread_mutex_t *mutex,
                        pthread_cond_t *cond);
1400
int open_tables(THD *thd, TABLE_LIST **tables, uint *counter, uint flags);
1401
int simple_open_n_lock_tables(THD *thd,TABLE_LIST *tables);
unknown's avatar
unknown committed
1402
bool open_and_lock_tables(THD *thd,TABLE_LIST *tables);
1403
bool open_normal_and_derived_tables(THD *thd, TABLE_LIST *tables, uint flags);
1404
int lock_tables(THD *thd, TABLE_LIST *tables, uint counter, bool *need_reopen);
1405
int decide_logging_format(THD *thd, TABLE_LIST *tables);
unknown's avatar
unknown committed
1406 1407
TABLE *open_temporary_table(THD *thd, const char *path, const char *db,
			    const char *table_name, bool link_in_list);
unknown's avatar
unknown committed
1408
bool rm_temporary_table(handlerton *base, char *path);
unknown's avatar
unknown committed
1409 1410
void free_io_cache(TABLE *entry);
void intern_close_table(TABLE *entry);
1411
bool close_thread_table(THD *thd, TABLE **table_ptr);
unknown's avatar
unknown committed
1412
void close_temporary_tables(THD *thd);
1413
void close_tables_for_reopen(THD *thd, TABLE_LIST **tables);
1414
TABLE_LIST *find_table_in_list(TABLE_LIST *table,
1415
                               TABLE_LIST *TABLE_LIST::*link,
1416 1417
                               const char *db_name,
                               const char *table_name);
1418 1419
TABLE_LIST *unique_table(THD *thd, TABLE_LIST *table, TABLE_LIST *table_list,
                         bool check_alias);
unknown's avatar
unknown committed
1420 1421 1422 1423 1424 1425
TABLE *find_temporary_table(THD *thd, const char *db, const char *table_name);
TABLE *find_temporary_table(THD *thd, TABLE_LIST *table_list);
bool close_temporary_table(THD *thd, TABLE_LIST *table_list);
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);
1426
bool rename_temporary_table(THD* thd, TABLE *table, const char *new_db,
unknown's avatar
unknown committed
1427
			    const char *table_name);
1428
void remove_db_from_cache(const char *db);
unknown's avatar
unknown committed
1429
void flush_tables();
1430
bool is_equal(const LEX_STRING *a, const LEX_STRING *b);
1431
char *make_default_log_name(char *buff,const char* log_ext);
unknown's avatar
unknown committed
1432

unknown's avatar
unknown committed
1433 1434
#ifdef WITH_PARTITION_STORAGE_ENGINE
uint fast_alter_partition_table(THD *thd, TABLE *table,
1435
                                Alter_info *alter_info,
unknown's avatar
unknown committed
1436 1437
                                HA_CREATE_INFO *create_info,
                                TABLE_LIST *table_list,
1438
                                char *db,
unknown's avatar
unknown committed
1439 1440
                                const char *table_name,
                                uint fast_alter_partition);
1441
uint prep_alter_part_table(THD *thd, TABLE *table, Alter_info *alter_info,
unknown's avatar
unknown committed
1442 1443 1444 1445 1446 1447
                           HA_CREATE_INFO *create_info,
                           handlerton *old_db_type,
                           bool *partition_changed,
                           uint *fast_alter_partition);
#endif

unknown's avatar
unknown committed
1448
/* bits for last argument to remove_table_from_cache() */
unknown's avatar
unknown committed
1449 1450 1451 1452
#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
1453
bool remove_table_from_cache(THD *thd, const char *db, const char *table,
unknown's avatar
unknown committed
1454
                             uint flags);
unknown's avatar
unknown committed
1455

1456 1457 1458 1459 1460 1461 1462 1463 1464 1465
#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);

unknown's avatar
unknown committed
1466 1467
typedef struct st_lock_param_type
{
1468
  TABLE_LIST table_list;
unknown's avatar
unknown committed
1469 1470 1471 1472
  ulonglong copied;
  ulonglong deleted;
  THD *thd;
  HA_CREATE_INFO *create_info;
1473
  Alter_info *alter_info;
unknown's avatar
unknown committed
1474 1475 1476 1477
  TABLE *table;
  KEY *key_info_buffer;
  const char *db;
  const char *table_name;
1478
  uchar *pack_frm_data;
unknown's avatar
unknown committed
1479 1480 1481
  enum thr_lock_type old_lock_type;
  uint key_count;
  uint db_options;
1482
  size_t pack_frm_len;
1483
  partition_info *part_info;
unknown's avatar
unknown committed
1484 1485 1486
} ALTER_PARTITION_PARAM_TYPE;

void mem_alloc_error(size_t size);
1487

1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525
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
unknown's avatar
unknown committed
1526 1527 1528
{
  const char *name;
  const char *from_name;
1529
  const char *handler_name;
unknown's avatar
unknown committed
1530
  uint next_entry;
1531
  uint entry_pos;
1532 1533
  enum ddl_log_entry_code entry_type;
  enum ddl_log_action_code action_type;
1534 1535 1536 1537 1538 1539
  /*
    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.
  */
1540
  char phase;
1541
} DDL_LOG_ENTRY;
unknown's avatar
unknown committed
1542

1543
typedef struct st_ddl_log_memory_entry
1544 1545
{
  uint entry_pos;
1546 1547 1548 1549
  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;
unknown's avatar
unknown committed
1550

1551

1552 1553 1554
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,
1555
                                   bool complete,
1556 1557 1558 1559 1560 1561
                                   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();
unknown's avatar
Fixes  
unknown committed
1562
bool execute_ddl_log_entry(THD *thd, uint first_entry);
1563 1564

extern pthread_mutex_t LOCK_gdl;
unknown's avatar
unknown committed
1565

1566 1567
#define WFRM_WRITE_SHADOW 1
#define WFRM_INSTALL_SHADOW 2
unknown's avatar
unknown committed
1568 1569
#define WFRM_PACK_FRM 4
bool mysql_write_frm(ALTER_PARTITION_PARAM_TYPE *lpt, uint flags);
1570
int abort_and_upgrade_lock(ALTER_PARTITION_PARAM_TYPE *lpt);
unknown's avatar
unknown committed
1571 1572 1573
void close_open_tables_and_downgrade(ALTER_PARTITION_PARAM_TYPE *lpt);
void mysql_wait_completed_table(ALTER_PARTITION_PARAM_TYPE *lpt, TABLE *my_table);

1574 1575 1576 1577 1578 1579
/* 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);

1580 1581 1582 1583
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);

unknown's avatar
unknown committed
1584
bool close_cached_tables(THD *thd, bool wait_for_refresh, TABLE_LIST *tables, bool have_lock = FALSE);
1585 1586 1587
bool close_cached_connection_tables(THD *thd, bool wait_for_refresh,
                                    LEX_STRING *connect_string,
                                    bool have_lock = FALSE);
unknown's avatar
unknown committed
1588
void copy_field_from_tmp_record(Field *field,int offset);
unknown's avatar
unknown committed
1589 1590
bool fill_record(THD *thd, Field **field, List<Item> &values,
                 bool ignore_errors);
unknown's avatar
unknown committed
1591 1592 1593 1594 1595 1596 1597 1598 1599 1600
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);
1601
OPEN_TABLE_LIST *list_open_tables(THD *thd, const char *db, const char *wild);
unknown's avatar
unknown committed
1602

1603 1604 1605 1606
inline TABLE_LIST *find_table_in_global_list(TABLE_LIST *table,
                                             const char *db_name,
                                             const char *table_name)
{
1607
  return find_table_in_list(table, &TABLE_LIST::next_global,
1608 1609 1610 1611 1612 1613 1614
                            db_name, table_name);
}

inline TABLE_LIST *find_table_in_local_list(TABLE_LIST *table,
                                            const char *db_name,
                                            const char *table_name)
{
1615
  return find_table_in_list(table, &TABLE_LIST::next_local,
1616 1617 1618 1619
                            db_name, table_name);
}


unknown's avatar
unknown committed
1620 1621 1622 1623
/* sql_calc.cc */
bool eval_const_cond(COND *cond);

/* sql_load.cc */
unknown's avatar
merge  
unknown committed
1624
bool mysql_load(THD *thd, sql_exchange *ex, TABLE_LIST *table_list,
unknown's avatar
unknown committed
1625 1626 1627
	        List<Item> &fields_vars, List<Item> &set_fields,
                List<Item> &set_values_list,
                enum enum_duplicates handle_duplicates, bool ignore,
1628
                bool local_file);
unknown's avatar
unknown committed
1629
int write_record(THD *thd, TABLE *table, COPY_INFO *info);
1630 1631

/* sql_manager.cc */
1632
extern ulong volatile manager_status;
1633
extern bool volatile manager_thread_in_use, mqh_used;
1634
extern pthread_t manager_thread;
1635
pthread_handler_t handle_manager(void *arg);
1636 1637
bool mysql_manager_submit(void (*action)());

1638

unknown's avatar
unknown committed
1639 1640 1641 1642
/* sql_test.cc */
#ifndef DBUG_OFF
void print_where(COND *cond,const char *info);
void print_cached_tables(void);
1643
void TEST_filesort(SORT_FIELD *sortorder,uint s_length);
1644 1645
void print_plan(JOIN* join,uint idx, double record_count, double read_time,
                double current_read_time, const char *info);
unknown's avatar
unknown committed
1646
#endif
1647
void mysql_print_status();
unknown's avatar
unknown committed
1648
/* key.cc */
1649
int find_ref_key(KEY *key, uint key_count, uchar *record, Field *field,
1650
                 uint *key_length, uint *keypart);
1651 1652
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,
1653
                 uint key_length);
1654
bool key_cmp_if_same(TABLE *form,const uchar *key,uint index,uint key_length);
unknown's avatar
unknown committed
1655
void key_unpack(String *to,TABLE *form,uint index);
1656
bool is_key_used(TABLE *table, uint idx, const MY_BITMAP *fields);
1657
int key_cmp(KEY_PART_INFO *key_part, const uchar *key, uint key_length);
1658
extern "C" int key_rec_cmp(void *key_info, uchar *a, uchar *b);
unknown's avatar
unknown committed
1659

unknown's avatar
unknown committed
1660
bool init_errmessage(void);
1661
#endif /* MYSQL_SERVER */
unknown's avatar
unknown committed
1662
void sql_perror(const char *message);
unknown's avatar
unknown committed
1663

1664
bool fn_format_relative_to_data_home(char * to, const char *name,
1665
				     const char *dir, const char *extension);
1666
#ifdef MYSQL_SERVER
1667 1668
File open_binlog(IO_CACHE *log, const char *log_file_name,
                 const char **errmsg);
unknown's avatar
unknown committed
1669

1670
/* mysqld.cc */
1671
extern void MYSQLerror(const char*);
1672
void refresh_status(THD *thd);
1673
my_bool mysql_rm_tmp_tables(void);
unknown's avatar
unknown committed
1674 1675 1676 1677 1678
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();
1679

1680 1681
/* item_func.cc */
extern bool check_reserved_words(LEX_STRING *name);
1682
extern enum_field_types agg_field_type(Item **items, uint nitems);
1683

1684
/* strfunc.cc */
1685
ulonglong find_set(TYPELIB *lib, const char *x, uint length, CHARSET_INFO *cs,
1686
		   char **err_pos, uint *err_len, bool *set_warning);
1687 1688 1689 1690
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);
1691
void unhex_type2(TYPELIB *lib);
1692 1693
uint check_word(TYPELIB *lib, const char *val, const char *end,
		const char **end_of_word);
1694
int find_string_in_array(LEX_STRING * const haystack, LEX_STRING * const needle,
unknown's avatar
unknown committed
1695
                         CHARSET_INFO * const cs);
1696

1697

1698
bool is_keyword(const char *name, uint len);
unknown's avatar
unknown committed
1699

1700
#define MY_DB_OPT_FILE "db.opt"
unknown's avatar
unknown committed
1701 1702
bool my_database_names_init(void);
void my_database_names_free(void);
1703
bool check_db_dir_existence(const char *db_name);
1704
bool load_db_opt(THD *thd, const char *path, HA_CREATE_INFO *create);
1705 1706
bool load_db_opt_by_name(THD *thd, const char *db_name,
                         HA_CREATE_INFO *db_create_info);
1707
CHARSET_INFO *get_default_db_collation(THD *thd, const char *db_name);
unknown's avatar
unknown committed
1708 1709
bool my_dbopt_init(void);
void my_dbopt_cleanup(void);
unknown's avatar
unknown committed
1710 1711
extern int creating_database; // How many database locks are made
extern int creating_table;    // How many mysql_create_table() are running
unknown's avatar
unknown committed
1712

unknown's avatar
unknown committed
1713 1714 1715 1716
/*
  External variables
*/

1717
extern time_t server_start_time;
1718 1719
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1720
extern uint mysql_data_home_len;
unknown's avatar
unknown committed
1721
extern char *mysql_data_home,server_version[SERVER_VERSION_LENGTH],
1722 1723 1724 1725
            mysql_real_data_home[];
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
extern char *opt_mysql_tmpdir, mysql_charsets_dir[],
1726
            def_ft_boolean_syntax[sizeof(ft_boolean_syntax)];
unknown's avatar
unknown committed
1727 1728
#define mysql_tmpdir (my_tmpdir(&mysql_tmpdir_list))
extern MY_TMPDIR mysql_tmpdir_list;
unknown's avatar
unknown committed
1729
extern const LEX_STRING command_name[];
unknown's avatar
unknown committed
1730
extern const char *first_keyword, *my_localhost, *delayed_user, *binary_keyword;
unknown's avatar
unknown committed
1731 1732
extern const char **errmesg;			/* Error messages */
extern const char *myisam_recover_options_str;
1733
extern const char *in_left_expr_name, *in_additional_cond, *in_having_cond;
1734 1735
extern const char * const TRG_EXT;
extern const char * const TRN_EXT;
unknown's avatar
unknown committed
1736 1737 1738 1739 1740 1741
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;
1742 1743 1744 1745
extern char language[FN_REFLEN];
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
extern char reg_ext[FN_EXTLEN];
1746
extern uint reg_ext_length;
1747 1748
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
unknown's avatar
unknown committed
1749
extern char glob_hostname[FN_REFLEN], mysql_home[FN_REFLEN];
1750
extern char pidfile_name[FN_REFLEN], system_time_zone[30], *opt_init_file;
unknown's avatar
unknown committed
1751
extern char log_error_file[FN_REFLEN], *opt_tc_log_file;
1752
extern ulonglong log_10_int[20];
1753
extern ulonglong keybuff_size;
1754
extern ulonglong thd_startup_options;
unknown's avatar
unknown committed
1755
extern ulong thread_id;
1756
extern ulong binlog_cache_use, binlog_cache_disk_use;
unknown's avatar
unknown committed
1757 1758 1759 1760 1761
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;
1762 1763
extern ulong slave_open_temp_tables;
extern ulong query_cache_size, query_cache_min_res_unit;
1764
extern ulong slow_launch_threads, slow_launch_time;
unknown's avatar
unknown committed
1765
extern ulong table_cache_size, table_def_size;
unknown's avatar
unknown committed
1766
extern ulong max_connections,max_connect_errors, connect_timeout;
1767
extern ulong slave_net_timeout, slave_trans_retries;
1768
extern uint max_user_connections;
1769
extern ulong what_to_log,flush_time;
1770
extern ulong query_buff_size, thread_stack;
1771
extern ulong max_prepared_stmt_count, prepared_stmt_count;
unknown's avatar
unknown committed
1772
extern ulong binlog_cache_size, max_binlog_cache_size, open_files_limit;
1773
extern ulong max_binlog_size, max_relay_log_size;
1774
extern ulong opt_binlog_rows_event_max_size;
unknown's avatar
unknown committed
1775
extern ulong rpl_recovery_rank, thread_cache_size, thread_pool_size;
1776
extern ulong back_log;
1777 1778 1779 1780 1781 1782
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
extern ulong specialflag;
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
extern ulong current_pid;
1783
extern ulong expire_logs_days, sync_binlog_period, sync_binlog_counter;
1784 1785
extern ulong opt_tc_log_size, tc_log_max_pages_used, tc_log_page_size;
extern ulong tc_log_page_waits;
1786
extern my_bool relay_log_purge, opt_innodb_safe_binlog, opt_innodb;
unknown's avatar
unknown committed
1787
extern uint test_flags,select_errors,ha_open_options;
1788
extern uint protocol_version, mysqld_port, dropping_tables;
1789 1790 1791 1792 1793 1794
extern uint delay_key_write_options;
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
extern uint lower_case_table_names;
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
1795 1796
extern bool opt_endinfo, using_udf_functions;
extern my_bool locked_in_memory;
1797 1798 1799 1800 1801 1802
extern bool opt_using_transactions;
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
extern bool mysqld_embedded;
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
1803
extern bool using_update_log, opt_large_files, server_id_supplied;
1804 1805
extern bool opt_update_log, opt_bin_log, opt_error_log;
extern my_bool opt_log, opt_slow_log;
unknown's avatar
unknown committed
1806
extern ulong log_output_options;
1807
extern my_bool opt_log_queries_not_using_indexes;
1808
extern bool opt_disable_networking, opt_skip_show_db;
1809
extern my_bool opt_character_set_client_handshake;
1810
extern bool volatile abort_loop, shutdown_in_progress;
unknown's avatar
unknown committed
1811
extern uint volatile thread_count, thread_running, global_read_lock;
1812
extern my_bool opt_sql_bin_update, opt_safe_user_create, opt_no_mix_types;
unknown's avatar
unknown committed
1813
extern my_bool opt_safe_show_db, opt_local_infile, opt_myisam_use_mmap;
1814
extern my_bool opt_slave_compressed_protocol, use_temp_pool;
1815
extern my_bool opt_readonly, lower_case_file_system;
1816
extern my_bool opt_enable_named_pipe, opt_sync_frm, opt_allow_suspicious_udfs;
1817
extern my_bool opt_secure_auth;
1818
extern char* opt_secure_file_priv;
1819
extern my_bool opt_log_slow_admin_statements, opt_log_slow_slave_statements;
1820
extern my_bool sp_automatic_privileges, opt_noacl;
1821
extern my_bool opt_old_style_user_limits, trust_function_creators;
unknown's avatar
unknown committed
1822
extern uint opt_crash_binlog_innodb;
1823
extern char *shared_memory_base_name, *mysqld_unix_port;
unknown's avatar
unknown committed
1824
extern my_bool opt_enable_shared_memory;
1825
extern char *default_tz_name;
1826 1827
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1828 1829
extern my_bool opt_large_pages;
extern uint opt_large_page_size;
1830 1831
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
1832 1833
extern char *opt_logname, *opt_slow_logname;
extern const char *log_output_str;
unknown's avatar
unknown committed
1834

1835
extern MYSQL_BIN_LOG mysql_bin_log;
1836 1837
extern LOGGER logger;
extern TABLE_LIST general_log, slow_log;
1838
extern FILE *bootstrap_file;
1839
extern int bootstrap_error;
1840
extern FILE *stderror_file;
unknown's avatar
unknown committed
1841
extern pthread_key(MEM_ROOT**,THR_MALLOC);
unknown's avatar
unknown committed
1842
extern pthread_mutex_t LOCK_mysql_create_db,LOCK_Acl,LOCK_open, LOCK_lock_db,
unknown's avatar
unknown committed
1843
       LOCK_thread_count,LOCK_mapped_file,LOCK_user_locks, LOCK_status,
unknown's avatar
unknown committed
1844
       LOCK_error_log, LOCK_delayed_insert, LOCK_uuid_generator,
unknown's avatar
unknown committed
1845
       LOCK_delayed_status, LOCK_delayed_create, LOCK_crypt, LOCK_timezone,
1846
       LOCK_slave_list, LOCK_active_mi, LOCK_manager, LOCK_global_read_lock,
1847
       LOCK_global_system_variables, LOCK_user_conn,
1848
       LOCK_prepared_stmt_count,
unknown's avatar
unknown committed
1849
       LOCK_bytes_sent, LOCK_bytes_received;
1850 1851 1852
#ifdef HAVE_OPENSSL
extern pthread_mutex_t LOCK_des_key_file;
#endif
unknown's avatar
unknown committed
1853 1854 1855
extern pthread_mutex_t LOCK_server_started;
extern pthread_cond_t COND_server_started;
extern int mysqld_server_started;
unknown's avatar
unknown committed
1856
extern rw_lock_t LOCK_grant, LOCK_sys_init_connect, LOCK_sys_init_slave;
unknown's avatar
unknown committed
1857
extern rw_lock_t LOCK_system_variables_hash;
1858
extern pthread_cond_t COND_refresh, COND_thread_count, COND_manager;
unknown's avatar
unknown committed
1859
extern pthread_cond_t COND_global_read_lock;
unknown's avatar
unknown committed
1860
extern pthread_attr_t connection_attrib;
unknown's avatar
unknown committed
1861
extern I_List<THD> threads;
1862
extern I_List<NAMED_LIST> key_caches;
1863
extern MY_BITMAP temp_pool;
unknown's avatar
SCRUM  
unknown committed
1864
extern String my_empty_string;
1865
extern const String my_null_string;
unknown's avatar
unknown committed
1866
extern SHOW_VAR status_vars[];
1867 1868
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
1869
extern struct system_variables global_system_variables;
1870 1871
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
unknown's avatar
unknown committed
1872
extern struct system_variables max_system_variables;
1873
extern struct system_status_var global_status_var;
1874
extern struct rand_struct sql_rand;
unknown's avatar
unknown committed
1875

1876 1877
extern const char *opt_date_time_formats[];
extern KNOWN_DATE_TIME_FORMAT known_date_time_formats[];
1878

unknown's avatar
unknown committed
1879
extern String null_string;
unknown's avatar
unknown committed
1880
extern HASH open_cache, lock_db_cache;
1881 1882 1883
extern TABLE *unused_tables;
extern const char* any_db;
extern struct my_option my_long_options[];
1884
extern const LEX_STRING view_type;
unknown's avatar
unknown committed
1885 1886 1887
extern scheduler_functions thread_scheduler;
extern TYPELIB thread_handling_typelib;
extern uint8 uc_update_queries[SQLCOM_END+1];
1888
extern uint sql_command_flags[];
1889
extern TYPELIB log_output_typelib;
unknown's avatar
unknown committed
1890

unknown's avatar
unknown committed
1891 1892
/* optional things, have_* variables */

1893 1894 1895
extern handlerton *partition_hton;
extern handlerton *myisam_hton;
extern handlerton *heap_hton;
unknown's avatar
unknown committed
1896

1897
extern SHOW_COMP_OPTION have_ssl, have_symlink, have_dlopen;
1898
extern SHOW_COMP_OPTION have_query_cache;
1899
extern SHOW_COMP_OPTION have_geometry, have_rtree_keys;
unknown's avatar
unknown committed
1900
extern SHOW_COMP_OPTION have_crypt;
unknown's avatar
unknown committed
1901
extern SHOW_COMP_OPTION have_compress;
1902

unknown's avatar
unknown committed
1903 1904 1905 1906
#ifndef __WIN__
extern pthread_t signal_thread;
#endif

1907
#ifdef HAVE_OPENSSL
unknown's avatar
unknown committed
1908
extern struct st_VioSSLFd * ssl_acceptor_fd;
1909 1910
#endif /* HAVE_OPENSSL */

1911 1912
MYSQL_LOCK *mysql_lock_tables(THD *thd, TABLE **table, uint count,
                              uint flags, bool *need_reopen);
1913
/* mysql_lock_tables() and open_table() flags bits */
1914 1915
#define MYSQL_LOCK_IGNORE_GLOBAL_READ_LOCK      0x0001
#define MYSQL_LOCK_IGNORE_FLUSH                 0x0002
1916
#define MYSQL_LOCK_NOTIFY_IF_NEED_REOPEN        0x0004
unknown's avatar
unknown committed
1917
#define MYSQL_OPEN_TEMPORARY_ONLY               0x0008
1918
#define MYSQL_LOCK_IGNORE_GLOBAL_READ_ONLY      0x0010
1919
#define MYSQL_LOCK_PERF_SCHEMA                  0x0020
1920

unknown's avatar
unknown committed
1921 1922 1923
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);
1924 1925
void mysql_lock_remove(THD *thd, MYSQL_LOCK *locked,TABLE *table,
                       bool always_unlock);
unknown's avatar
unknown committed
1926 1927 1928
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);
unknown's avatar
unknown committed
1929
bool mysql_lock_abort_for_thread(THD *thd, TABLE *table);
unknown's avatar
unknown committed
1930
MYSQL_LOCK *mysql_lock_merge(MYSQL_LOCK *a,MYSQL_LOCK *b);
1931 1932
TABLE_LIST *mysql_lock_have_duplicate(THD *thd, TABLE_LIST *needle,
                                      TABLE_LIST *haystack);
1933 1934
bool lock_global_read_lock(THD *thd);
void unlock_global_read_lock(THD *thd);
1935 1936
bool wait_if_global_read_lock(THD *thd, bool abort_on_refresh,
                              bool is_not_commit);
1937
void start_waiting_global_read_lock(THD *thd);
1938
bool make_global_read_lock_block_commit(THD *thd);
1939 1940
bool set_protect_against_global_read_lock(void);
void unset_protect_against_global_read_lock(void);
1941
void broadcast_refresh(void);
unknown's avatar
unknown committed
1942

unknown's avatar
unknown committed
1943
/* Lock based on name */
1944
int lock_and_wait_for_table_name(THD *thd, TABLE_LIST *table_list);
1945
int lock_table_name(THD *thd, TABLE_LIST *table_list, bool check_in_use);
unknown's avatar
unknown committed
1946 1947
void unlock_table_name(THD *thd, TABLE_LIST *table_list);
bool wait_for_locked_table_names(THD *thd, TABLE_LIST *table_list);
1948 1949
bool lock_table_names(THD *thd, TABLE_LIST *table_list);
void unlock_table_names(THD *thd, TABLE_LIST *table_list,
unknown's avatar
unknown committed
1950
			TABLE_LIST *last_table);
1951 1952 1953 1954 1955
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);
unknown's avatar
unknown committed
1956

unknown's avatar
unknown committed
1957 1958 1959 1960

/* old unireg functions */

void unireg_init(ulong options);
unknown's avatar
unknown committed
1961
void unireg_end(void) __attribute__((noreturn));
unknown's avatar
unknown committed
1962
bool mysql_create_frm(THD *thd, const char *file_name,
unknown's avatar
unknown committed
1963
                      const char *db, const char *table,
1964
		      HA_CREATE_INFO *create_info,
unknown's avatar
unknown committed
1965
		      List<Create_field> &create_field,
1966
		      uint key_count,KEY *key_info,handler *db_type);
unknown's avatar
unknown committed
1967 1968
int rea_create_table(THD *thd, const char *path,
                     const char *db, const char *table_name,
1969
                     HA_CREATE_INFO *create_info,
unknown's avatar
unknown committed
1970
  		     List<Create_field> &create_field,
unknown's avatar
unknown committed
1971 1972
                     uint key_count,KEY *key_info,
                     handler *file);
1973 1974
int format_number(uint inputflag,uint max_length,char * pos,uint length,
		  char * *errpos);
unknown's avatar
unknown committed
1975 1976

/* table.cc */
1977
TABLE_SHARE *alloc_table_share(TABLE_LIST *table_list, char *key,
unknown's avatar
unknown committed
1978 1979 1980 1981 1982 1983 1984 1985
                               uint key_length);
void init_tmp_table_share(TABLE_SHARE *share, const char *key, uint key_length,
                          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,
unknown's avatar
unknown committed
1986
                          TABLE *outparam, bool is_create_table);
1987 1988
int readfrm(const char *name, uchar **data, size_t *length);
int writefrm(const char* name, const uchar* data, size_t len);
unknown's avatar
unknown committed
1989
int closefrm(TABLE *table, bool free_share);
1990
int read_string(File file, uchar* *to, size_t length);
unknown's avatar
unknown committed
1991 1992 1993 1994 1995 1996
void free_blobs(TABLE *table);
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);
1997 1998
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);
1999
timestamp_type str_to_datetime_with_warn(const char *str, uint length,
2000 2001 2002
                                         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);
unknown's avatar
unknown committed
2003

2004 2005
void make_truncated_value_warning(THD *thd, MYSQL_ERROR::enum_warning_level level,
                                  const char *str_val,
unknown's avatar
unknown committed
2006 2007
				  uint str_length, timestamp_type time_type,
                                  const char *field_name);
2008

2009 2010
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,
2011
                    longlong *seconds_out, long *microseconds_out);
2012

2013 2014
extern LEX_STRING interval_type_to_name[];

2015 2016 2017 2018 2019 2020 2021
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);
2022
extern bool make_date_time(DATE_TIME_FORMAT *format, MYSQL_TIME *l_time,
2023
			   timestamp_type type, String *str);
2024
void make_datetime(const DATE_TIME_FORMAT *format, const MYSQL_TIME *l_time,
2025
                   String *str);
2026
void make_date(const DATE_TIME_FORMAT *format, const MYSQL_TIME *l_time,
2027
               String *str);
2028
void make_time(const DATE_TIME_FORMAT *format, const MYSQL_TIME *l_time,
2029
               String *str);
2030
int my_time_compare(MYSQL_TIME *a, MYSQL_TIME *b);
2031 2032
ulonglong get_datetime_value(THD *thd, Item ***item_arg, Item **cache_arg,
                             Item *warn_item, bool *is_null);
2033

unknown's avatar
unknown committed
2034
int test_if_number(char *str,int *res,bool allow_wildcards);
2035
void change_byte(uchar *,uint,char,char);
unknown's avatar
unknown committed
2036 2037
void init_read_record(READ_RECORD *info, THD *thd, TABLE *reg_form,
		      SQL_SELECT *select,
2038
		      int use_record_cache, bool print_errors);
2039 2040
void init_read_record_idx(READ_RECORD *info, THD *thd, TABLE *table, 
                          bool print_error, uint idx);
unknown's avatar
unknown committed
2041
void end_read_record(READ_RECORD *info);
2042 2043
ha_rows filesort(THD *thd, TABLE *form,struct st_sort_field *sortorder,
		 uint s_length, SQL_SELECT *select,
2044 2045
		 ha_rows max_rows, bool sort_positions,
                 ha_rows *examined_rows);
unknown's avatar
unknown committed
2046
void filesort_free_buffers(TABLE *table, bool full);
2047
void change_double_for_sort(double nr,uchar *to);
2048 2049
double my_double_round(double value, longlong dec, bool dec_unsigned,
                       bool truncate);
unknown's avatar
unknown committed
2050
int get_quick_record(SQL_SELECT *select);
2051

unknown's avatar
unknown committed
2052
int calc_weekday(long daynr,bool sunday_first_day_of_week);
2053
uint calc_week(MYSQL_TIME *l_time, uint week_behaviour, uint *year);
unknown's avatar
unknown committed
2054
void find_date(char *pos,uint *vek,uint flag);
2055
TYPELIB *convert_strings_to_array_type(char * *typelibs, char * *end);
2056
TYPELIB *typelib(MEM_ROOT *mem_root, List<String> &strings);
unknown's avatar
unknown committed
2057 2058 2059 2060
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);
2061
void append_unescaped(String *res, const char *pos, uint length);
unknown's avatar
unknown committed
2062 2063
int create_frm(THD *thd, const char *name, const char *db, const char *table,
               uint reclength, uchar *fileinfo,
unknown's avatar
unknown committed
2064 2065 2066
	       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);
2067
bool check_db_name(LEX_STRING *db);
unknown's avatar
unknown committed
2068 2069
bool check_column_name(const char *name);
bool check_table_name(const char *name, uint length);
2070
char *get_field(MEM_ROOT *mem, Field *field);
unknown's avatar
unknown committed
2071
bool get_field(MEM_ROOT *mem, Field *field, class String *res);
2072
int wild_case_compare(CHARSET_INFO *cs, const char *str,const char *wildstr);
2073 2074 2075
char *fn_rext(char *name);

/* Conversion functions */
2076 2077
#endif /* MYSQL_SERVER */
#if defined MYSQL_SERVER || defined INNODB_COMPATIBILITY_HOOKS
2078
uint strconvert(CHARSET_INFO *from_cs, const char *from,
2079 2080 2081
                CHARSET_INFO *to_cs, char *to, uint to_length, uint *errors);
uint filename_to_tablename(const char *from, char *to, uint to_length);
uint tablename_to_filename(const char *from, char *to, uint to_length);
2082 2083
#endif /* MYSQL_SERVER || INNODB_COMPATIBILITY_HOOKS */
#ifdef MYSQL_SERVER
2084
uint build_table_filename(char *buff, size_t bufflen, const char *db,
2085
                          const char *table, const char *ext, uint flags);
2086 2087 2088 2089

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

2090 2091
uint build_table_shadow_filename(char *buff, size_t bufflen, 
                                 ALTER_PARTITION_PARAM_TYPE *lpt);
2092 2093 2094 2095
/* 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)
2096
#define NO_FRM_RENAME   (1 << 2)
2097

unknown's avatar
unknown committed
2098 2099
/* from hostname.cc */
struct in_addr;
2100
char * ip_to_hostname(struct in_addr *in,uint *errors);
unknown's avatar
unknown committed
2101 2102 2103 2104 2105
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);
2106

unknown's avatar
unknown committed
2107
/* sql_cache.cc */
unknown's avatar
unknown committed
2108 2109 2110 2111
extern bool sql_cache_init();
extern void sql_cache_free();
extern int sql_cache_hit(THD *thd, char *inBuf, uint length);

2112
/* item_func.cc */
2113 2114
Item *get_system_var(THD *thd, enum_var_type var_type, LEX_STRING name,
		     LEX_STRING component);
2115 2116
int get_var_with_binlog(THD *thd, enum_sql_command sql_command,
                        LEX_STRING &name, user_var_entry **out_entry);
unknown's avatar
unknown committed
2117 2118
/* log.cc */
bool flush_error_log(void);
unknown's avatar
unknown committed
2119

2120 2121 2122 2123
/* sql_list.cc */
void free_list(I_List <i_string_pair> *list);
void free_list(I_List <i_string> *list);

2124
/* sql_yacc.cc */
2125 2126 2127
#ifndef DBUG_OFF
extern void turn_parser_debug_on();
#endif
2128 2129 2130 2131 2132 2133

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

unknown's avatar
VIEW  
unknown committed
2134 2135
#include "sql_view.h"

unknown's avatar
unknown committed
2136 2137
/* Some inline functions for more speed */

unknown's avatar
unknown committed
2138
inline bool add_item_to_list(THD *thd, Item *item)
unknown's avatar
unknown committed
2139
{
unknown's avatar
unknown committed
2140
  return thd->lex->current_select->add_item_to_list(thd, item);
unknown's avatar
unknown committed
2141
}
unknown's avatar
unknown committed
2142 2143

inline bool add_value_to_list(THD *thd, Item *value)
unknown's avatar
unknown committed
2144
{
unknown's avatar
unknown committed
2145
  return thd->lex->value_list.push_back(value);
unknown's avatar
unknown committed
2146
}
unknown's avatar
unknown committed
2147 2148

inline bool add_order_to_list(THD *thd, Item *item, bool asc)
unknown's avatar
unknown committed
2149
{
unknown's avatar
unknown committed
2150
  return thd->lex->current_select->add_order_to_list(thd, item, asc);
unknown's avatar
unknown committed
2151
}
unknown's avatar
unknown committed
2152 2153

inline bool add_group_to_list(THD *thd, Item *item, bool asc)
unknown's avatar
unknown committed
2154
{
unknown's avatar
unknown committed
2155
  return thd->lex->current_select->add_group_to_list(thd, item, asc);
unknown's avatar
unknown committed
2156
}
unknown's avatar
unknown committed
2157

unknown's avatar
unknown committed
2158 2159 2160
inline void mark_as_null_row(TABLE *table)
{
  table->null_row=1;
2161
  table->status|=STATUS_NULL_ROW;
2162
  bfill(table->null_flags,table->s->null_bytes,255);
unknown's avatar
unknown committed
2163
}
unknown's avatar
unknown committed
2164

2165 2166 2167
inline void table_case_convert(char * name, uint length)
{
  if (lower_case_table_names)
2168 2169
    files_charset_info->cset->casedn(files_charset_info,
                                     name, length, name, length);
unknown's avatar
unknown committed
2170 2171
}

unknown's avatar
unknown committed
2172 2173 2174 2175
inline const char *table_case_name(HA_CREATE_INFO *info, const char *name)
{
  return ((lower_case_table_names == 2 && info->alias) ? info->alias : name);
}
unknown's avatar
unknown committed
2176

unknown's avatar
unknown committed
2177 2178 2179 2180 2181 2182 2183 2184
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;
}

unknown's avatar
unknown committed
2185 2186 2187 2188 2189 2190
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);
unknown's avatar
unknown committed
2191

unknown's avatar
unknown committed
2192 2193 2194 2195 2196
Item * all_any_subquery_creator(Item *left_expr,
				chooser_compare_func_creator cmp,
				bool all,
				SELECT_LEX *select_lex);

unknown's avatar
unknown committed
2197 2198 2199 2200 2201 2202 2203 2204 2205
/*
  clean/setup table fields and map

  SYNOPSYS
    setup_table_map()
    table - TABLE structure pointer (which should be setup)
    table_list TABLE_LIST structure pointer (owner of TABLE)
    tablenr - table number
*/
unknown's avatar
unknown committed
2206

unknown's avatar
unknown committed
2207 2208 2209 2210
inline void setup_table_map(TABLE *table, TABLE_LIST *table_list, uint tablenr)
{
  table->used_fields= 0;
  table->const_table= 0;
unknown's avatar
unknown committed
2211
  table->null_row= 0;
unknown's avatar
unknown committed
2212
  table->status= STATUS_NO_RECORD;
2213
  table->maybe_null= table_list->outer_join;
unknown's avatar
unknown committed
2214 2215 2216 2217 2218 2219
  TABLE_LIST *embedding= table_list->embedding;
  while (!table->maybe_null && embedding)
  {
    table->maybe_null= embedding->outer_join;
    embedding= embedding->embedding;
  }
unknown's avatar
unknown committed
2220 2221 2222
  table->tablenr= tablenr;
  table->map= (table_map) 1 << tablenr;
  table->force_index= table_list->force_index;
2223 2224
  table->covering_keys= table->s->keys_for_keyread;
  table->merge_keys.clear_all();
unknown's avatar
unknown committed
2225
}
2226

unknown's avatar
SCRUM  
unknown committed
2227

2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243
/*
  SYNOPSYS
    hexchar_to_int()
    convert a hex digit into number
*/

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;
}

2244 2245 2246 2247 2248 2249 2250 2251 2252 2253
/*
  is_user_table()
  return true if the table was created explicitly
*/

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);
}
2254

2255 2256 2257 2258 2259 2260
/*
  Some functions that are different in the embedded library and the normal
  server
*/

#ifndef EMBEDDED_LIBRARY
unknown's avatar
unknown committed
2261
extern "C" void unireg_abort(int exit_code) __attribute__((noreturn));
2262
void kill_delayed_threads(void);
2263
bool check_stack_overrun(THD *thd, long margin, uchar *dummy);
2264 2265 2266
#else
#define unireg_abort(exit_code) DBUG_RETURN(exit_code)
inline void kill_delayed_threads(void) {}
2267
#define check_stack_overrun(A, B, C) 0
2268
#endif
unknown's avatar
unknown committed
2269

2270
/* Used by handlers to store things in schema tables */
2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309
#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);
2310 2311
bool schema_table_store_record(THD *thd, TABLE *table);

2312 2313 2314 2315
/* sql/item_create.cc */
int item_create_init();
void item_create_cleanup();

unknown's avatar
unknown committed
2316 2317
bool show_create_trigger(THD *thd, const sp_name *trg_name);

2318 2319 2320 2321 2322 2323
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);
}

unknown's avatar
unknown committed
2324 2325 2326 2327 2328 2329 2330 2331 2332 2333
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);

2334
#endif /* MYSQL_SERVER */
2335
#endif /* MYSQL_CLIENT */
2336 2337

#endif /* MYSQL_PRIV_H */