diff --git a/rows.go b/rows.go index d9fe95f..4dcd65c 100644 --- a/rows.go +++ b/rows.go @@ -11,7 +11,7 @@ import ( // CSVColumnParser is a function which converts trimmed csv // column string to a []byte representation. Currently // transforms NULL to nil -var CSVColumnParser = func(s string) []bytezzx { +var CSVColumnParser = func(s string) []byte { switch { case strings.ToLower(s) == "null": return nil