Re: [sqlite] IN condition on virtual tables misbehavior

2011-10-20 Thread Jay A. Kreibich
On Thu, Oct 20, 2011 at 12:09:25PM +0200, Sam scratched on the wall: > Hi, >I'm developing a simple virtual table module and I've found possible > misbehavior of virtual table modules when used with IN condition. >select x from y where x in (3) > >calls xFilter without any arg

[sqlite] IN condition on virtual tables misbehavior

2011-10-20 Thread Sam
Hi, I'm developing a simple virtual table module and I've found possible misbehavior of virtual table modules when used with IN condition. Example: select x from y where x = 3; calls (correctly) function xFilter of my vtab module with parameter 3, but select x from