[ 
https://issues.apache.org/jira/browse/DERBY-5486?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Rick Hillegas updated DERBY-5486:
---------------------------------

    Attachment: derby-5486-01-ab-mergeFiles.diff

Attaching derby-5486-01-ab-mergeFiles.diff. This patch removes Changes10_8_2, 
merging it into Changes10_9. Removes the special exception for 10.8.2. I see 
errors in trigger-related upgrade tests. However, these are identical to the 
errors I see on a codeline without this patch. Committed at subversion revision 
1195476.

Touches the following files:

M       
java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/Changes10_9.java
M       
java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/UpgradeRun.java
D       
java/testing/org/apache/derbyTesting/functionTests/tests/upgradeTests/Changes10_8_2.java

                
> Upgrade tests should verify that DERBY-4437 was backed out of 10.8.2.2
> ----------------------------------------------------------------------
>
>                 Key: DERBY-5486
>                 URL: https://issues.apache.org/jira/browse/DERBY-5486
>             Project: Derby
>          Issue Type: Improvement
>          Components: SQL, Test
>            Reporter: Rick Hillegas
>            Assignee: Rick Hillegas
>         Attachments: derby-5486-01-ab-mergeFiles.diff
>
>
> The following code in UpgradeRun needs to be reworked to verify that 
> sequence/identities behave as expected when upgrading from 10.8.2.2:
>                 if ( lessThan( version, new int[] { 10, 8, 1, 6 } ) )
>                 { suite.addTest(Changes10_8_2.suite(phase)); }
> The following might do the trick:
>                 if (oldMinor < 7)
>                     suite.addTest(Changes10_7.suite(phase));
>                 if (oldMinor < 9)
>                 {
>                     suite.addTest(Changes10_9.suite(phase));
>                     suite.addTest(Changes10_8_2.suite(phase));
>                 }
> Thanks to Kristian for spotting this.

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators: 
https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa
For more information on JIRA, see: http://www.atlassian.com/software/jira

        

Reply via email to