1
by brian
clean slate |
1 |
/* Copyright (C) 2001-2006 MySQL AB
|
2 |
||
3 |
This program is free software; you can redistribute it and/or modify
|
|
4 |
it under the terms of the GNU General Public License as published by
|
|
5 |
the Free Software Foundation; version 2 of the License.
|
|
6 |
||
7 |
This program is distributed in the hope that it will be useful,
|
|
8 |
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
9 |
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
10 |
GNU General Public License for more details.
|
|
11 |
||
12 |
You should have received a copy of the GNU General Public License
|
|
13 |
along with this program; if not, write to the Free Software
|
|
14 |
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
15 |
||
16 |
/* Common defines for all clients */
|
|
17 |
||
18 |
#include <my_global.h> |
|
212.5.13
by Monty Taylor
Moved my_sys/my_pthread/my_nosys and mysys_err to mysys. |
19 |
#include <mysys/my_sys.h> |
212.5.18
by Monty Taylor
Moved m_ctype, m_string and my_bitmap. Removed t_ctype. |
20 |
#include <mystrings/m_string.h> |
212.5.25
by Monty Taylor
Moved drizzle.h to libdrizzle. |
21 |
#include <libdrizzle/drizzle.h> |
1
by brian
clean slate |
22 |
#include <errmsg.h> |
212.5.21
by Monty Taylor
Moved my_getopt.h |
23 |
#include <mysys/my_getopt.h> |
1
by brian
clean slate |
24 |
|
25 |
enum options_client |
|
26 |
{
|
|
27 |
OPT_CHARSETS_DIR=256, OPT_DEFAULT_CHARSET, |
|
28 |
OPT_PAGER, OPT_NOPAGER, OPT_TEE, OPT_NOTEE, |
|
29 |
OPT_LOW_PRIORITY, OPT_AUTO_REPAIR, OPT_COMPRESS, |
|
30 |
OPT_DROP, OPT_LOCKS, OPT_KEYWORDS, OPT_DELAYED, OPT_OPTIMIZE, |
|
31 |
OPT_FTB, OPT_LTB, OPT_ENC, OPT_O_ENC, OPT_ESC, OPT_TABLES, |
|
32 |
OPT_MASTER_DATA, OPT_AUTOCOMMIT, OPT_AUTO_REHASH, |
|
33 |
OPT_LINE_NUMBERS, OPT_COLUMN_NAMES, OPT_CONNECT_TIMEOUT, |
|
34 |
OPT_MAX_ALLOWED_PACKET, OPT_NET_BUFFER_LENGTH, |
|
35 |
OPT_SELECT_LIMIT, OPT_MAX_JOIN_SIZE, OPT_SSL_SSL, |
|
36 |
OPT_SSL_KEY, OPT_SSL_CERT, OPT_SSL_CA, OPT_SSL_CAPATH, |
|
37 |
OPT_SSL_CIPHER, OPT_SHUTDOWN_TIMEOUT, OPT_LOCAL_INFILE, |
|
38 |
OPT_DELETE_MASTER_LOGS, OPT_COMPACT, |
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
39 |
OPT_PROMPT, OPT_IGN_LINES,OPT_TRANSACTION,OPT_DRIZZLE_PROTOCOL, |
1
by brian
clean slate |
40 |
OPT_SHARED_MEMORY_BASE_NAME, OPT_FRM, OPT_SKIP_OPTIMIZATION, |
41 |
OPT_COMPATIBLE, OPT_RECONNECT, OPT_DELIMITER, OPT_SECURE_AUTH, |
|
42 |
OPT_OPEN_FILES_LIMIT, OPT_SET_CHARSET, OPT_CREATE_OPTIONS, OPT_SERVER_ARG, |
|
43 |
OPT_START_POSITION, OPT_STOP_POSITION, OPT_START_DATETIME, OPT_STOP_DATETIME, |
|
44 |
OPT_SIGINT_IGNORE, OPT_HEXBLOB, OPT_ORDER_BY_PRIMARY, OPT_COUNT, |
|
45 |
OPT_TRIGGERS, |
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
46 |
OPT_DRIZZLE_ONLY_PRINT, |
47 |
OPT_DRIZZLE_LOCK_DIRECTORY, |
|
1
by brian
clean slate |
48 |
OPT_USE_THREADS, |
49 |
OPT_IMPORT_USE_THREADS, |
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
50 |
OPT_DRIZZLE_NUMBER_OF_QUERY, |
1
by brian
clean slate |
51 |
OPT_IGNORE_TABLE,OPT_INSERT_IGNORE,OPT_SHOW_WARNINGS,OPT_DROP_DATABASE, |
52 |
OPT_TZ_UTC, OPT_AUTO_CLOSE, OPT_CREATE_SLAP_SCHEMA, |
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
53 |
OPT_DRIZZLEDUMP_SLAVE_APPLY, |
54 |
OPT_DRIZZLEDUMP_SLAVE_DATA, |
|
55 |
OPT_DRIZZLEDUMP_INCLUDE_MASTER_HOST_PORT, |
|
1
by brian
clean slate |
56 |
OPT_SLAP_CSV, OPT_SLAP_CREATE_STRING, |
57 |
OPT_SLAP_AUTO_GENERATE_SQL_LOAD_TYPE, OPT_SLAP_AUTO_GENERATE_WRITE_NUM, |
|
58 |
OPT_SLAP_AUTO_GENERATE_ADD_AUTO, |
|
59 |
OPT_SLAP_AUTO_GENERATE_GUID_PRIMARY, |
|
60 |
OPT_SLAP_AUTO_GENERATE_EXECUTE_QUERIES, |
|
61 |
OPT_SLAP_AUTO_GENERATE_SECONDARY_INDEXES, |
|
62 |
OPT_SLAP_AUTO_GENERATE_UNIQUE_WRITE_NUM, |
|
63 |
OPT_SLAP_AUTO_GENERATE_UNIQUE_QUERY_NUM, |
|
64 |
OPT_SLAP_PRE_QUERY, |
|
65 |
OPT_SLAP_POST_QUERY, |
|
66 |
OPT_SLAP_PRE_SYSTEM, |
|
67 |
OPT_SLAP_POST_SYSTEM, |
|
68 |
OPT_SLAP_IGNORE_SQL_ERRORS, |
|
69 |
OPT_SLAP_COMMIT, |
|
70 |
OPT_SLAP_DETACH, |
|
206.3.1
by Patrick Galbraith
Most everything working with client rename |
71 |
OPT_DRIZZLE_REPLACE_INTO, OPT_BASE64_OUTPUT_MODE, OPT_SERVER_ID, |
1
by brian
clean slate |
72 |
OPT_SLAP_BURNIN, |
73 |
OPT_SLAP_TIMER_LENGTH, |
|
74 |
OPT_SLAP_DELAYED_START, |
|
75 |
OPT_SLAP_SET_RANDOM_SEED, |
|
76 |
OPT_SLAP_BLOB_COL, |
|
77 |
OPT_SLAP_LABEL, |
|
78 |
OPT_SLAP_AUTO_GENERATE_SELECT_COLUMNS, |
|
79 |
OPT_FIX_TABLE_NAMES, OPT_FIX_DB_NAMES, OPT_SSL_VERIFY_SERVER_CERT, |
|
80 |
OPT_AUTO_VERTICAL_OUTPUT, |
|
81 |
OPT_DEBUG_INFO, OPT_DEBUG_CHECK, OPT_COLUMN_TYPES, OPT_ERROR_LOG_FILE, |
|
82 |
OPT_WRITE_BINLOG, OPT_DUMP_DATE, |
|
83 |
OPT_MAX_CLIENT_OPTION
|
|
84 |
};
|