You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-dev@db.apache.org by "Kathey Marsden (JIRA)" <ji...@apache.org> on 2008/04/03 18:26:24 UTC

[jira] Closed: (DERBY-3566) Alter column set data type not allowed in soft upgrade with unique constraint

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

Kathey Marsden closed DERBY-3566.
---------------------------------

       Resolution: Fixed
    Fix Version/s: 10.5.0.0
                   10.4.1.0

committed to trunk and 10.4


> Alter column set data type not allowed in soft upgrade with unique constraint
> -----------------------------------------------------------------------------
>
>                 Key: DERBY-3566
>                 URL: https://issues.apache.org/jira/browse/DERBY-3566
>             Project: Derby
>          Issue Type: Bug
>          Components: SQL
>    Affects Versions: 10.4.0.0
>            Reporter: Kathey Marsden
>            Assignee: Anurag Shekhar
>            Priority: Minor
>             Fix For: 10.4.1.0, 10.5.0.0
>
>         Attachments: derby-3566_v1.diff
>
>
> In 10.3 I can do this:
> ij> create table t0 (i int not null, v varchar(1) not null, constraint  uq unique(v,i));
> 0 rows inserted/updated/deleted
> ij> alter table t0 alter v set data type varchar(2);
> 0 rows inserted/updated/deleted
> ij>
> In 10.4 soft upgrade mode I cannot:
> ij> create table t0 (i int not null, v varchar(1) not null, constraint  uq unique(v,i));
> 0 rows inserted/updated/deleted
> ij> alter table t0 alter v set data type varchar(2);
> ERROR 42Z20: Column 'V' cannot be made nullable. It is part of a primary key or unique constraint, which cannot have any
> nullable columns.
> ij>

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.