I am trying to delete all the entities of a kind. After deleting i am
trying to make query on the same kind. But the thing is, even after
deleting all the entities the query is giving the results with some 'n'
number of rows.
I know it is the HRD issue where the indexes are not deleted yet. But i
want to know from where the query is getting the data though we are deleted
the actual data.
Consider the below code,
class CustomReportInfo {
String reportName;
// Setters and getters
}
Here i am trying delete the CustomReportInfo kind entities. In order delete
the entities what i am doing is,
List<CustomReportInfo> customReportInfoList= quey(CustomReportInfo.class).
list();
delete(customReportInfoList);
So, as you see i am deleting all the entities of CustomReportInfo. After
that i am trying to make query on the same kind. Like,
List<CustomReportInfo> list = query(CustomReportInfo.class).list();
Still i am getting the 'n' number of rows after deleting. From where the
query is getting the results even after the deleting the actual data?
--
You received this message because you are subscribed to the Google Groups
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/google-appengine.
To view this discussion on the web visit
https://groups.google.com/d/msgid/google-appengine/b7cb622e-8b48-45c2-aad3-45615553986b%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.