Anyone else having this problem of live indexes returning no results?

On Jan 3, 11:23 pm, jd <[email protected]> wrote:
> Hi,
>
> I have a pre existing index
>
> PropertyA[ASC], PropertyB[DSC]
>
>  which works for my query
>
> query.addFilter("PropertyA", FilterOperator.EQUAL, valueA);
> query.addSort("PropertyB", SortDirection.DESCENDING);
>
> this works fine.
>
> Now I have added another equality clause
>
> query.addFilter("PropertyA", FilterOperator.EQUAL, valueA);
> query.addFilter("PropertyC", FilterOperator.EQUAL, valueC);
> query.addSort("PropertyB", SortDirection.DESCENDING);
>
> This works fine in development.  My auto generated index file created
> the new index needed and after 6 hours or so it finished building.
> The indexes page says it is "Serving" but it returns no results.
>
> PropertyA[ASC], PropertyC[ASC], PropertyB[DSC]
>
> Every entity has a value for the new PropertyC and it is indexed
> (although this should not matter?)
>
> My appid is "target-rooms"
>
> Thanks,
>
> John

--

You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.


Reply via email to