From cc2459affb724a9b6fbeca97427bb213f6c6e728 Mon Sep 17 00:00:00 2001 From: Keiran Price Date: Wed, 11 Sep 2019 09:45:45 +0100 Subject: [PATCH] #41: Add is_distinct bool to ReadQuery --- common/database_helpers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/common/database_helpers.py b/common/database_helpers.py index 875a4597..303e6712 100644 --- a/common/database_helpers.py +++ b/common/database_helpers.py @@ -52,6 +52,7 @@ class ReadQuery(Query): def __init__(self, table): super().__init__(table) self.include_related_entities = False + self.is_distinct_fields_query = False def execute_query(self): self.commit_changes()