Thor
Thor
This was implemented with `t.SetHideLines([]string{"betweenLine"})` just wasn't added to the docs
Totally agree, I had to point dep to the latest revision today to pull in that change
Closing this since https://github.com/polarsignals/frostdb/pull/202 has merged. Thank you @albertlockett for your contributions! All your initial work helped to inform the final design!
Completed in https://github.com/polarsignals/frostdb/pull/203
> I was pretty sparse on the initial implementation but the idea was that the rows in the results are the columns of the schema, so an additional column of...
https://github.com/polarsignals/frostdb/pull/202
So we can actually refactor the Serialize function today to take an `io.Writer` using the `io.Pipe` ``` r, w := io.Pipe() var err error go func() { defer w.Close() err...
 Have a fix that's headed in the right direction
Yea, when I initially wrote that I played around with buffered channels as well as a mark and sweep style. This one performed the best, and until we better understood...
This looks great! Thanks for the contribution