File tree 1 file changed +2
-3
lines changed
src/test/java/org/tarantool/jdbc
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change 5
5
import org .junit .jupiter .api .BeforeAll ;
6
6
import org .junit .jupiter .api .BeforeEach ;
7
7
import org .tarantool .TarantoolConnection ;
8
+ import org .tarantool .TarantoolControl ;
8
9
9
10
import java .io .IOException ;
10
11
import java .net .InetSocketAddress ;
20
21
import static org .tarantool .TestUtils .makeInstanceEnv ;
21
22
import static org .tarantool .jdbc .SqlTestUtils .getCreateTableSQL ;
22
23
23
- import org .tarantool .TarantoolControl ;
24
-
25
24
//mvn -DtntHost=localhost -DtntPort=3301 -DtntUser=test -DtntPass=test verify
26
25
public abstract class AbstractJdbcIT {
27
26
private static final String host = System .getProperty ("tntHost" , "localhost" );
@@ -87,7 +86,7 @@ protected static void sqlExec(String... text) {
87
86
TarantoolConnection con = makeConnection ();
88
87
try {
89
88
for (String cmd : text )
90
- con .eval ("box.sql. execute(\" " + cmd + "\" )" );
89
+ con .eval ("box.execute(\" " + cmd + "\" )" );
91
90
} finally {
92
91
con .close ();
93
92
}
You can’t perform that action at this time.
0 commit comments