Hi there,
having issues with ant and liquibase with sql anywhere. All I want to do is to apply a createIndex statement to a table.
using liquibase maven plugin everything is okay. unfortunately the ant version generates some invalid sql for sql anywhere
- [ERROR] Reason: liquibase.exception.DatabaseException: Error executing SQL CREATE INDEX "DBA".KP_KPROTOKOLL_KUNDE_N_IDX ON "DBA".KP_KONTROLLPROTOKOLL(KUNDEN_NUMMER): SQL Anywhere Error -131: Syntax error near '.' on line 1
This should be without the first DBA, so the correct statement would be like
- CREATE INDEX KP_KPROTOKOLL_KUNDE_N_IDX ON "DBA".KP_KONTROLLPROTOKOLL(KUNDEN_NUMMER);
How can I solve this?
best regards
martin