~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Brian Aker
  • Date: 2010-08-01 07:57:39 UTC
  • mfrom: (1672.3.7 rollup)
  • Revision ID: brian@gaz-20100801075739-q42e9czjvni5uhu7
Merge Brian

Show diffs side-by-side

added added

removed removed

Lines of Context:
56
56
  memset(this, 0, sizeof(*this));
57
57
  table= table_arg;
58
58
  cursor=  table->cursor;
59
 
  record= table->record[0];
 
59
  record= table->getInsertRecord();
60
60
  print_error= print_error_arg;
61
61
 
62
62
  table->status=0;                      /* And it's always found */
89
89
  else
90
90
  {
91
91
    table->emptyRecord();
92
 
    record= table->record[0];
 
92
    record= table->getInsertRecord();
93
93
    ref_length= table->cursor->ref_length;
94
94
  }
95
95
  select= select_arg;