You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@shardingsphere.apache.org by GitBox <gi...@apache.org> on 2019/10/14 14:17:52 UTC

[GitHub] [incubator-shardingsphere] dongzl commented on issue #3231: Issue with data type "INT UNSIGNED"

dongzl commented on issue #3231: Issue with data type "INT UNSIGNED"
URL: https://github.com/apache/incubator-shardingsphere/issues/3231#issuecomment-541705718
 
 
   Hi @AndreyUS , I debug the program, the program return value according to the column type.
   
   `Types.INTEGER -> return resultSet.getInt(columnIndex);`
   but if the column is unsigned int type, it should be return `Long` value.
   
   I want to fix it according to the column type and column type name, eg:
   if the column is int type, the column type is `Types.INTEGER` and column type name is `INT`
   but if the column is unsigned int type, the column type is `Types.INTEGER` and column type name is `INT UNSIGNED`.
   

----------------------------------------------------------------
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.
 
For queries about this service, please contact Infrastructure at:
users@infra.apache.org


With regards,
Apache Git Services