App Engine datastore does not support operator OR - Stack Overflow most recent 30 from stackoverflow.com2009-12-12T03:37:09Zhttp://stackoverflow.com/feeds/question/930966http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/930966/app-engine-datastore-does-not-support-operator-or0App Engine datastore does not support operator ORJohnIdol2009-05-31T00:45:56Z2009-07-09T19:27:55Z
<p>I am trying to query the google datastore for something like (with pm --> persistanceManager):</p>
<pre><code>String filters = "( field == 'value' || field == 'anotherValue' )";
Query query = pm.newQuery(myType.class, filters);
</code></pre>
<p>When I execute - I am getting back: <strong>App Engine datastore does not support operator OR</strong>.</p>
<p>What's the best approach in people experience for this kind of queries?</p>
<p>Any help appreciated!</p>
http://stackoverflow.com/questions/930966/app-engine-datastore-does-not-support-operator-or/930987#9309871Answer by cletus for App Engine datastore does not support operator ORcletus2009-05-31T00:59:47Z2009-05-31T00:59:47Z<p>According to <a href="http://code.google.com/appengine/docs/java/datastore/queriesandindexes.html#Queries%5Fon%5FKeys" rel="nofollow">Google App Engine - Queries and Indexes</a>:</p>
<blockquote>
<h2><strong>Query Filters</strong> </h2>
<p>A <strong>filter</strong> specifies a field name,
an operator, and a value. The value
must be provided by the app; it cannot
refer to another property, or be
calculated in terms of other
properties. The operator can be any of
the following: <code>< <= == >= ></code></p>
<blockquote>
<p><strong>Note:</strong> The Java datastore interface does not support the != and
IN filter
operators that are implemented in the
Python datastore interface. (In the
Python interface, these operators are
implemented in the client-side
libraries as multiple datastore
queries; they are not features of the
datastore itself.)</p>
</blockquote>
<p>The subject of a filter can be any
object field, including the primary
key and the entity group parent (see
<a href="http://code.google.com/appengine/docs/java/datastore/transactions.html" rel="nofollow">Transactions</a>).</p>
<p>An entity must match all filters to be
a result. In the JDOQL string syntax,
multiple filters are specified
separated by <code>&&</code> (logical "and").
Other logical combinations of filters
(logical "or", "not") are not
supported.</p>
<p>Due to the way the App Engine
datastore executes queries, a single
query cannot use inequality filters
(<code>< <= >= ></code>) on more than one
property. Multiple inequality filters
on the same property (such as querying
for a range of values) are permitted.
See <a href="http://code.google.com/appengine/docs/java/datastore/queriesandindexes.html#Restrictions%5Fon%5FQueries" rel="nofollow">Restrictions on Queries</a>.</p>
</blockquote>
<p>Basically you're either going to have to restructure your data so that you can find what you're looking for with one condition or multiple "and" conditions or you're going to have to retrieve the data via two (or more) queries and filter/combine it in your code.</p>
http://stackoverflow.com/questions/930966/app-engine-datastore-does-not-support-operator-or/931193#9311932Answer by Nick Johnson for App Engine datastore does not support operator ORNick Johnson2009-05-31T03:32:51Z2009-05-31T03:32:51Z<p>Perform multiple queries. The Datastore, like all other databases, isn't able to efficiently execute disjunctions. Unlike other databases, it exposes this difficulty to the user, to make it clear that what you're doing isn't efficient. Your only solution is to execute multiple queries - one for each or - and combine them.</p>
http://stackoverflow.com/questions/930966/app-engine-datastore-does-not-support-operator-or/966842#9668420Answer by Peter for App Engine datastore does not support operator ORPeter2009-06-08T20:30:11Z2009-06-08T20:30:11Z<p>One way to simplify having to "do it yourself" might be to use parameterized queries:</p>
<pre><code> Query query = pm.newQuery(mytype.class);
query.setFilter("field == autoParam");
query.declareParameters("String autoParam");
List<String> params = myListOfThingsFieldCanBeEqualTo;
Set merged = new HashSet();
for (String f : params) {
merged.addAll(q.execute(f));
}
</code></pre>
http://stackoverflow.com/questions/930966/app-engine-datastore-does-not-support-operator-or/1094093#10940931Answer by Thomas Lukasik for App Engine datastore does not support operator ORThomas Lukasik2009-07-07T18:47:03Z2009-07-07T18:47:03Z<p>Sorry I'm late to the game.. I just ran across your question today.</p>
<p>Another way to "simulate" 'IN' and 'OR' behavior is to use the "low level" Datastore API. The DatastoreService supports a get() method that accepts a collection of Keys and returns a Map of all Entities that matched the passed in Keys. It's an interface, but there's a handy DatastoreServiceFactory available that will dispense a ready-to-use instance.</p>
<p>Unfortunately, Google decided that they don't want to promote this low-level API approach and prefer that developers use JDO or JPA, so there's no documentation available other than the JavaDocs and whatever code samples that you might find when you Google "DatastoreService".</p>
<p>TL</p>
http://stackoverflow.com/questions/930966/app-engine-datastore-does-not-support-operator-or/1105981#11059810Answer by Thomas Lukasik for App Engine datastore does not support operator ORThomas Lukasik2009-07-09T19:27:55Z2009-07-09T19:27:55Z<p>Late breaking News.. at least I'm just getting it. As I was downloading the latest Java SDK for GAE I noticed on the Release Notes that "Issue 29: Expose batch gets" was fixed in the latest release (v1.2.1). Basically it seems that we (I'm looking for the same support it seems) may have a JDO based alternative rather than having to drop down to the "low-level" Datastore API. I've just downloaded the latest Java GAE SDK so I haven't had an opportunity to test anything yet, but I wanted to give you a heads-up ASAP. I'll post anything more I learn after I've had a chance to confirm this "fix".</p>
<p>Please accept my apologies if I've broken StackOverflow etiquette by re-posting my comment as an answer, but I decided to do it for two reasons. Firstly because, even though it's me addressing the same issue again, IMHO this new information appears to provide a completely different "answer" to the problem. And secondly, I was concerned that the comment form might not get your attention before you'd spent a great deal of time looking into the first answer that I provided. </p>
<p>Next time I'll think more carefully before acting.</p>
<p>TL</p>