Skip to content

Commit adab217

Browse files
author
Jonny Dixon
committed
v12
v12.0 upgrade
1 parent fcddba0 commit adab217

3 files changed

Lines changed: 5 additions & 7 deletions

File tree

dremio-sybasearp-plugin.jar

-26 Bytes
Binary file not shown.

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,12 @@
2121
<modelVersion>4.0.0</modelVersion>
2222

2323
<groupId>com.dremio.plugin</groupId>
24-
<version>11.0.0</version>
24+
<version>12.0.0</version>
2525
<artifactId>dremio-sybasearp-plugin</artifactId>
2626
<name>Dremio Sybase ARP Community Connector</name>
2727

2828
<properties>
29-
<version.dremio>11.0.0-202011171636110752-16ab953d</version.dremio>
29+
<version.dremio>12.0.0-202012212145230282-d8947fd3</version.dremio>
3030
</properties>
3131

3232
<dependencies>

src/main/java/com/dremio/exec/store/jdbc/conf/SybaseConf.java

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,7 @@
3131
import com.dremio.security.CredentialsService;
3232
import com.dremio.exec.store.jdbc.CloseableDataSource;
3333
import com.dremio.exec.store.jdbc.DataSources;
34-
import com.dremio.exec.store.jdbc.JdbcStoragePlugin;
35-
import com.dremio.exec.store.jdbc.JdbcStoragePlugin.Config;
34+
import com.dremio.exec.store.jdbc.JdbcPluginConfig;
3635
import com.dremio.exec.store.jdbc.dialect.arp.ArpDialect;
3736
import com.dremio.exec.store.jdbc.dialect.SybaseDialect;
3837
import com.google.common.annotations.VisibleForTesting;
@@ -98,9 +97,8 @@ public SybaseConf() {
9897

9998
@Override
10099
@VisibleForTesting
101-
protected Config toPluginConfig(CredentialsService credentialsService, OptionManager optionManager) {
102-
return JdbcStoragePlugin.Config.newBuilder()
103-
.withDialect(getDialect())
100+
public JdbcPluginConfig buildPluginConfig(JdbcPluginConfig.Builder configBuilder, CredentialsService credentialsService, OptionManager optionManager) {
101+
return configBuilder.withDialect(getDialect())
104102
.withDatasourceFactory(this::newDataSource)
105103
.withShowOnlyConnDatabase(false)
106104
.withFetchSize(fetchSize)

0 commit comments

Comments
 (0)