I encounter this error when querying a pytables table with where method passing a string with 50 conditions. These conditions are basically a translation of a SQL IN clause i.e. I want to get records where a particular field is equal to a certain list of values.
C:\Python2764\lib\site-packages\numexpr\necompiler.pyc in evaluate(ex, local_dict, global_dict, out, order, casting, **kwargs)
744 kwargs = {'out': out, 'order': order, 'casting': casting,
745 'ex_uses_vml': ex_uses_vml}
--> 746 return compiled_ex(*arguments, **kwargs)
ValueError: too many inputs
What would be another way to perform the same query? My first thought is to perform the query 50 times, once for each value and merge the results. I was hoping maybe there is a more elegant solution to this.
Is there a known restriction on the number of conditions that can be passed to numexpr?
If you use
pandas.DataFrame.query
then you can try to changeengine='python'
in **kwargs.