Liquibase generates columns with the same name (Sybase)

Description

I have a DB in sybase and I have some tables with the same name but with a capital letter (fruit and fruiT), as well as views with the same name as the tables (Fruit), When I generate the XML with the DB information , With the command --generateChangeLog generates an XML with a single table, but with the columns of the two tables and the view, for example if in the tables I have 3 columns and in the same view, Liquibase generates a file with a table And 9 columns Help

<createTable tableName="PersoN">
<column name="id" type="INT">
<constraints nullable="false"/>
</column>
<column name="nombre" type="VARCHAR(200)">
<constraints nullable="false"/>
</column>
<column name="edad" type="INT">
<constraints nullable="false"/>
</column>
<column name="id" type="INT">
<constraints nullable="false"/>
</column>
<column name="nombre" type="VARCHAR(200)">
<constraints nullable="false"/>
</column>
<column name="edad" type="INT">
<constraints nullable="false"/>
</column>
<column name="id" type="INT">
<constraints nullable="false"/>
</column>
<column name="nombre" type="VARCHAR(200)">
<constraints nullable="false"/>
</column>
<column name="edad" type="INT">
<constraints nullable="false"/>
</column>
</createTable>

Environment

Java

Attachments

1

Activity

Show:

Details

Reporter

Components

Affects versions

Priority

Created March 1, 2017 at 10:44 PM
Updated February 19, 2018 at 6:05 AM