~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/generator/all_fields.cc

Merge refactored command line using for 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
 
}