~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_plugin.cc

  • Committer: Jay Pipes
  • Date: 2008-08-25 21:12:17 UTC
  • mfrom: (322.2.4 stdize-code)
  • Revision ID: jay@mysql.com-20080825211217-eqvfmcgvkoktdvtr
From Mats.  Corrected build issue with missing Makefile target

Show diffs side-by-side

added added

removed removed

Lines of Context:
2232
2232
 
2233
2233
 
2234
2234
#define OPTION_SET_LIMITS(type, options, opt) \
2235
 
  options->var_type= type; \
2236
 
  options->def_value= (opt)->def_val; \
2237
 
  options->min_value= (opt)->min_val; \
2238
 
  options->max_value= (opt)->max_val; \
 
2235
  options->var_type= type;                    \
 
2236
  options->def_value= (opt)->def_val;         \
 
2237
  options->min_value= (opt)->min_val;         \
 
2238
  options->max_value= (opt)->max_val;         \
2239
2239
  options->block_size= (long) (opt)->blk_sz
2240
2240
 
2241
2241