xiaoxu9401 commented on issue #20464:
URL: 
https://github.com/apache/shardingsphere/issues/20464#issuecomment-1225080052

   error msg :
   ### Cause: java.sql.SQLException: Column index out of range.
   ; Column index out of range.; nested exception is java.sql.SQLException: 
Column index out of range.
   
   
   
    protected Field **getField**(int columnIndex) throws SQLException {
           if ((columnIndex < 1) || (columnIndex > this.fields.length)) {
               throw 
SQLError.createSQLException(Messages.getString("ResultSetMetaData.46"), 
SQLError.SQL_STATE_INVALID_COLUMN_NUMBER, this.exceptionInterceptor);
           }
   
           return this.fields[columnIndex - 1];
       }
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to