generated from DbUp/dbup-provider-template
-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[DbUp.Oracle] Script fail when comment at end #3
Labels
bug
Something isn't working
Comments
What version do you use? |
4.3.0 (current latest) |
Interesting. Perhaps this is due to \r\n absence at the end of script? It looks like a bug. |
Same problem with |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Don't know if its only oracle related but in fact, if you try to run the following scripts :
create table FOO (myid INT NOT NULL); -- this comment will fail the script
create table FOO (myid INT NOT NULL); /* this comment will fail the script too */
the scripts will fail according to the oracle exception ORA-00900 invalid SQL statement.
DbUp consider the comment as SQL instruction in each cases.
The text was updated successfully, but these errors were encountered: