~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_insert.cc

Added code necessary for building plugins dynamically.
Merged in changes from lifeless to allow autoreconf to work.
Touching plugin.ini files now triggers a rebuid - so config/autorun.sh is no
longer required to be run after touching those.
Removed the duplicate plugin names - also removed the issue that getting them
different would silently fail weirdly later.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1554
1554
        pthread_mutex_lock(&LOCK_open); /* CREATE TABLE... has found that the table already exists for insert and is adapting to use it */
1555
1555
        if (session->reopen_name_locked_table(create_table, false))
1556
1556
        {
1557
 
          quick_rm_table(create_info->db_type, create_table->db,
 
1557
          quick_rm_table(*session, create_table->db,
1558
1558
                         create_table->table_name, false);
1559
1559
        }
1560
1560
        else