~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/all_fields.cc

  • Committer: Stewart Smith
  • Date: 2010-09-23 05:33:01 UTC
  • mto: (1804.1.2 build)
  • mto: This revision was merged to the branch mainline in revision 1806.
  • Revision ID: stewart@flamingspork.com-20100923053301-b2b528g2dm5owa97
HailDB test suite loads the HailDB plugin (not the old name, which was 'embedded_innodb')

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19
19
 */
20
20
 
21
 
#include <config.h>
 
21
#include "config.h"
22
22
 
23
 
#include <drizzled/generator.h>
 
23
#include "drizzled/generator.h"
24
24
 
25
25
using namespace std;
26
26
 
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
 
}