~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to sql/mysqld.cc

MergedĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
270
270
handlerton *myisam_hton;
271
271
 
272
272
my_bool opt_readonly, use_temp_pool, relay_log_purge;
273
 
my_bool opt_sync_frm, opt_allow_suspicious_udfs;
 
273
my_bool opt_sync_frm;
274
274
my_bool opt_secure_auth= 0;
275
275
char* opt_secure_file_priv= 0;
276
276
my_bool opt_log_slow_admin_statements= 0;
3318
3318
  OPT_WAIT_TIMEOUT,
3319
3319
  OPT_ERROR_LOG_FILE,
3320
3320
  OPT_DEFAULT_WEEK_FORMAT,
3321
 
  OPT_RANGE_ALLOC_BLOCK_SIZE, OPT_ALLOW_SUSPICIOUS_UDFS,
 
3321
  OPT_RANGE_ALLOC_BLOCK_SIZE,
3322
3322
  OPT_QUERY_ALLOC_BLOCK_SIZE, OPT_QUERY_PREALLOC_SIZE,
3323
3323
  OPT_TRANS_ALLOC_BLOCK_SIZE, OPT_TRANS_PREALLOC_SIZE,
3324
3324
  OPT_SYNC_FRM, OPT_SYNC_BINLOG,
3383
3383
   "Option used by mysql-test for debugging and testing of replication.",
3384
3384
   (uchar**) &abort_slave_event_count,  (uchar**) &abort_slave_event_count,
3385
3385
   0, GET_INT, REQUIRED_ARG, 0, 0, 0, 0, 0, 0},
3386
 
  {"allow-suspicious-udfs", OPT_ALLOW_SUSPICIOUS_UDFS,
3387
 
   "Allows use of UDFs consisting of only one symbol xxx() "
3388
 
   "without corresponding xxx_init() or xxx_deinit(). That also means "
3389
 
   "that one can load any function from any library, for example exit() "
3390
 
   "from libc.so",
3391
 
   (uchar**) &opt_allow_suspicious_udfs, (uchar**) &opt_allow_suspicious_udfs,
3392
 
   0, GET_BOOL, NO_ARG, 0, 0, 0, 0, 0, 0},
3393
3386
  {"ansi", 'a', "Use ANSI SQL syntax instead of MySQL syntax. This mode will also set transaction isolation level 'serializable'.", 0, 0, 0,
3394
3387
   GET_NO_ARG, NO_ARG, 0, 0, 0, 0, 0, 0},
3395
3388
  {"auto-increment-increment", OPT_AUTO_INCREMENT,