public ResultSet executeQuery()

in src/main/java/com/aliyun/ha3engine/jdbc/Ha3PreparedStatement.java [93:101]


    public ResultSet executeQuery() throws SQLException {
        if (firstStmtChar == 'S') {
            this.execute(preparedSql);
            return ha3ResultSet;
        } else {
            throw new SQLException(
                "Provided query type '" + preparedSql.substring(0, preparedSql.indexOf(' ')) + "' is not supported!");
        }
    }