David Purser
Results
1
issues of
David Purser
### Problem Using a table as an argument to a function works correctly, until the table is aliased. Consider the following code: ``` products = Table('products').as_('p') test_query = Query.from_(products).select(fn.Count(products)) print(str(test_query))...