~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/handler.cc

  • Committer: Brian Aker
  • Date: 2008-12-09 17:33:02 UTC
  • mfrom: (656.1.54 devel)
  • Revision ID: brian@tangent.org-20081209173302-aptngvc7efxnatnt
Merge from Monty.

Show diffs side-by-side

added added

removed removed

Lines of Context:
4220
4220
    plugin_foreach(NULL, exts_handlerton,
4221
4221
                   DRIZZLE_STORAGE_ENGINE_PLUGIN, &found_exts);
4222
4222
 
4223
 
    ext= (const char **) my_once_alloc(sizeof(char *)*
4224
 
                                       (found_exts.elements+1),
4225
 
                                       MYF(MY_WME | MY_FAE));
 
4223
    ext= (const char **) malloc(sizeof(char *)*
 
4224
                                (found_exts.elements+1));
 
4225
                              
4226
4226
 
4227
4227
    assert(ext != 0);
4228
4228
    known_extensions.count= found_exts.elements;
4318
4318
    error= replicator_delete_row(session, table);
4319
4319
    break;
4320
4320
 
4321
 
    /* 
 
4321
    /*
4322
4322
      For everything else we ignore the event (since it just involves a temp table)
4323
4323
    */
4324
4324
  default: