Example: In: ``` %%sql result << select col_name from table_name ``` Out: ``` Returning data to local variable result ``` I don't want this message to clutter my output for the document I am producing. It would be useful to have a setting to suppress this message. Current workaround for this issue (needs to be applied for each cell): ``` %%capture %%sql result << select col_name from table_name ```