Adds documentation comments to tables and columns in DuckDB.
Examples
if (FALSE) { # \dontrun{
set_duckdb_comments(
con,
table = "bottle",
table_comment = "Bottle sample data from CalCOFI cruises",
column_comments = list(
cruise_id = "Unique cruise identifier",
depth_m = "Sample depth in meters",
temp_c = "Water temperature in Celsius"))
} # }