Comment 4 for bug 1364457

Revision history for this message
Olaf van Zandwijk (olafz) wrote :

@valerii-kravchuk

Have you read the upstream bug-report? This happens from within a JBoss (Java application server) container. Outside the container, it cannot be reproduced. Downgrading version 5.5.38 solves this issue.

In our case, we run a liquibase changeset from inside JBoss with this content:

     <changeSet author="Author" id="changeset-ID">
         <addColumn tableName="tablename">
            <column name="version" type="bigint" defaultValue="0">
                <constraints nullable="false" />
            </column>
         </addColumn>
     </changeSet>

That translates to the query you see above.