mirror of
https://gitee.com/devlive-community/datacap.git
synced 2024-12-02 03:57:35 +08:00
api: Add presto plugin
This commit is contained in:
parent
9b07270619
commit
2f659474eb
@ -75,6 +75,11 @@
|
||||
<artifactId>datacap-plugin-jdbc-clickhouse</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>io.edurt.datacap.plugin.jdbc</groupId>
|
||||
<artifactId>datacap-plugin-jdbc-presto</artifactId>
|
||||
<version>${project.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
|
@ -1,5 +1,6 @@
|
||||
package io.edurt.datacap.spi.type.jdbc;
|
||||
|
||||
import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
|
||||
import io.edurt.datacap.spi.model.Response;
|
||||
|
||||
import java.sql.ResultSet;
|
||||
@ -8,6 +9,8 @@ import java.sql.SQLException;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
@SuppressFBWarnings(value = {"UC_USELESS_OBJECT"},
|
||||
justification = "I prefer to suppress these FindBugs warnings")
|
||||
public class JdbcColumnConvert
|
||||
{
|
||||
private final ResultSet resultSet;
|
||||
|
Loading…
Reference in New Issue
Block a user