Re: [Neo4j] Possible Bug in 2.0.0? Unknown Identifier with '=' and LOWER() in WHERE Clause

2014-02-19 Thread Wes Freeman
Fixed in 2.0.1. Wes On Wed, Feb 19, 2014 at 7:03 PM, Ryan Sommers wrote: > I came across the following and not sure if it's a bug or not. > > match (h:Hostname) where h.Hostname <> LOWER(h.Hostname) return > h.Hostname, LOWER(h.Hostname) limit 10; (Success) > match (h:Hostname) where h.Hostname

[Neo4j] Possible Bug in 2.0.0? Unknown Identifier with '=' and LOWER() in WHERE Clause

2014-02-19 Thread Ryan Sommers
I came across the following and not sure if it's a bug or not. match (h:Hostname) where h.Hostname <> LOWER(h.Hostname) return h.Hostname, LOWER(h.Hostname) limit 10; (Success) match (h:Hostname) where h.Hostname = LOWER(h.Hostname) return h.Hostname, LOWER(h.Hostname) limit 10; (Fail) Fails