Issues with dplyr::mutate and RMySQL.

knitr::opts_chunk$set(
  collapse = TRUE,
  comment = " # "
)
options(width =100)

Can not prevent the warning.

library('dplyr')
packageVersion('dplyr')
packageVersion('RMySQL')

my_db <- src_mysql('mysql','127.0.0.1',3306,'root','passwd')
d4 <- copy_to(my_db,data.frame(x=c(1.1,2,3,3)),'d4')
suppressWarnings(
  d4 %>% mutate(z=1) %>% compute() -> d4
)
print(d4)

Submitted as RMySQL 176.

version


WinVector/replyr documentation built on Oct. 22, 2020, 8:07 p.m.