Waylon Peng

Results 3 comments of Waylon Peng

The example you provided uses `MSSQLQuery` instead of `MySQLQuery`. Here's an example: ```py from pypika.dialects import MySQLQuery query = MySQLQuery.from_("table").select("id").union(MSSQLQuery.from_("another_table").select("id")) query.get_sql() # or str(query) ``` results in ``` SELECT `id`...

The temporary solution works, thanks. I opened a PR: https://github.com/kayak/pypika/pull/782

Gotcha, just added the tests back.