Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

Liquibase Enterprise will throw warnings for the following conditions in both the Packager and Forecast operations:

  • CreateIndexType -- Using the tablespace that doesn't exist check

  • Forecast: CreateTableType -- Using the tablespace that doesn't exist check

  • Warning: ModifyDataType statement with non-null value in column

If you wish to turn off any of these warnings, this can be done by adding an entry in the daticaldb.properties file.

Instructions

  1. In the DDB project repo, either add or modify a file called daticaldb.properties in the root directory.

  2. The daticaldb.properties file may be included in your .gitignore file. If so, you you will need to remove this change from .gitignore so that any changes to this file can be saved to the project.

  3. Add a property in this file called internalRules.disabledDefaultRules

  4. Valid values for this property include:

    • MODIFY_DATA_TYPE_CHECKER

    • CREATE_INDEX_CHECK_TABLESPACE_CHECKER

    • CREATE_TABLE_CHECK_TABLESPACE_CHECKER

  5. Add any values to the string for the warnings you would like to disable. Values are comma separated. Example:

    internalRules.disabledDefaultRules=MODIFY_DATA_TYPE_CHECKER,CREATE_INDEX_CHECK_TABLESPACE_CHECKER,CREATE_TABLE_CHECK_TABLESPACE_CHECKER
  6. Check in the changes to Git for your DDB project repo. Run Packager to see the changes reflected for that operation and to update any artifacts to be used by Forecast.

  • No labels