mirror of
https://github.com/querydsl/querydsl.git
synced 2026-06-13 21:01:01 +08:00
31 lines
1.1 KiB
Java
31 lines
1.1 KiB
Java
package com.mysema.query.suites;
|
|
|
|
import org.junit.BeforeClass;
|
|
import org.junit.experimental.categories.Category;
|
|
|
|
import com.mysema.query.*;
|
|
import com.mysema.query.sql.spatial.MySQLSpatialTemplates;
|
|
import com.mysema.testutil.ExternalDB;
|
|
|
|
@Category(ExternalDB.class)
|
|
public class MySQLWithQuotingTest extends AbstractSuite {
|
|
|
|
public static class BeanPopulation extends BeanPopulationBase {}
|
|
public static class Delete extends DeleteBase {}
|
|
public static class Insert extends InsertBase {}
|
|
public static class LikeEscape extends LikeEscapeBase {}
|
|
public static class Merge extends MergeBase {}
|
|
public static class Select extends SelectBase {}
|
|
public static class Subqueries extends SubqueriesBase {}
|
|
public static class Types extends TypesBase {}
|
|
public static class Union extends UnionBase {}
|
|
public static class Update extends UpdateBase {}
|
|
|
|
@BeforeClass
|
|
public static void setUp() throws Exception {
|
|
Connections.initMySQL();
|
|
Connections.initConfiguration(MySQLSpatialTemplates.builder().quote().newLineToSingleSpace().build());
|
|
}
|
|
|
|
}
|