You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, dbplyr implements print.tbl_lazy() and print.tbl_sql(), but tbl_sql objects inherit from tbl_lazy. If we remove print.tbl_sql(), printing is handled by print.tbl_lazy(), which will print only the query plan but not the data.
@hadley: Okay to get rid of print.tbl_lazy(), and implement a different method (e.g., render()) to show the query plan of a lazy object?
The text was updated successfully, but these errors were encountered:
Currently, dbplyr implements
print.tbl_lazy()
andprint.tbl_sql()
, buttbl_sql
objects inherit fromtbl_lazy
. If we removeprint.tbl_sql()
, printing is handled byprint.tbl_lazy()
, which will print only the query plan but not the data.@hadley: Okay to get rid of
print.tbl_lazy()
, and implement a different method (e.g.,render()
) to show the query plan of a lazy object?The text was updated successfully, but these errors were encountered: