Details
- 
    Bug 
- 
    Status: Closed (View Workflow)
- 
    Major 
- 
    Resolution: Fixed
- 
    None
- 
    None
Description
see https://github.com/mariadb-corporation/mariadb-connector-j/pull/194.
Resultset.getColumnType() wrong value for unsigned values
| Column Type | 2.x | 3.x | 
|---|---|---|
| TINYINT UNSIGNED | Types.TINYINT | Types.SMALLINT | 
| SMALLINT UNSIGNED | Types.SMALLINT | Types.INTEGER | 
| INT UNSIGNED | Types.INTEGER | Types.BIGINT | 
Result change correspond to java type, while getColumnType corresponds to database type, so this change is erroneous