optimize: log parser

add: fast text reader to log parser
This commit is contained in:
Inanc Gumus
2019-08-07 13:24:15 +03:00
parent 450018748b
commit 4b2d2a3d6b
6 changed files with 168 additions and 49 deletions

View File

@@ -35,3 +35,9 @@ func textWriter(w io.Writer) outputFunc {
return nil
}
}
func noWhere() outputFunc {
return func(res []result) error {
return nil
}
}