View Revisions: Issue #4090

Summary 0004090: Firebird ddl/schema problem when creating tables and deferring constraints
Revision 2019-09-17 02:58 by wuzhijun092987
Steps To Reproduce
Revision 2022-08-05 16:47 by elong
Steps To Reproduce Create the below table on Firebird either using the initial load with deferred constraints or using DB Import to load the XML twice.

<?xml version="1.0"?>
<!DOCTYPE database SYSTEM "http://db.apache.org/torque/dtd/database">
<database name="dataextractor">
    <table name="BOM">
        <column name="BOM_ID" primaryKey="true" required="true" type="INTEGER" size="10">
            <platform-column name="firebird" type="INTEGER" size="10"/>
        </column>
        <column name="BOM_NAME" required="true" type="VARCHAR" size="32" default="">
            <platform-column name="firebird" type="VARCHAR" size="32" default=""/>
        </column>
    </table>
</database>