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
The problem is in 4th line of 2nd migration script. Problematic part is {ts '3099-01-01 00:00:00'}, which causes SqlStatementBuilder.extractStringLiteralDelimitingTokens() to incorrectly parse 4th line. As result internal state of SQLServerSqlStatementBuilder indicates that it is in "insideQuoteStringLiteral", which in the end fails at recognizing 'GO' delimiter.
2nd migration script is executed as single JDBC statement. But it should correctly recognize delimiter and run "CREATE TRIGGER" sql statements in two separate JDBC statements
Have same problem with following script:
CREATE Procedure myProcedure
As
SELECT myTableID+'.jpg' url
from myTable
return 0
go
grant execute on myProcedure to public
go
I will submit a repro project in a minute
The text was updated successfully, but these errors were encountered: