Nothing
library(testthat)
test_that("isSqlReservedWord works", {
expect_true(all(isSqlReservedWord(c("TRUE", "CASE", "IF", "#if", "#IF"))))
expect_false(any(isSqlReservedWord(c("Tbl1", "#tempTable"))))
expect_warning(isSqlReservedWord("TRUE", warn = T), "reserved")
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.