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: [email protected] With regards, Apache Git Services
