r-dbi / RPostgres

A DBI-compliant interface to PostgreSQL
https://rpostgres.r-dbi.org
Other
334 stars 78 forks source link

sqlData() returns a tibble for tibble input #384

Closed krlmlr closed 6 months ago

krlmlr commented 2 years ago

This breaks downstream/upstream when trying sqlAppendTable() with verbose lifecycle failures.

con <- RPostgres::postgresDefault()
DBI::sqlData(con, tibble::tibble(a = 1))
#> # A tibble: 1 × 1
#>   a        
#>   <SQL>    
#> 1 1::float8

Created on 2021-12-21 by the reprex package (v2.0.1)

krlmlr commented 6 months ago

No longer an issue downstream.