Fix build

Original commit: elastic/x-pack-elasticsearch@474e5e7a9a
This commit is contained in:
Nik Everett 2017-08-23 09:17:39 -04:00
parent 18dccbc668
commit 1ea3f5175a
3 changed files with 2 additions and 4 deletions

View File

@ -14,7 +14,7 @@ import java.nio.file.Path;
import java.util.List;
@TestLogging(JdbcTestUtils.SQL_TRACE)
public class DebugCsvSpec extends CsvSpecIT {
public abstract class DebugCsvSpec extends CsvSpecIT {
@ParametersFactory(shuffle = false, argumentFormatting = SqlSpecIT.PARAM_FORMATTING)
public static List<Object[]> readScriptSpec() throws Exception {

View File

@ -14,7 +14,7 @@ import java.nio.file.Path;
import java.util.List;
@TestLogging(JdbcTestUtils.SQL_TRACE)
public class DebugSqlSpec extends SqlSpecIT {
public abstract class DebugSqlSpec extends SqlSpecIT {
@ParametersFactory(shuffle = false, argumentFormatting = SqlSpecIT.PARAM_FORMATTING)
public static List<Object[]> readScriptSpec() throws Exception {

View File

@ -83,8 +83,6 @@ public abstract class SpecBaseIntegrationTestCase extends JdbcIntegrationTestCas
/**
* Implementations should pay attention on using {@link #executeJdbcQuery(Connection, String)} (typically for ES connections)
* and {@link #assertResults(ResultSet, ResultSet)} which takes into account logging/debugging results (through {@link #logEsResultSet()}.
*
* @throws Throwable
*/
protected abstract void doTest() throws Throwable;