using add_column does not seem to work the same as including both
items in the query [like below]
query = meta.Session.query(Article,
comment_count_subquery.c.article_comment_count)
it does not return an iterable result
is there any way to add subqueries to the query after the query has
been created, that replicates the functionality you would expect if
you had included both items in the initial query() call?