~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to server/sql_plugin.cc

MergeĀ fromĀ trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2398
2398
  case PLUGIN_VAR_STR:
2399
2399
    options->var_type= ((opt->flags & PLUGIN_VAR_MEMALLOC) ?
2400
2400
                        GET_STR_ALLOC : GET_STR);
2401
 
    options->def_value= (intptr) ((sysvar_str_t*) opt)->def_val;
 
2401
    options->def_value= (intptr_t) ((sysvar_str_t*) opt)->def_val;
2402
2402
    break;
2403
2403
  /* threadlocal variables */
2404
2404
  case PLUGIN_VAR_INT | PLUGIN_VAR_THDLOCAL:
2440
2440
  case PLUGIN_VAR_STR | PLUGIN_VAR_THDLOCAL:
2441
2441
    options->var_type= ((opt->flags & PLUGIN_VAR_MEMALLOC) ?
2442
2442
                        GET_STR_ALLOC : GET_STR);
2443
 
    options->def_value= (intptr) ((thdvar_str_t*) opt)->def_val;
 
2443
    options->def_value= (intptr_t) ((thdvar_str_t*) opt)->def_val;
2444
2444
    break;
2445
2445
  default:
2446
2446
    assert(0);