You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, when we do type conversion between column types and Haskell types, we only have access to the name of the type (for example, "tinyint"), and not the entire definition of the type (for example, "tinyint(1)") It would be nice to be able to use the entire definition of the type, because you might want to do something different with the type based on the M, D, or fsp parts of the type definition described here: http://dev.mysql.com/doc/refman/5.7/en/data-types.html For example, it would be nice to convert tinyint(1) to Bool.
The text was updated successfully, but these errors were encountered:
Right now, when we do type conversion between column types and Haskell types, we only have access to the name of the type (for example, "tinyint"), and not the entire definition of the type (for example, "tinyint(1)") It would be nice to be able to use the entire definition of the type, because you might want to do something different with the type based on the
M
,D
, orfsp
parts of the type definition described here: http://dev.mysql.com/doc/refman/5.7/en/data-types.html For example, it would be nice to convert tinyint(1) to Bool.The text was updated successfully, but these errors were encountered: