~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/records.cc

  • Committer: Brian Aker
  • Date: 2010-08-19 16:45:03 UTC
  • mfrom: (1711.6.11 staging)
  • Revision ID: brian@tangent.org-20100819164503-t7rhibp5s7bv3dtu
Merge of signals, plus build fix for FreeBSD. Also contains memset/constructor patch.

Show diffs side-by-side

added added

removed removed

Lines of Context:
53
53
                                      uint32_t idx)
54
54
{
55
55
  table_arg->emptyRecord();
56
 
  memset(this, 0, sizeof(*this));
57
56
  table= table_arg;
58
57
  cursor=  table->cursor;
59
58
  record= table->getInsertRecord();
75
74
{
76
75
  internal::IO_CACHE *tempfile;
77
76
 
78
 
  memset(this, 0, sizeof(*this));
79
77
  session= session_arg;
80
78
  table= table_arg;
81
79
  cursor= table->cursor;