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
Currently running Liquibase dropAll with the plugin on an OrientDB fails because the DROP TABLE statements are sent to OrientDB directly. OrientDB doesn't understand DROP TABLE; these statements should be mapped to DROP CLASS instead.
The plugin should provide a custom SqlGenerators that maps DropTableStatement to a DropClassSql, similar to what OrientCreateTableSqlGenerator does for CreateTableStatement.
There are possibly other types of DB objects that need to be dropped correctly.
The text was updated successfully, but these errors were encountered:
Currently running Liquibase
dropAll
with the plugin on an OrientDB fails because theDROP TABLE
statements are sent to OrientDB directly. OrientDB doesn't understandDROP TABLE
; these statements should be mapped toDROP CLASS
instead.The plugin should provide a custom
SqlGenerator
s that mapsDropTableStatement
to aDropClassSql
, similar to what OrientCreateTableSqlGenerator does for CreateTableStatement.There are possibly other types of DB objects that need to be dropped correctly.
The text was updated successfully, but these errors were encountered: