~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/blitzdb/tests/t/blitzdb-basic.test

Fixed the bug on tables with only 1 row and added a new test file for testing JOIN operations.

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
create table t1 (a int, b int, c varchar(255)) engine = blitzdb;
24
24
 
25
25
insert into t1 values (1, 8, "one");
 
26
select * from t1;
26
27
insert into t1 values (2, 7, "two");
27
28
insert into t1 values (3, 6, "three");
28
29
insert into t1 values (4, 5, "four");