~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/all_fields.cc

  • Committer: Monty Taylor
  • Date: 2010-10-12 20:20:44 UTC
  • mto: (1842.1.3 build) (1843.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1843.
  • Revision ID: mordred@inaugust.com-20101012202044-yfrmnmkznvkqfxe4
Added support for valgrind suppressions.
Run strip-valgrind as part of make valgrind.

Show diffs side-by-side

added added

removed removed

Lines of Context:
35
35
  all_tables_generator(arg)
36
36
{
37
37
  ((table_ptr= all_tables_generator));
38
 
  table_setup();
39
38
}
40
39
 
41
40
bool AllFields::table_setup()
49
48
 
50
49
} /* namespace generator */
51
50
} /* namespace drizzled */
52
 
 
53
 
bool operator!(const drizzled::generator::FieldPair &arg)
54
 
{
55
 
  if (arg.first == 0 and arg.second == 0)
56
 
    return true;
57
 
 
58
 
  return false;
59
 
}