]> source.dussan.org Git - poi.git/commitdiff
[bug-65915] possible issue in boolean function support
authorPJ Fanning <fanningpj@apache.org>
Fri, 25 Feb 2022 19:18:37 +0000 (19:18 +0000)
committerPJ Fanning <fanningpj@apache.org>
Fri, 25 Feb 2022 19:18:37 +0000 (19:18 +0000)
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1898425 13f79535-47bb-0310-9956-ffa450edef68

poi/src/main/java/org/apache/poi/ss/formula/functions/BooleanFunction.java
poi/src/test/java/org/apache/poi/ss/formula/functions/TestOrFunction.java

index 50034f6dece4bbd7b06780836caddd12e2e746cd..1ef3f9c056550666a540090f58f7da3e82a5ce99 100644 (file)
@@ -139,14 +139,7 @@ public abstract class BooleanFunction implements Function,ArrayFunction {
 
     @Override
     public ValueEval evaluateArray(ValueEval[] args, int srcRowIndex, int srcColumnIndex) {
-        if (args.length == 1) {
-            return evaluateOneArrayArg(args[0], srcRowIndex, srcColumnIndex,
-                    vA -> evaluate(new ValueEval[]{vA}, srcRowIndex, srcColumnIndex));
-        } else if (args.length == 2) {
-            return evaluateTwoArrayArgs(args[0], args[1], srcRowIndex, srcColumnIndex,
-                    (vA, vB) -> evaluate(new ValueEval[]{vA, vB}, srcRowIndex, srcColumnIndex));
-        }
-        return ErrorEval.VALUE_INVALID;
+        return evaluate(args, srcRowIndex, srcColumnIndex);
     }
 
     private static ValueEval evaluateFalse(ValueEval[] args, int srcRowIndex, int srcColumnIndex) {
index 83252ac5c1745bc6e02e297570256740a0fee607..0c9419ef35f1254c051f3b680be7d936d80de995 100644 (file)
@@ -98,7 +98,21 @@ final class TestOrFunction {
             HSSFSheet sheet = wb.createSheet();
             HSSFRow row = sheet.createRow(0);
             HSSFCell cell = row.createCell(0);
-            sheet.setArrayFormula("INDEX({1},1,IF(OR(FALSE,FALSE),1,1))", new CellRangeAddress(0, 0, 0, 0));
+            sheet.setArrayFormula("INDEX({1},1,IF(OR(FALSE,FALSE),0,1))", new CellRangeAddress(0, 0, 0, 0));
+            fe.evaluateAll();
+            assertEquals(1.0, cell.getNumericCellValue());
+        }
+    }
+
+    @Test
+    void testBug65915Array3Function() throws IOException {
+        //https://bz.apache.org/bugzilla/show_bug.cgi?id=65915
+        try (HSSFWorkbook wb = new HSSFWorkbook()) {
+            HSSFFormulaEvaluator fe = new HSSFFormulaEvaluator(wb);
+            HSSFSheet sheet = wb.createSheet();
+            HSSFRow row = sheet.createRow(0);
+            HSSFCell cell = row.createCell(0);
+            sheet.setArrayFormula("INDEX({1},1,IF(OR(1=2,2=3,3=4),0,1))", new CellRangeAddress(0, 0, 0, 0));
             fe.evaluateAll();
             assertEquals(1.0, cell.getNumericCellValue());
         }