Afraid I'm having some trouble, I'm probably missing something.
If I install the new version of glue
devtools::install_github("tidyverse/glue", ref = "69bc72ce83ed997953511041e6b52d0f73b7e1dc")
I get a successful install message DONE (glue)
In a new notebook I have libraries loaded:
library(odbc)
library(knitr)
library(glue)
I also have an open ODBC connection that will run normal {sql}, but when it comes to a chunk with the header:
```{r engine = "glue_sql"}
SELECT *
FROM table
WHERE value IN ({values*})
And alternatively
```{gluesql}
SELECT *
FROM table
WHERE value IN ({values*})
I only get the following when running the chunk
/bin/sh: glue_sql: command not found
or
/bin/sh: gluesql: command not found
respectively. What have I missed?
Sorry for the hassle.