Uploaded image for project: 'Red Hat Decision Manager'
  1. Red Hat Decision Manager
  2. RHDM-1423

An accumulate with more than one binding is wrongly generated in the executable model

    XMLWordPrintable

Details

    • Bug
    • Resolution: Done
    • Major
    • 7.8.1.GA
    • 7.7.0.GA, 7.8.0.GA
    • BRE
    • CR1
    • +
    • 2020 Week 31-33 (from Jul 27)

    Description

      Reproducer

       @Test
      public void testAccumulateWithManyBindings() {
          String str =
                  "import " + Person.class.getCanonicalName() + ";\n" +
                  "rule R when\n" +
                  "  accumulate (\n" +
                  "       Person($age : age, $name : name), $max : max( $name.length() ) " +
                  "         )" +
                  "then\n" +
                  "  insert($max);\n" +
                  "end";
      
          KieSession ksession = getKieSession( str );
      
          ksession.insert( new Person( "Mario", 40 ) );
          ksession.insert( new Person( "Mark", 40 ) );
          ksession.insert( new Person( "Luca", 40 ) );
      
          ksession.fireAllRules();
      
          List<Number> results = getObjectsIntoList(ksession, Number.class);
          assertEquals(1, results.size());
          assertEquals(5, results.get(0).intValue());
      }

      Attachments

        Issue Links

          Activity

            People

              mfusco@redhat.com Mario Fusco
              rhn-support-mputz Martin Weiler (Inactive)
              Daniel Rosa Daniel Rosa
              Daniel Rosa Daniel Rosa
              Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

                Created:
                Updated:
                Resolved: