Skip to content

Commit 66ff625

Browse files
authored
RowsColumnTypeNullable not implemented (#848)
1 parent 02ce7ec commit 66ff625

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sqlite3_type.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@ func (rc *SQLiteRows) ColumnTypeLength(index int) (length int64, ok bool) {
3131
func (rc *SQLiteRows) ColumnTypePrecisionScale(index int) (precision, scale int64, ok bool) {
3232
return 0, 0, false
3333
}
34-
*/
3534
3635
// ColumnTypeNullable implement RowsColumnTypeNullable.
3736
func (rc *SQLiteRows) ColumnTypeNullable(i int) (nullable, ok bool) {
38-
return true, true
37+
return false, false
3938
}
39+
*/
4040

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

0 commit comments

Comments
 (0)