File tree 1 file changed +16
-0
lines changed
1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -3,6 +3,12 @@ var _ = require('lodash')
3
3
var randomString = require ( 'random-strings' )
4
4
var querySequence = require ( '../helpers/querySequence' )
5
5
6
+ var indexes = {
7
+ students : [ ] ,
8
+ assignments : [ 'class_id' ] ,
9
+ scores : [ 'id ASC' , 'score DESC' , 'assignment_id' , 'student_id' ]
10
+ }
11
+
6
12
/**
7
13
* Generate data structure describing a random scores set
8
14
* @param Integer classCount total number of classes to generate
@@ -86,6 +92,16 @@ exports.install = function(generation) {
86
92
_ . flatten ( rowShard . map ( row => _ . values ( row ) ) ) ]
87
93
} ) )
88
94
95
+ // Related: test/variousQueries.es6 :: applyTableSuffixes
96
+ // Suffixes allow concurrent test running
97
+ var tablePrefix = table . split ( '_' ) [ 0 ]
98
+
99
+ if ( indexes [ tablePrefix ] && indexes [ tablePrefix ] . length !== 0 ) {
100
+ for ( let index of indexes [ tablePrefix ] ) {
101
+ installQueries . push ( `CREATE INDEX ON ${ table } (${ index } )` )
102
+ }
103
+ }
104
+
89
105
installQueries . push ( `ANALYZE ${ table } ` )
90
106
91
107
return querySequence ( installQueries )
You can’t perform that action at this time.
0 commit comments