incubator-kie-drools icon indicating copy to clipboard operation
incubator-kie-drools copied to clipboard

Drools is a rule engine, DMN engine and complex event processing (CEP) engine for Java.

Results 137 incubator-kie-drools issues
Sort by recently updated
recently updated
newest added

## Parent issue - #5678 ## Failing tests - `org.drools.model.codegen.execmodel.CepTest#testAfterOnLongFields` ## Notes - `STANDARD_FROM_DRL` only. ## Rule code snippet ``` $b : StockTick( company == "ACME", timeFieldAsLong after[5,8] $a.timeFieldAsLong )...

## Parent issue - #5678 ## Failing tests - `org.drools.model.codegen.execmodel.CepTest#testDeclaredSlidingWindow` ## Notes - Both `STANDARD_FROM_DRL` and `PATTERN_DSL`. ## Rule code snippet ``` StockTick( company == "DROO" ) over window:time( 5s...

## Parent issue - #5678 ## Failing tests - `org.drools.model.codegen.execmodel.CepTest#testExpires` ## Notes - Both `STANDARD_FROM_DRL` and `PATTERN_DSL`. ## Rule code snippet ``` declare StockFact @role( value = event ) @expires(...

## Parent issue - #5678 ## Failing tests - `org.drools.model.codegen.execmodel.BindingTest#testComplexEnclosedBinding` ## Notes - Both `STANDARD_FROM_DRL` and `PATTERN_DSL`. ## Rule code snippet ``` $p : Person( ($n : name == "Mario")...

## Parent issue - #5678 ## Failing tests - `org.drools.model.codegen.execmodel.ExisistentialTest#test2NotsWithAnd` ## Notes - Both `STANDARD_FROM_DRL` and `PATTERN_DSL`. ## Rule code snippet ``` rule R when (not (and Integer( $i :...

## Parent issue - #5678 ## Failing tests - `org.drools.model.codegen.execmodel.GroupByTest#providedInstance` ## Notes - Both `STANDARD_FROM_DRL` and `PATTERN_DSL`. ## Rule code snippet ``` import java.util.Map; global Map results; rule X when...

## Parent issue - #5678 ## Related issues - https://github.com/apache/incubator-kie-drools/issues/5710 - https://github.com/apache/incubator-kie-drools/issues/5708 ## Failing tests - Many. ## Notes - One test is special: `org.drools.model.codegen.execmodel.FromTest#testMultipleFromList` - this one fails in...

## Parent issue - #5678 ## Failing tests - `org.drools.model.codegen.execmodel.QueryTest#testQueryWithDyanmicInsert` - `org.drools.model.codegen.execmodel.FromTest#testNew` ## Notes - Both `STANDARD_FROM_DRL` and `PATTERN_DSL` but different error outputs. ## Rule code snippet ``` query peeps(...

## Parent issue - #5678 ## Failing tests - `org.drools.model.codegen.execmodel.CompilationFailuresTest#testMaxIntegerResultOnDoublePatternShouldntCompile` ## Notes - Both `STANDARD_FROM_DRL` and `PATTERN_DSL`. ## Rule code snippet ``` $max : Double() from accumulate ( $num :...

**Issue Description:** Migrate a new DRL parser based on antlr 4, because the current DRL parser (based on antlr 3) is hard-coded in the generated Java codes that make it...