http://nagoya.apache.org/bugzilla/show_bug.cgi?id=2204 *** shadow/2204 Sat Jun 16 11:06:11 2001 --- shadow/2204.tmp.25135 Sat Jun 16 12:56:10 2001 *************** *** 1,5 **** +============================================================================+ ! | Column.readFromXML()initializes "isNotNull" wrong | +----------------------------------------------------------------------------+ | Bug #: 2204 Product: Turbine | | Status: NEW Version: 2.1b3 | --- 1,5 ---- +============================================================================+ ! | Column.loadFromXML()initializes "isNotNull" wrong | +----------------------------------------------------------------------------+ | Bug #: 2204 Product: Turbine | | Status: NEW Version: 2.1b3 | *************** *** 61,63 **** --- 61,81 ---- { isNotNull = true; } + + ------- Additional Comments From [EMAIL PROTECTED] 2001-06-16 12:56 ------- + The method "readFromXML" mentioned has been mistyped in the 1st comment. + Its name is "loadFromXML". + + There is an error in the correction: + // If this column is an autoincrement value then it can't be null. + if ("true".equals (isAutoIncrement)) + { + isNotNull = true; + } + + should be + // If this column is an autoincrement value then it can't be null. + if ("true".equals (autoIncrement)) + { + isNotNull = true; + } --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
