We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 4b56a23 + 86b886e commit 9654c3bCopy full SHA for 9654c3b
gcloud/datastore/query.py
@@ -244,4 +244,5 @@ def fetch(self, limit=None):
244
entity_pbs = self.dataset().connection().run_query(
245
query_pb=clone.to_protobuf(), dataset_id=self.dataset().id())
246
247
- return [Entity.from_protobuf(entity) for entity in entity_pbs]
+ return [Entity.from_protobuf(entity, dataset=self.dataset())
248
+ for entity in entity_pbs]
0 commit comments