@@ -28,7 +28,8 @@ import query.{
28
28
LateralJoinTests ,
29
29
WindowFunctionTests ,
30
30
GetGeneratedKeysTests ,
31
- WithCteTests
31
+ WithCteTests ,
32
+ SchemaTests
32
33
}
33
34
import scalasql .dialects .{
34
35
MySqlDialectTests ,
@@ -59,6 +60,7 @@ package postgres {
59
60
object LateralJoinTests extends LateralJoinTests with PostgresSuite
60
61
object WindowFunctionTests extends WindowFunctionTests with PostgresSuite
61
62
object GetGeneratedKeysTests extends GetGeneratedKeysTests with PostgresSuite
63
+ object SchemaTests extends SchemaTests with PostgresSuite
62
64
63
65
object SubQueryTests extends SubQueryTests with PostgresSuite
64
66
object WithCteTests extends WithCteTests with PostgresSuite
@@ -103,6 +105,7 @@ package hikari {
103
105
object LateralJoinTests extends LateralJoinTests with HikariSuite
104
106
object WindowFunctionTests extends WindowFunctionTests with HikariSuite
105
107
object GetGeneratedKeysTests extends GetGeneratedKeysTests with HikariSuite
108
+ object SchemaTests extends SchemaTests with HikariSuite
106
109
107
110
object SubQueryTests extends SubQueryTests with HikariSuite
108
111
object WithCteTests extends WithCteTests with HikariSuite
@@ -163,6 +166,8 @@ package mysql {
163
166
object ExprStringOpsTests extends ExprStringOpsTests with MySqlSuite
164
167
object ExprBlobOpsTests extends ExprBlobOpsTests with MySqlSuite
165
168
object ExprMathOpsTests extends ExprMathOpsTests with MySqlSuite
169
+ // In MySql, schemas are databases and this requires special treatment not yet implemented here
170
+ // object SchemaTests extends SchemaTests with MySqlSuite
166
171
167
172
object DataTypesTests extends datatypes.DataTypesTests with MySqlSuite
168
173
object OptionalTests extends datatypes.OptionalTests with MySqlSuite
@@ -208,6 +213,8 @@ package sqlite {
208
213
object ExprBlobOpsTests extends ExprBlobOpsTests with SqliteSuite
209
214
// Sqlite doesn't support all these math operations
210
215
// object ExprMathOpsTests extends ExprMathOpsTests with SqliteSuite
216
+ // Sqlite doesn't support schemas
217
+ // object SchemaTests extends SchemaTests with SqliteSuite
211
218
212
219
object DataTypesTests extends datatypes.DataTypesTests with SqliteSuite
213
220
object OptionalTests extends datatypes.OptionalTests with SqliteSuite
@@ -240,6 +247,7 @@ package h2 {
240
247
// object LateralJoinTests extends LateralJoinTests with H2Suite
241
248
object WindowFunctionTests extends WindowFunctionTests with H2Suite
242
249
object GetGeneratedKeysTests extends GetGeneratedKeysTests with H2Suite
250
+ object SchemaTests extends SchemaTests with H2Suite
243
251
244
252
object SubQueryTests extends SubQueryTests with H2Suite
245
253
object WithCteTests extends WithCteTests with H2Suite
0 commit comments