powered by
See vignette("translation-function") and vignette("translation-verb") for details of overall translation technology. Key differences for this backend are:
vignette("translation-function")
vignette("translation-verb")
Temporary tables get # prefix and use LOCAL TEMPORARY COLUMN.
#
LOCAL TEMPORARY COLUMN
No table analysis performed in copy_to().
copy_to()
paste() uses ||
paste()
||
Note that you can't create new boolean columns from logical expressions; you need to wrap with explicit ifelse: ifelse(x > y, TRUE, FALSE).
ifelse
ifelse(x > y, TRUE, FALSE)
Use simulate_hana() with lazy_frame() to see simulated SQL without converting to live access database.
simulate_hana()
lazy_frame()
library(dplyr, warn.conflicts = FALSE) lf <- lazy_frame(a = TRUE, b = 1, c = 2, d = "z", con = simulate_hana()) lf %>% transmute(x = paste0(d, " times"))
Run the code above in your browser using DataLab