Giorgi Guliashvili
Giorgi Guliashvili
Hi, Can you share FloatGenotypeFactory code?
Hi, It's FloatGenotype I was interested in FloatGenotypeFactory
Hi, I had similar problem but not same. In my case sometimes population size was less then elite count (even in configuration was not). I resolved it in my forked...
Wow, this looks like a great finding. Thanks for testing it on multiple platforms/osquery versions. Let me look into that. (This is even weirder, because for processes table cacheable=True) btw....
UPD UPD: So what happens internally, is that sqlite created 8 queries select path from processes where path = 'a' select path from processes where path = 'b' and so...
The problem is in our virtual_table.cpp::xBestIndex heuristic. It is biased to more constrained, queries. We definitely need to improve it.
Oh. That sounds worse. Looks like someone has to patch sqlite. For note: I traced xBestIndex and it's definitely so :(
I assume, it happens on any other platform. That sounds worse than the problem with IN. In case if someone does not want to collaborate with the sqlite community, I'll...
I had some time to play with it. Looks like there is the easy fix. When I removed [lines](https://github.com/facebook/osquery/blob/68cf457709ee23246c3d87f8e7a87ce2d3ceaa68/osquery/sql/virtual_table.cpp#L751-L753), SQLite worked as we wanted to. All is left, is to...
All the tables I checked so far, either can not filter things at all, or can filter things using EQUAL. Do you think, it makes a lot of difference if...