Hi Mohamed,
I've
created an initial update for the extension to work with vertica 7.1
on liquibase 3.2.2 (latest stable release)
also
note it's better to use XMLs as changes since it can better rollback
and manage your changes (it treats SQLs as scripts - it doesn't
parse them to know what you want)
an
example changeSet could be:
- <changeSet id="5" author="test">
- <ext:createTable partitionby="floor((timestamplong / 86400000))" tableName="TEST_VERTICA_2">
- <column name="id" type="INT">
- <constraints nullable="false"/>
- </column>
- <column name="timestamp" type="timestamp">
- <constraints nullable="false"/>
- </column>
- <column name="timestamplong" type="INT" encoding="RLE">
- <constraints nullable="false"/>
- </column>
- </ext:createTable>
- </changeSet>
Regards,
- Jony