Zhangyahuidesigner opened a new issue #13036:
URL: https://github.com/apache/shardingsphere/issues/13036


   private ColumnMetaData loadColumnMetaData(Map<String, Integer> dataTypeMap, 
ResultSet resultSet) throws SQLException {
         String columnName = resultSet.getString("COLUMN_NAME");
         String dataType = resultSet.getString("DATA_TYPE");
         boolean primaryKey = "PRI".equals(resultSet.getString("COLUMN_KEY"));
         boolean generated = 
"auto_increment".equals(resultSet.getString("EXTRA"));
         String collationName = resultSet.getString("COLLATION_NAME");
         boolean caseSensitive = null != collationName && 
!collationName.endsWith("_ci");
         return new ColumnMetaData(columnName, 
(Integer)dataTypeMap.get(dataType), primaryKey, generated, caseSensitive);
    }
   
   
   
   
   this is error code for shardingSphere5.0.0-beta 


-- 
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