src/main/java/software/amazon/documentdb/jdbc/DocumentDbResultSetMetaData.java [41:47]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void verifyColumnIndex(final int columnIndex) throws SQLException {
        if (columnIndex < 1 || columnIndex > columnCount) {
            throw SqlError.createSQLException(LOGGER,
                    SqlState.DATA_EXCEPTION,
                    SqlError.INVALID_INDEX, columnIndex, columnCount);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/software/amazon/documentdb/jdbc/DocumentDbAbstractResultSet.java [128:134]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    protected void verifyColumnIndex(final int columnIndex) throws SQLException {
        if (columnIndex < 1 || columnIndex > columnCount) {
            throw SqlError.createSQLException(LOGGER,
                    SqlState.DATA_EXCEPTION,
                    SqlError.INVALID_INDEX, columnIndex, columnCount);
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



