Firebird remarks

I can not add comments on tables or fields using Firebird database.

Firebird: 2.5
jdbc: Jaybird-full-2.2.8
liquibase: 3.4.2
OS: Windows

PostgreSQL 9.x it works…

Example:

<?xml version="1.0" encoding="UTF-8"?>

<databaseChangeLog …>
   
        <createTable tableName=“remarks”
                     remarks=“remarks of table”>
           
               
           
           
   

The liquibase log not shows errors:
logLevel: debug
Computed checksum for createTable:[
    columns=[
        [
            [
                nullable=“false”
            ]
            name=“id”
            remarks=“remarks of column”
            type=“numeric(3,0)”
        ]
    ]
    remarks=“remarks of table”
    tableName=“remarks”
] as 7fd0f275743adef293d26b84f8aaba4d
INFO 08/03/16 16:40: liquibase: Successfully released change log lock
Liquibase Update Successful

Unfortunately support for remarks is currently a bit hit and miss. The fix should make it into 4.0, but for now you’ll have to use tags.

Nathan