io.kestra.plugin.jdbc.dremio.DremioCellConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of plugin-jdbc-dremio Show documentation
Show all versions of plugin-jdbc-dremio Show documentation
Query Dremio database using the Kestra JDBC plugin.
package io.kestra.plugin.jdbc.dremio;
import io.kestra.plugin.jdbc.AbstractCellConverter;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.time.ZoneId;
public class DremioCellConverter extends AbstractCellConverter {
public DremioCellConverter(ZoneId zoneId) {
super(zoneId);
}
@Override
public Object convertCell(int columnIndex, ResultSet resultSet, Connection connection) throws SQLException {
return super.convert(columnIndex, resultSet);
}
}