~drizzle-trunk/drizzle/development

1283.28.39 by Stewart Smith
Force Embedded InnoDB tables to have a primary key. This is because we cannot do ::position() type calls on embedded innodb tables that do not have an explicit primary key.
1
create table t1 (a int primary key);
1283.3.27 by Stewart Smith
basic code to insert a integer
2
insert into t1 (a) values (1);
3
drop table t1;