~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/sql_table.cc

  • Committer: Mark Atwood
  • Date: 2011-06-14 06:10:57 UTC
  • mfrom: (2318.2.19 rf)
  • Revision ID: me@mark.atwood.name-20110614061057-u08az4cidd4l7blm
mergeĀ lp:~olafvdspek/drizzle/refactor4

Show diffs side-by-side

added added

removed removed

Lines of Context:
1730
1730
  if (! session->endActiveTransaction())
1731
1731
    return 1;
1732
1732
 
1733
 
  field_list.push_back(item = new Item_empty_string("Table",
1734
 
                                                    NAME_CHAR_LEN * 2,
1735
 
                                                    cs));
 
1733
  field_list.push_back(item = new Item_empty_string("Table", NAME_CHAR_LEN * 2, cs));
1736
1734
  item->maybe_null = 1;
1737
1735
  field_list.push_back(item = new Item_empty_string("Op", 10, cs));
1738
1736
  item->maybe_null = 1;
1740
1738
  item->maybe_null = 1;
1741
1739
  field_list.push_back(item = new Item_empty_string("Msg_text", 255, cs));
1742
1740
  item->maybe_null = 1;
1743
 
  if (session->getClient()->sendFields(&field_list))
1744
 
    return true;
 
1741
  session->getClient()->sendFields(field_list);
1745
1742
 
1746
1743
  for (table= tables; table; table= table->next_local)
1747
1744
  {