Open
Description
From tidyverse/dplyr#3516 . Notice how violently the value is rounded when round-tripped through the database. The amount of rounding depends on the driver (so may not be a pure DBI
issue).
db <- DBI::dbConnect(RPostgreSQL::PostgreSQL(),
host = 'localhost',
port = 5432,
user = 'johnmount',
password = '')
tmp_df <- data.frame(id = 1363392673615939)
format(tmp_df, scientific = FALSE)
#> id
#> 1 1363392673615939
str(tmp_df)
#> 'data.frame': 1 obs. of 1 variable:
#> $ id: num 1.36e+15
DBI::dbWriteTable(db, "tmp_df", tmp_df,
temporary = TRUE, overwrite = TRUE)
#> [1] TRUE
d <- DBI::dbGetQuery(db, "SELECT * FROM tmp_df")
format(d, scientific = FALSE)
#> row.names id
#> 1 1 1363392673615940
DBI::dbGetQuery(db,
"select table_name, column_name, data_type from information_schema.columns
where table_name = 'tmp_df' order by table_name, column_name")
#> table_name column_name data_type
#> 1 tmp_df id double precision
#> 2 tmp_df row.names text
DBI::dbDisconnect(db)
#> [1] TRUE
Metadata
Metadata
Assignees
Labels
No labels