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
structColumn<'r,DB>{pubname:Option<&'r str>,pubtype_info:Option<DB::TypeInfo>,}traitRow{// [...]// Get all columnsfncolumns(&self) -> &[Column<Self::Database>];// Get a column by name or positionfncolumn(&self,index:implColumnIndex) -> Option<&Column<Self::Database>>;}
All this information is already available (and cached on the prepared statement per connection)
The text was updated successfully, but these errors were encountered:
This is my attempt to fixlaunchbadge#181 .
I am not sure if you have the same implementation in mind so let me know if I am
on the right track.
I was not sure how to verify the column type in tests as I couldn't construct
`MySqlTypeInfo` due to `TypeId` being crate-private.
This is my attempt to fixlaunchbadge#181 .
I am not sure if you have the same implementation in mind so let me know if I am
on the right track.
I was not sure how to verify the column type in tests as I couldn't construct
`MySqlTypeInfo` due to `TypeId` being crate-private.
The text was updated successfully, but these errors were encountered: