nizhikov commented on a change in pull request #7319: IGNITE-12583 : refactored
JdbcThinBulkLoadAbstractSelfTest into a parametrized one
URL: https://github.com/apache/ignite/pull/7319#discussion_r371713646
##########
File path:
modules/clients/src/test/java/org/apache/ignite/jdbc/thin/JdbcThinAbstractDmlStatementSelfTest.java
##########
@@ -164,6 +165,19 @@ final CacheConfiguration binaryCacheConfig() {
return cache;
}
+ /** Clean tables to avoid DDL errors in repeated test runs. */
+ protected void dropTables() throws SQLException {
+ List<List<?>> tablesLeft = execute(conn, "select CACHE_NAME,
TABLE_NAME, SCHEMA_NAME from SYS.TABLES");
+ for( List<?> resultRecord : tablesLeft ){
Review comment:
empty line required.
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services