Skip to content

fixes ISSUE-44892: on db creation config scripts are applied in two steps

When creating database, the database model was created in two steps:

  1. model creation without taking into account config scripts
  2. config script changes (model and data) were applied

This can cause different problems.

Now the process is more like:

  1. read in memory model without config script changes
  2. read config script model changes and apply them in memory model
  3. create complete model in DB
  4. read and apply data in DB without config script changes
  5. read and apply in DB data config script changes


DBSM Automatic Tests

  • PostgreSQL
  • Oracle

Related Issues

Fixed Issues

Non Fixed Issues

  • Not fixes issue 44612. The following warning message still appears: SQL Command failed with: ORA-30556: either functional or bitmap join index is defined on the column to be modified
  • Not fixes issue 45318. Although the stack trace of the NPE exception is gone, it would be nice to show a warning with the changes that are not going to be eventually applied.
Edited by Carlos Aristu

Merge request reports