~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/statement/savepoint.cc

  • Committer: Stewart Smith
  • Date: 2010-03-18 12:01:34 UTC
  • mto: (1666.2.3 build)
  • mto: This revision was merged to the branch mainline in revision 1596.
  • Revision ID: stewart@flamingspork.com-20100318120134-45fdnsw8g3j6c7oy
move RAND() into a plugin

Show diffs side-by-side

added added

removed removed

Lines of Context:
65
65
    if (iter != savepoints.end())
66
66
    {
67
67
      NamedSavepoint &sv= *iter;
68
 
      (void) transaction_services.releaseSavepoint(session, sv);
 
68
      (void) transaction_services.ha_release_savepoint(session, sv);
69
69
      savepoints.erase(iter);
70
70
    }
71
71
    
72
72
    NamedSavepoint newsv(session->lex->ident.str, session->lex->ident.length);
73
73
 
74
 
    if (transaction_services.setSavepoint(session, newsv))
 
74
    if (transaction_services.ha_savepoint(session, newsv))
75
75
    {
76
76
      return true;
77
77
    }