-
Notifications
You must be signed in to change notification settings - Fork 2.3k
Closed as not planned
Labels
Description
The README states "This driver supports the ColumnType interface introduced in Go 1.8, with the exception of ColumnType.Length(), which is currently not supported."
I found the ColumnTypeLength
function commented out here:
Lines 66 to 68 in 578c4c8
// func (rows *mysqlRows) ColumnTypeLength(i int) (length int64, ok bool) { | |
// return int64(rows.rs.columns[i].length), true | |
// } |
Based on the discussion in #667, it appears there were no limiting factors preventing this from being implemented: #667 (comment).
@julienschmidt can you confirm? Is this something that no one has gotten to yet? Or did you find some sort of limitation trying to implement this?