add "prefix()" select construct

Issue #504 resolved
Mike Bayer repo owner created an issue

for custom keywords at the front of a select:

    select([table.c.col1, table.c.col2](prefix("SQL_CALC_FOUND_ROWS"),))

produces:

   SELECT SQL_CALC_FOUND_ROWS table.col1, table.col2 from table

Comments (2)

  1. Log in to comment