oracle Liquibase -在变更集中使用属性值

vjrehmav  于 2023-04-29  发布在  Oracle
关注(0)|答案(1)|浏览(103)

我有这个变更集

<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog"
xmlns:ext="http://www.liquibase.org/xml/ns/dbchangelog-ext"
xmlns:pro="http://www.liquibase.org/xml/ns/pro"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.liquibase.org/xml/ns/dbchangelog-ext http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd http://www.liquibase.org/xml/ns/pro http://www.liquibase.org/xml/ns/pro/liquibase-pro-latest.xsd http://www.liquibase.org/xml/ns/dbchangelog http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-latest.xsd">

<changeSet id="1" author="fabio">
   <createTable tableName="${table.name}">
           <column name="NEW_2" type="int">
           </column>
    </createTable>
 </changeSet>
 </databaseChangeLog>

我尝试用www. example中的属性值替换表名 www.example.com 文件

table.name=NEW_TABLE

但是它并没有创建名为“NEW_TABLE”的新表,而是创建名为“${table.name}”。
我做错了什么?

jm81lzqq

jm81lzqq1#

这可能与Liquibase 4的此问题有关。21.0,在4中没有修复。21.1.
“属性未被替换”https://github.com/liquibase/liquibase/issues/4129
在我们得到修复版本之前,您可以尝试使用早期版本。或者你可以使用一个系统属性,它被正确地替换了。

相关问题