make_tbl_output.Rd
This function is used at the end of user-facing functions to query the database. It limits the query to some number of rows and collects if if specified.
make_tbl_output(tbl, limit, lazy)
A query from conn
with dbplyr and lazily evaluated.
LIMIT of the query. A positive integer or Inf. Default is Inf, in which case all records are returned.
If TRUE, does not collect()
the query into a dataframe.
This is useful if other tables from the database are joined later on.
A query, evaluated with limit
and lazy
.