File tree 5 files changed +7
-7
lines changed
src/main/java/io/prestosql/benchto/driver
5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ jdbc drivers you want to use. Then use maven exec plugin to run benchmark driver
15
15
<artifactId>benchto-driver</artifactId>
16
16
</dependency>
17
17
<dependency>
18
- <groupId>com.facebook.presto </groupId>
18
+ <groupId>io.prestosql </groupId>
19
19
<artifactId>presto-jdbc</artifactId>
20
20
</dependency>
21
21
</dependencies>
@@ -59,7 +59,7 @@ data-sources: # data-sources section which lists all jdbc drivers which ca
59
59
url: jdbc:presto://example.com:8888
60
60
username: example
61
61
password: example
62
- driver-class-name: com.facebook.presto .jdbc.PrestoDriver
62
+ driver-class-name: io.prestosql .jdbc.PrestoDriver
63
63
teradata:
64
64
url: jdbc:teradata://example.com
65
65
username: example
Original file line number Diff line number Diff line change 105
105
106
106
<!-- Presto driver -->
107
107
<dependency >
108
- <groupId >com.facebook.presto </groupId >
108
+ <groupId >io.prestosql </groupId >
109
109
<artifactId >presto-jdbc</artifactId >
110
110
</dependency >
111
111
Original file line number Diff line number Diff line change 13
13
*/
14
14
package io .prestosql .benchto .driver .execution ;
15
15
16
- import com .facebook .presto .jdbc .PrestoResultSet ;
17
16
import com .google .common .collect .ImmutableMap ;
18
17
import io .prestosql .benchto .driver .execution .QueryExecutionResult .QueryExecutionResultBuilder ;
19
18
import io .prestosql .benchto .driver .loader .SqlStatementGenerator ;
19
+ import io .prestosql .jdbc .PrestoResultSet ;
20
20
import org .slf4j .Logger ;
21
21
import org .slf4j .LoggerFactory ;
22
22
import org .springframework .beans .factory .annotation .Autowired ;
Original file line number Diff line number Diff line change 13
13
*/
14
14
package io .prestosql .benchto .driver .macro .query ;
15
15
16
- import com .facebook .presto .jdbc .PrestoConnection ;
17
16
import io .prestosql .benchto .driver .Benchmark ;
18
17
import io .prestosql .benchto .driver .BenchmarkExecutionException ;
19
18
import io .prestosql .benchto .driver .Query ;
20
19
import io .prestosql .benchto .driver .loader .QueryLoader ;
21
20
import io .prestosql .benchto .driver .loader .SqlStatementGenerator ;
22
21
import io .prestosql .benchto .driver .macro .MacroExecutionDriver ;
22
+ import io .prestosql .jdbc .PrestoConnection ;
23
23
import org .slf4j .Logger ;
24
24
import org .slf4j .LoggerFactory ;
25
25
import org .springframework .beans .factory .annotation .Autowired ;
Original file line number Diff line number Diff line change 55
55
<dep .commons.cli>1.3.1</dep .commons.cli>
56
56
<dep .commons.math3>3.6.1</dep .commons.math3>
57
57
<dep .commons.io>2.4</dep .commons.io>
58
- <dep .presto.jdbc.version>0.182 </dep .presto.jdbc.version>
58
+ <dep .presto.jdbc.version>316 </dep .presto.jdbc.version>
59
59
<dep .jackson.version>2.4.5</dep .jackson.version>
60
60
<dep .jsonpath.version>2.0.0</dep .jsonpath.version>
61
61
<dep .junit.version>4.12</dep .junit.version>
238
238
239
239
<!-- Drivers -->
240
240
<dependency >
241
- <groupId >com.facebook.presto </groupId >
241
+ <groupId >io.prestosql </groupId >
242
242
<artifactId >presto-jdbc</artifactId >
243
243
<version >${dep.presto.jdbc.version} </version >
244
244
</dependency >
You can’t perform that action at this time.
0 commit comments