com.ecfront.easybi.dbutils.inner.dialect.HiveDialect Maven / Gradle / Ivy
package com.ecfront.easybi.dbutils.inner.dialect;
import sun.reflect.generics.reflectiveObjects.NotImplementedException;
import java.sql.SQLException;
import java.util.Map;
public class HiveDialect implements Dialect {
@Override
public String paging(String sql, long pageNumber, long pageSize) throws SQLException {
throw new SQLException("Method not supported");
}
@Override
public String count(String sql) throws SQLException {
throw new SQLException("Method not supported");
}
@Override
public String createTableIfNotExist(String tableName, Map fields, String pk) throws SQLException {
throw new NotImplementedException();
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy