@@ -7,9 +7,9 @@ exports.default = [
7
7
description : 'reading 100 rows into an array' } ,
8
8
{ type : 'select-iterate' , table : 'small' , columns : [ 'nul' , 'integer' , 'real' , 'text' ] ,
9
9
description : 'iterating over 100 rows' } ,
10
- { type : 'insert' , table : 'small_empty ' , columns : [ 'nul' , 'integer' , 'real' , 'text' ] ,
10
+ { type : 'insert' , table : 'small ' , columns : [ 'nul' , 'integer' , 'real' , 'text' ] ,
11
11
description : 'inserting rows individually' } ,
12
- { type : 'transaction' , table : 'small_empty ' , columns : [ 'nul' , 'integer' , 'real' , 'text' ] ,
12
+ { type : 'transaction' , table : 'small ' , columns : [ 'nul' , 'integer' , 'real' , 'text' ] ,
13
13
description : 'inserting 100 rows in a single transaction' } ,
14
14
] ;
15
15
@@ -35,20 +35,20 @@ exports.searchable = [
35
35
{ type : 'select-iterate' , table : 'small' , columns : [ 'blob' ] } ,
36
36
{ type : 'select-iterate' , table : 'large' , columns : [ 'text' ] } ,
37
37
{ type : 'select-iterate' , table : 'large' , columns : [ 'blob' ] } ,
38
- { type : 'insert' , table : 'small_empty ' , columns : [ 'nul' ] } ,
39
- { type : 'insert' , table : 'small_empty ' , columns : [ 'integer' ] } ,
40
- { type : 'insert' , table : 'small_empty ' , columns : [ 'real' ] } ,
41
- { type : 'insert' , table : 'small_empty ' , columns : [ 'text' ] } ,
42
- { type : 'insert' , table : 'small_empty ' , columns : [ 'blob' ] } ,
43
- { type : 'insert' , table : 'large_empty ' , columns : [ 'text' ] } ,
44
- { type : 'insert' , table : 'large_empty ' , columns : [ 'blob' ] } ,
45
- { type : 'transaction' , table : 'small_empty ' , columns : [ 'nul' ] } ,
46
- { type : 'transaction' , table : 'small_empty ' , columns : [ 'integer' ] } ,
47
- { type : 'transaction' , table : 'small_empty ' , columns : [ 'real' ] } ,
48
- { type : 'transaction' , table : 'small_empty ' , columns : [ 'text' ] } ,
49
- { type : 'transaction' , table : 'small_empty ' , columns : [ 'blob' ] } ,
50
- { type : 'transaction' , table : 'large_empty ' , columns : [ 'text' ] } ,
51
- { type : 'transaction' , table : 'large_empty ' , columns : [ 'blob' ] } ,
38
+ { type : 'insert' , table : 'small ' , columns : [ 'nul' ] } ,
39
+ { type : 'insert' , table : 'small ' , columns : [ 'integer' ] } ,
40
+ { type : 'insert' , table : 'small ' , columns : [ 'real' ] } ,
41
+ { type : 'insert' , table : 'small ' , columns : [ 'text' ] } ,
42
+ { type : 'insert' , table : 'small ' , columns : [ 'blob' ] } ,
43
+ { type : 'insert' , table : 'large ' , columns : [ 'text' ] } ,
44
+ { type : 'insert' , table : 'large ' , columns : [ 'blob' ] } ,
45
+ { type : 'transaction' , table : 'small ' , columns : [ 'nul' ] } ,
46
+ { type : 'transaction' , table : 'small ' , columns : [ 'integer' ] } ,
47
+ { type : 'transaction' , table : 'small ' , columns : [ 'real' ] } ,
48
+ { type : 'transaction' , table : 'small ' , columns : [ 'text' ] } ,
49
+ { type : 'transaction' , table : 'small ' , columns : [ 'blob' ] } ,
50
+ { type : 'transaction' , table : 'large ' , columns : [ 'text' ] } ,
51
+ { type : 'transaction' , table : 'large ' , columns : [ 'blob' ] } ,
52
52
] ;
53
53
54
54
( ( ) => {
0 commit comments