Uploaded image for project: 'Infinispan'
  1. Infinispan
  2. ISPN-14457

Support nested queries with Ickle

    XMLWordPrintable

Details

    • Enhancement
    • Resolution: Unresolved
    • Major
    • None
    • 14.0.5.Final
    • None

    Description

      At the moment it is not possible to express a query that takes advantages from embedded nested entity:

      @Embedded(structure = Structure.NESTED)
      

      We want to introduce a new query expression such as:

      FROM fax.play.book b
      JOIN b.reviews r
      WHERE r.score = 8.75
      AND r.content : `very`
      

      At the moment the only query we can do is:

      from fax.play.book b 
      where b.reviews.score = 8.75 
      and b.reviews.content : `very`
      

      but it expressed something different and it works the same with a FLATTENED structure

      Attachments

        Activity

          People

            fercoli@redhat.com Fabio Massimo Ercoli
            fercoli@redhat.com Fabio Massimo Ercoli
            Votes:
            2 Vote for this issue
            Watchers:
            5 Start watching this issue

            Dates

              Created:
              Updated: