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

Removing entities with Embedded field issue multiple delete statements

    XMLWordPrintableJSON

Details

    • Bug
    • Status: Closed
    • Major
    • Resolution: Fixed
    • 1.2.0
    • 1.2.0, 2.0.0-M2
    • jpa
    • None

    Description

      > I have a following beans:
      >
      > @Embeddable
      > class A

      { > int field1 > }

      >
      > @Entity
      > class B

      { > @Id > long id; > > int field2 > > @Embedded > A field3 > }

      >
      > When I trying to delete all instances of B entity from data storage by
      > "delete from B" I got:
      >
      > 1. Query ("select" statement) for all B instances
      > 2. For each instance from 1. delete statement
      >
      > Why this is not delete by simple "delete from B" sql statement?

      Attachments

        Activity

          People

            ppoddar@apache.org Pinaki Poddar
            mmtt45 Marcin Tomasik
            Votes:
            0 Vote for this issue
            Watchers:
            0 Start watching this issue

            Dates

              Created:
              Updated:
              Resolved: