Range queries

2010-06-30 Thread Ayende Rahien
I am seeing something strange with range queries: This works: Created:[20100730100201790 TO NULL] This returns no results: Created:[20100730100201790 TO *] This return no results: Created:[NULL TO 20100730100201790] This works: Created:[* TO 20100730100201790] Am I missing something?

Re: Range queries

2010-06-30 Thread digy digy
just string comparison: '2' < 'N' '*' < '2' DIGY On Wed, Jun 30, 2010 at 1:04 PM, Ayende Rahien wrote: > I am seeing something strange with range queries: > > This works: > Created:[20100730100201790 TO NULL] > This returns no results: > Created:[20100730100201790 TO *] > > This return no resul

Re: Range queries

2010-06-30 Thread Ayende Rahien
Um, my understanding was that NULL or * was the way to specify an open ended range query, isn't that the case? On Wed, Jun 30, 2010 at 1:21 PM, digy digy wrote: > just string comparison: > '2' < 'N' > '*' < '2' > > DIGY > > On Wed, Jun 30, 2010 at 1:04 PM, Ayende Rahien wrote: > > > I am seein