Enable implicit_join by default on DomainTool

This needs to be reverted after fixing either ZSQLCatalog or DomainTool to work
without it.
parent 0f171478
......@@ -112,7 +112,9 @@ class DomainTool(BaseTool):
if x.startswith('predicate.')]
expression_list = []
checked_column_list = []
sql_kw = {}
# XXX-Leo: Please remove implicit_join below, while making sure
# testDomainTool.py still passes
sql_kw = dict(implicit_join=True)
query_list = []
if query is not None:
query_list = [query]
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment