@@ -28,7 +28,8 @@ import query.{
2828 LateralJoinTests ,
2929 WindowFunctionTests ,
3030 GetGeneratedKeysTests ,
31- WithCteTests
31+ WithCteTests ,
32+ SchemaTests
3233}
3334import scalasql .dialects .{
3435 MySqlDialectTests ,
@@ -59,6 +60,7 @@ package postgres {
5960 object LateralJoinTests extends LateralJoinTests with PostgresSuite
6061 object WindowFunctionTests extends WindowFunctionTests with PostgresSuite
6162 object GetGeneratedKeysTests extends GetGeneratedKeysTests with PostgresSuite
63+ object SchemaTests extends SchemaTests with PostgresSuite
6264
6365 object SubQueryTests extends SubQueryTests with PostgresSuite
6466 object WithCteTests extends WithCteTests with PostgresSuite
@@ -103,6 +105,7 @@ package hikari {
103105 object LateralJoinTests extends LateralJoinTests with HikariSuite
104106 object WindowFunctionTests extends WindowFunctionTests with HikariSuite
105107 object GetGeneratedKeysTests extends GetGeneratedKeysTests with HikariSuite
108+ object SchemaTests extends SchemaTests with HikariSuite
106109
107110 object SubQueryTests extends SubQueryTests with HikariSuite
108111 object WithCteTests extends WithCteTests with HikariSuite
@@ -163,6 +166,8 @@ package mysql {
163166 object ExprStringOpsTests extends ExprStringOpsTests with MySqlSuite
164167 object ExprBlobOpsTests extends ExprBlobOpsTests with MySqlSuite
165168 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
166171
167172 object DataTypesTests extends datatypes.DataTypesTests with MySqlSuite
168173 object OptionalTests extends datatypes.OptionalTests with MySqlSuite
@@ -208,6 +213,8 @@ package sqlite {
208213 object ExprBlobOpsTests extends ExprBlobOpsTests with SqliteSuite
209214 // Sqlite doesn't support all these math operations
210215 // object ExprMathOpsTests extends ExprMathOpsTests with SqliteSuite
216+ // Sqlite doesn't support schemas
217+ // object SchemaTests extends SchemaTests with SqliteSuite
211218
212219 object DataTypesTests extends datatypes.DataTypesTests with SqliteSuite
213220 object OptionalTests extends datatypes.OptionalTests with SqliteSuite
@@ -240,6 +247,7 @@ package h2 {
240247 // object LateralJoinTests extends LateralJoinTests with H2Suite
241248 object WindowFunctionTests extends WindowFunctionTests with H2Suite
242249 object GetGeneratedKeysTests extends GetGeneratedKeysTests with H2Suite
250+ object SchemaTests extends SchemaTests with H2Suite
243251
244252 object SubQueryTests extends SubQueryTests with H2Suite
245253 object WithCteTests extends WithCteTests with H2Suite
0 commit comments