Will Dean

Results 623 comments of Will Dean

yeah, I think returning strings would not be ideal for general usage. What do you imagine the result would store if it was not the `Table` and `Field` instances? Those...

Seems like the Message gets LIST_QUERY as an abstract method. i.e. `Message.__abstractmethods__` This provides the same error. Might be related somehow ```python from abc import ABC, abstractmethod class Test(ABC): @abstractmethod...

> I don't know why it is like this since I didn't implement this, but as pypika is now this is AFAIK the correct way to do a cross join....

Are you trying to recreate that specific example? I'm seeing that ```python from pypika.dialects import MSSQLQuery query = MSSQLQuery.from_("table").select("id").union(MSSQLQuery.from_("another_table").select("id")) query.get_sql() # or str(query) ``` does indeed use the parens ```text...

I misread that then. Here in the code, the `wrap_set_operation_queries` is set to False. https://github.com/kayak/pypika/blob/8841520e906970d76c5ed81c7dd5d154f0d5259d/pypika/dialects.py#L90 Would you want to make a PR to change? In the meantime, you might be...

Would you like to make a PR?

Would you be able to test the change?

Thanks for the PR! Will take a deeper look later

Do you have any thoughts as well? @AzisK

Would you like to make a PR?