public Object getObject()

in src/main/java/com/aliyun/ha3engine/jdbc/Ha3ResultSet.java [724:729]


    public Object getObject(int columnIndex, Map<String, Class<?>> map) throws SQLException {
        if (map == null || map.isEmpty()) {
            return getObject(columnIndex);
        }
        throw new SQLFeatureNotSupportedException("getObject with non-empty Map not supported");
    }