fix quotes

This commit is contained in:
collerek
2021-12-16 18:31:28 +01:00
parent f245e91740
commit 531542bb21

View File

@ -114,7 +114,7 @@ class SqlJoin:
quotter = dialect.identifier_preparer.quote
right_part = f"{quotter(table)}.{quotter(column)}"
else:
right_part = f"{previous_alias}'_'{from_clause}"
right_part = f"{previous_alias}_{from_clause}"
return text(f"{left_part}={right_part}")