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): ...@@ -112,7 +112,9 @@ class DomainTool(BaseTool):
if x.startswith('predicate.')] if x.startswith('predicate.')]
expression_list = [] expression_list = []
checked_column_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 = [] query_list = []
if query is not None: if query is not None:
query_list = [query] 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