[Bugfix] Remove prequery properties from query_obj (#7896)

* Create query_obj for every filter

* Deprecate is_prequery and prequeries from query_obj

* Fix tests

* Fix typos and remove redundant ; from sql

* Add typing to namedtuples and move all query str logic to one place

* Fix unit test
This commit is contained in:
Ville Brofeldt
2019-07-23 22:13:58 +03:00
committed by GitHub
parent 2221445f44
commit 07a76f83b1
12 changed files with 48 additions and 66 deletions

View File

@@ -22,5 +22,5 @@ class GSheetsEngineSpec(SqliteEngineSpec):
"""Engine for Google spreadsheets"""
engine = "gsheets"
inner_joins = False
allows_subquery = False
allows_joins = False
allows_subqueries = False