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>