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.
I'm getting the following db2 error when trying to run clean
[ERROR] Failed to execute goal org.flywaydb:flyway-maven-plugin:3.2.1:clean (default) on project uppfoljning: org.flywaydb.core.api.FlywayException: Unable to drop "TEST_FUNC(CHARACTER,CHARACTER): DB2 SQL Error: SQLCODE=-458, SQLSTATE=42883, SQLERRMC=UPPFOLJNING.TEST_FUNC, DRIVER=4.19.26 -> [Help 1]
From the db2 documentation For example, assuming a function exists for which a parameter was defined as CHAR(12) on the CREATE FUNCTION statement, a reference to that function by a signature could specify this parameter as either CHAR(12), or CHAR(). The CHAR() syntax provides a way to say, "do not care about length, precision and scale attributes in finding a matching function".
I'm getting the following db2 error when trying to run clean
[ERROR] Failed to execute goal org.flywaydb:flyway-maven-plugin:3.2.1:clean (default) on project uppfoljning: org.flywaydb.core.api.FlywayException: Unable to drop "TEST_FUNC(CHARACTER,CHARACTER): DB2 SQL Error: SQLCODE=-458, SQLSTATE=42883, SQLERRMC=UPPFOLJNING.TEST_FUNC, DRIVER=4.19.26 -> [Help 1]
From the db2 documentation
For example, assuming a function exists for which a parameter was defined as CHAR(12) on the CREATE FUNCTION statement, a reference to that function by a signature could specify this parameter as either CHAR(12), or CHAR(). The CHAR() syntax provides a way to say, "do not care about length, precision and scale attributes in finding a matching function".
A simple test case
To never care about length may be the way to fix this.
Using flywaydb version 3.2.1 and DB2 v10.5.500.107 with fixpack 5
The text was updated successfully, but these errors were encountered: