47
47
static int init(drizzled::module::Context &context)
49
check_constraints = new(std::nothrow)CheckConstraints;
50
column_domain_usage = new(std::nothrow)ColumnDomainUsage;
51
column_privileges = new(std::nothrow)ColumnPrivileges;
52
columns = new(std::nothrow)Columns;
53
constraint_column_usage = new(std::nothrow)ConstraintColumnUsage;
54
constraint_table_usage = new(std::nothrow)ConstraintTableUsage;
55
domain_constraints = new(std::nothrow)DomainConstraints;
56
domains = new(std::nothrow)Domains;
57
key_column_usage = new(std::nothrow)KeyColumnUsage;
58
parameters = new(std::nothrow)Parameters;
59
referential_constraints = new(std::nothrow)ReferentialConstraints;
60
routines = new(std::nothrow)Routines;
61
routine_columns = new(std::nothrow)RoutineColumns;
62
schemata = new(std::nothrow)Schemata;
63
table_constraints = new(std::nothrow)TableConstraints;
64
table_privileges = new(std::nothrow)TablePriviledges;
65
tables = new(std::nothrow)Tables;
66
view_column_usage = new(std::nothrow)ViewColumnUsage;
67
view_table_usage = new(std::nothrow)ViewTableUsage;
68
views = new(std::nothrow)Views;
49
check_constraints = new CheckConstraints;
50
column_domain_usage = new ColumnDomainUsage;
51
column_privileges = new ColumnPrivileges;
52
columns = new Columns;
53
constraint_column_usage = new ConstraintColumnUsage;
54
constraint_table_usage = new ConstraintTableUsage;
55
domain_constraints = new DomainConstraints;
56
domains = new Domains;
57
key_column_usage = new KeyColumnUsage;
58
parameters = new Parameters;
59
referential_constraints = new ReferentialConstraints;
60
routines = new Routines;
61
routine_columns = new RoutineColumns;
62
schemata = new Schemata;
63
table_constraints = new TableConstraints;
64
table_privileges = new TablePriviledges;
66
view_column_usage = new ViewColumnUsage;
67
view_table_usage = new ViewTableUsage;
70
70
context.add(check_constraints);
71
71
context.add(column_domain_usage);