NewWAL: WAL tag 00000000000000000000000000000000, expected 8019cb57a7fd1ab4dacdc44d1a63fc37
I'm trying to write [one tool I seem to need](https://github.com/akavel/backer/tree/issue-wal0000/exp-view), and for that I'm looking around for a sensible embedded database for Go, that would work on Windows. I tried to see if ql would work for me; unfortunately, after I kill the app with Ctrl-C, every subsequent run of the app seems to error out [on ql.OpenFile](https://github.com/akavel/backer/blob/issue-wal0000/exp-view/dbs/db_ql.go#L16) with an error like below: ``` 2021/01/11 20:28:12 info: db starting... 2021/01/11 20:28:12 opening ql DB: NewWAL: WAL tag 00000000000000000000000000000000, expected 8019cb57a7fd1ab4dacdc44d1a63fc37 exit status 1 ``` Am I using it incorrectly? I'm building with `-tags purego` if that's in any way important.
issue