开发者

Liquibase creating index for Oracle fails

I'm trying to create an index with Liquibase

Here is the changeSet

<changeSet id="....
    <createIndex tableName="xyz"    indexName="abc">
        <column name="column1"/>开发者_运维问答;
    </createIndex>

But I'm getting this error

Caused by: liquibase.exception.DatabaseException: Error executing SQL CREATE INDEX .abc ON xyz(column1): ORA-00953: missing or invalid index name

Note: The same liquibase file is processed with PostgreSQL on development and with H2 for unit tests. It's working fine for those databases.


An index name cannot start with .

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜