~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/handler/ha_innodb.cc

  • Committer: Monty Taylor
  • Date: 2011-01-11 03:35:19 UTC
  • mto: This revision was merged to the branch mainline in revision 2074.
  • Revision ID: mordred@inaugust.com-20110111033519-x141bdubt09jy0py
First step in getting that anonymous union out of set_var.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1904
1904
 
1905
1905
static int innodb_commit_concurrency_validate(Session *session, set_var *var)
1906
1906
{
1907
 
   uint32_t new_value= var->save_result.uint32_t_value;
 
1907
   uint64_t new_value= var->getInteger();
1908
1908
 
1909
1909
   if ((innobase_commit_concurrency.get() == 0 && new_value != 0) ||
1910
1910
       (innobase_commit_concurrency.get() != 0 && new_value == 0))