phoenix5-spark3/src/main/java/org/apache/phoenix/spark/SparkResultSet.java [1035:1042]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public <T> T unwrap(Class<T> iface) throws SQLException {
        if (!iface.isInstance(this)) {
            throw new SQLExceptionInfo.Builder(SQLExceptionCode.CLASS_NOT_UNWRAPPABLE)
                    .setMessage(this.getClass().getName() + " not unwrappable from " + iface.getName())
                    .build().buildException();
        }
        return (T)this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



phoenix5-spark/src/main/java/org/apache/phoenix/spark/SparkResultSet.java [1035:1042]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    public <T> T unwrap(Class<T> iface) throws SQLException {
        if (!iface.isInstance(this)) {
            throw new SQLExceptionInfo.Builder(SQLExceptionCode.CLASS_NOT_UNWRAPPABLE)
                    .setMessage(this.getClass().getName() + " not unwrappable from " + iface.getName())
                    .build().buildException();
        }
        return (T)this;
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



