Skip to content

Commit

Permalink
RowsColumnTypeNullable not implemented (#848)
Browse files Browse the repository at this point in the history
  • Loading branch information
jinzhu committed Dec 26, 2020
1 parent 02ce7ec commit 66ff625
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions sqlite3_type.go
Expand Up @@ -31,12 +31,12 @@ func (rc *SQLiteRows) ColumnTypeLength(index int) (length int64, ok bool) {
func (rc *SQLiteRows) ColumnTypePrecisionScale(index int) (precision, scale int64, ok bool) {
return 0, 0, false
}
*/
// ColumnTypeNullable implement RowsColumnTypeNullable.
func (rc *SQLiteRows) ColumnTypeNullable(i int) (nullable, ok bool) {
return true, true
return false, false
}
*/

// ColumnTypeScanType implement RowsColumnTypeScanType.
func (rc *SQLiteRows) ColumnTypeScanType(i int) reflect.Type {
Expand Down

0 comments on commit 66ff625

Please sign in to comment.