Addressed review feedback and extracted a constant for the printed NULL value, used it everywhere.

This commit is contained in:
Zach Musgrave
2019-04-17 09:34:36 -07:00
parent 874849fcc4
commit 1a85f131c4
6 changed files with 26 additions and 25 deletions
+2
View File
@@ -221,6 +221,8 @@ const (
ZEROFILL = "zerofill"
)
const PRINTED_NULL = "<NULL>"
// Boolean predicate func type to filter rows in result sets
type rowFilterFn = func(r row.Row) (matchesFilter bool)