A query that combines a datastore query with in-memory filters/results.
def google.appengine.datastore.datastore_query._AugmentedQuery.__init__ |
( |
|
self, |
|
|
|
query, |
|
|
|
in_memory_results = None , |
|
|
|
in_memory_filter = None , |
|
|
|
max_filtered_count = None |
|
) |
| |
Constructor for _AugmentedQuery.
Do not call directly. Use the utility functions instead (e.g.
datastore_query.inject_results)
Args:
query: A datastore_query.Query object to augment.
in_memory_results: a list of pre- sorted and filtered result to add to the
stream of datastore results or None .
in_memory_filter: a set of in-memory filters to apply to the datastore
results or None.
max_filtered_count: the maximum number of datastore entities that will be
filtered out by in_memory_filter if known.
The documentation for this class was generated from the following file:
- code/googleappengine-read-only/python/google/appengine/datastore/datastore_query.py