Re: [go-nuts] Enabling go's race detector working over SQL barrier

2019-05-06 Thread Jan Mercl
On Mon, May 6, 2019 at 6:56 AM Neven Miculinić wrote: > Is there some project going into this direction? Not sure if relevant: https://godoc.org/modernc.org/ql -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and

[go-nuts] Enabling go's race detector working over SQL barrier

2019-05-05 Thread Neven Miculinić
SQL backend introduced race detector blind spot. Writes and reads aren't transparent to its ThreadSanitizer internals. Misunderstanding isolation levels and what your application does is the source of nasty race conditions. I'm thinking a bit, if there's pure go implementation of ACID complian