Closed almosnow closed 3 months ago
Yes, i noticed this as well but haven't gotten around to fixing. Just need to increase the range by one to prevent it from happening, will update soon
Yeah, should be a super trivial change, but idk where and didn't want to mess up your code, lol.
We can close this since we'll be disabling the BETWEEN
SQL queries. We likely want add back the reduced ranges in the frontend, but I'll open a separate task for that
Hi Luke,
There's this data structure that keeps track of the IDs that are requested and creates ranges of them.
I've noticed many of these ranges are just two consecutive IDs, e.g. "PR0002", "PR0003" gets turned into RANGE("PR0002"-"PR0003"). I feel ranges should be three or more, otherwise there's some overhead that we could avoid.
One example where this matters, it would an hypothetical query from:
to:
which kind of defeats the purpose of it.
I'm sure the change is trivial but I haven't read your code, so not familiar.