Uploaded image for project: 'OpenJPA'
  1. OpenJPA
  2. OPENJPA-382

Overriding column names for Byte[] attributes causes exception.

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • None
    • 1.0.1, 1.1.0
    • None
    • None

    Description

      If an entity has an attribute of type Byte array and the column name is overridden in xml the following error will occur.

      <openjpa-1.0.0-SNAPSHOT-r420667:566855 fatal user error>
      org.apache.openjpa.persistence.ArgumentException: You have supplied columns for
      "org.apache.openjpa.persistence.xml.XmlOverrideEntity.picture<element:class java.lang.Byte>", but this mapping cannot have columns in this context.

      Code snippets follow :

      public class XmlOverrideEntity {
      <snip>
      @Column(name="PICTURE")
      @Lob
      private Byte[] picture;
      <snip>
      }

      // orm.xml
      <entity name="XmlOverride" class="XmlOverrideEntity">
      <attributes>
      <basic name="name" optional="true"></basic>
      <basic name="description" optional="false"></basic>
      <basic name="picture" fetch="EAGER">
      <column name="pic_xml"/>
      <lob/>
      </basic>
      </attributes>
      </entity>

      Attachments

        Activity

          People

            mikedd Michael Dick
            mikedd Michael Dick
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: