From 401d96a988e946ca3a6b1e9c0e70604ea1372de7 Mon Sep 17 00:00:00 2001 From: Runkang He Date: Tue, 31 Oct 2023 22:32:10 +0800 Subject: [PATCH] Refine doc in NullPolicy --- .../java/org/apache/calcite/adapter/enumerable/NullPolicy.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/apache/calcite/adapter/enumerable/NullPolicy.java b/core/src/main/java/org/apache/calcite/adapter/enumerable/NullPolicy.java index 1d426ea43b1c..5e09815a9548 100644 --- a/core/src/main/java/org/apache/calcite/adapter/enumerable/NullPolicy.java +++ b/core/src/main/java/org/apache/calcite/adapter/enumerable/NullPolicy.java @@ -28,7 +28,7 @@ public enum NullPolicy { /** Returns null if and only if all of the arguments are null; * If all of the arguments are false return false otherwise true. */ ALL, - /** Returns null if and only if one of the arguments are null. */ + /** Returns null if and only if at least one of the arguments is null. */ STRICT, /** Returns null if one of the arguments is null, and possibly other times. */ SEMI_STRICT,