use of org.apache.derbyTesting.functionTests.tests.lang.CreateTableFromQueryTest in project derby by apache.
the class StandardTests method createTableFromQueryTest.
public static Test createTableFromQueryTest(String serverHost, int serverPort) {
Test t = // false: because adds clean/decorate below
TestConfiguration.existingServerSuite(// false: because adds clean/decorate below
CreateTableFromQueryTest.class, // false: because adds clean/decorate below
false, serverHost, serverPort);
CleanDatabaseTestSetup cdts = new CleanDatabaseTestSetup(t, // Use networkclient when running setUp/decorateSQL
true, serverHost, serverPort) {
protected void decorateSQL(Statement stmt) throws SQLException {
CreateTableFromQueryTest.decorate(stmt);
}
};
return cdts;
}
Aggregations