~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/show.cc

  • Committer: Brian Aker
  • Date: 2009-02-08 03:02:04 UTC
  • Revision ID: brian@tangent.org-20090208030204-3gz6xwcq5niux5nm
Class rewrite of Session (aka get all of the junk out)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1607
1607
  int error;
1608
1608
  if ((error= table->file->ha_write_row(table->record[0])))
1609
1609
  {
1610
 
    TMP_TABLE_PARAM *param= table->pos_in_table_list->schema_table_param;
 
1610
    Tmp_Table_Param *param= table->pos_in_table_list->schema_table_param;
1611
1611
 
1612
1612
    if (create_myisam_from_heap(session, table, param->start_recinfo,
1613
1613
                                &param->recinfo, error, 0))
3819
3819
    item->maybe_null= (fields_info->field_flags & MY_I_S_MAYBE_NULL);
3820
3820
    field_count++;
3821
3821
  }
3822
 
  TMP_TABLE_PARAM *tmp_table_param =
3823
 
    (TMP_TABLE_PARAM*) (session->alloc(sizeof(TMP_TABLE_PARAM)));
 
3822
  Tmp_Table_Param *tmp_table_param =
 
3823
    (Tmp_Table_Param*) (session->alloc(sizeof(Tmp_Table_Param)));
3824
3824
  tmp_table_param->init();
3825
3825
  tmp_table_param->table_charset= cs;
3826
3826
  tmp_table_param->field_count= field_count;