id,summary,reporter,owner,description,type,status,priority,milestone,component,version,severity,resolution,keywords,cc
1155,"mysql driver doesn't detect tiniyint, smallint field types",kyngchaos@…,hobu,"{{{
DESCRIBE returns sizes for these types, but the test doesn't take this into account.  'smallint' and 
'tinyint' don't get caught and the field ends up with a string type of length 0.  In ogrsf_frmts/mysql/
ogrmysqltablelayer.cpp/OGRFeatureDefn *OGRMySQLTableLayer::ReadTableDefinition( const char 
*pszTable ), the tests should be (tested on a smallint field, this works):

else if( EQUALN(pszType,""tinyint"",7) )
{
	oField.SetType( OFTInteger );
}
else if( EQUALN(pszType,""smallint"",8) )
{
	oField.SetType( OFTInteger );
}
}}}",defect,closed,high,,default,unspecified,normal,fixed,,
