You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
statement<- paste0("CREATE SCHEMA IF NOT EXISTS ", schema_id)
dbExecute(con, statement)
#> Error: You have an error in your SQL syntax; check the manual that corresponds to your MariaDB server version for the right syntax to use near '.' at line 1 [1064]
dbDisconnect(con)
Like RPostgres, RMariaDB does not allow to quote column identifiers (the last example of
glue::glue_sql()
relies on this feature).In addition it is not possible to quote a valid schema identifier, again similar to RPostgres
Note the dot behind the quoted schema name.
Session info
The text was updated successfully, but these errors were encountered: