RaduBerinde

Results 31 comments of RaduBerinde

The problem is that it takes a bit of work to figure out that the image loading is what's causing slow startup times. At least one other person ran into...

Some comments: 1. This makes some backward incompatible API changes which might break existing users (e.g. bind_texture). The changes seem mostly cosmetic so it would be preferable to avoid them....

I don't think it can be derived automatically - identical RoaringBitmaps with different representations (array vs bitmap) should have the same hash.

It's possible there is currently only one possible choice, depending on the cardinality (we call "ensure correct store" after each op). But maybe that will change in the future (I...

Sounds great, thanks! Yeah, after typing up this issue I looked more into HLL and realized it assumes uniformity. I think it's an important point because some hash functions focus...

We forgot to bump `SystemDatabaseSchemaBootstrapVersion` here.. Note that this was mentioned in `TestSystemDatabaseSchemaBootstrapVersionBumped` which was modified.

I was thinking the implementation would still use a *testing.T underneath (the one from our test), you'd just intercept some of the calls we care about (Error,Fatal). I might be...

It wouldn't cast down, but it would implement testing.TB. Hm though I guess that doesn't have everything we need (eg Run). We'd need to define our own interface and that...