odbc
odbc copied to clipboard
Add a semicolon to the Teradata sqlCreateTable method
It was reported by a user that appending a semi-colon to the end of the ON COMMIT PRESERVE ROWS
line fixes an issue he has been getting: https://github.com/tidyverse/dplyr/issues/3531. Specifically, the change needs to be made here: https://github.com/r-dbi/odbc/blob/74ad62c275b1c95a70814707901bdafd8fc2d2b6/R/db.R#L32
PR is forthcoming
Any update on this @edgararuiz? the change is trivial, but IIRC you don't need explicit semicolons at the end of statements in the ODBC API, so it is a bit surprising. It would be great if you could make the change locally and verify it fixes the issue.
Is the solution to just add a ;
to line 32? If I'd happily create a PR.