Skip to content

Commit 59d214a

Browse files
author
Paultagoras
committed
Update BenchmarkRunner.java
1 parent 8e57445 commit 59d214a

File tree

1 file changed

+12
-8
lines changed

1 file changed

+12
-8
lines changed

performance/src/test/com/clickhouse/benchmark/BenchmarkRunner.java

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
import com.clickhouse.benchmark.clients.ConcurrentQueryClient;
66
import com.clickhouse.benchmark.clients.Deserializers;
77
import com.clickhouse.benchmark.clients.InsertClient;
8+
import com.clickhouse.benchmark.clients.JDBCInsert;
9+
import com.clickhouse.benchmark.clients.JDBCQuery;
810
import com.clickhouse.benchmark.clients.MixedWorkload;
911
import com.clickhouse.benchmark.clients.QueryClient;
1012
import com.clickhouse.benchmark.clients.Serializers;
@@ -36,14 +38,16 @@ public static void main(String[] args) throws Exception {
3638
Map<String, String> argMap = parseArguments(args);
3739

3840
Options opt = new OptionsBuilder()
39-
.include(QueryClient.class.getSimpleName())
40-
.include(InsertClient.class.getSimpleName())
41-
.include(ConcurrentInsertClient.class.getSimpleName())
42-
.include(ConcurrentQueryClient.class.getSimpleName())
43-
.include(Compression.class.getSimpleName())
44-
.include(Serializers.class.getSimpleName())
45-
.include(Deserializers.class.getSimpleName())
46-
.include(MixedWorkload.class.getSimpleName())
41+
.include(QueryClient.class.getName())
42+
.include(InsertClient.class.getName())
43+
.include(ConcurrentInsertClient.class.getName())
44+
.include(ConcurrentQueryClient.class.getName())
45+
.include(Compression.class.getName())
46+
.include(Serializers.class.getName())
47+
.include(Deserializers.class.getName())
48+
.include(MixedWorkload.class.getName())
49+
.include(JDBCQuery.class.getName())
50+
.include(JDBCInsert.class.getName())
4751
.forks(1) // must be a fork. No fork only for debugging
4852
.mode(Mode.SampleTime)
4953
.timeUnit(TimeUnit.MILLISECONDS)

0 commit comments

Comments
 (0)