Uploaded image for project: 'Derby'
  1. Derby
  2. DERBY-2919

Alter table .. Add .. Primary Key fails with Column not found when columnName contains localized characters - w/a available

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Minor
    • Resolution: Invalid
    • 10.3.1.4
    • None
    • Localization
    • None

    Description

      Database created with territory=es_MX and table with colunName Excepci≤n (taken from exception text for "ERROR XJ001: Excepci≤n de Java:...") trying to specify the column as the primary key using alter table fails:

      Db Creation URL: connect 'jdbc:derby:toursMx;create=true;territory=es_MX';
      – Create table
      Create table Ciudad_de_Mexico2
      ( nombre varchar(24),
      estado varchar(24),
      Excepci≤n int );
      – Create PK
      ALTER TABLE Ciudad_de_Mexico2
      ADD CONSTRAINT Mx_PK2 Primary Key (
      Excepci≤n);
      – ERROR 42831: 'EXCEPCI╙N' no puede ser una columna de clave primaria o clave - nica porque puede contener valores nulos.

      – WORKAROUND: create the primary key when the table is created:

      Create table Ciudad_de_Mexico
      ( nombre varchar(24),
      estado varchar(24),
      Excepci≤n int constraint mx_pk Primary Key);

      Attachments

        Activity

          People

            Unassigned Unassigned
            stan Sun Seng David Tan
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: