From 38b636f901e945ae36d80a71cafb523d68ca7236 Mon Sep 17 00:00:00 2001 From: Adriano dos Santos Fernandes <529415+asfernandes@users.noreply.github.com> Date: Mon, 27 Nov 2023 21:12:50 -0300 Subject: [PATCH] Misc. --- src/dsql/BoolNodes.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/dsql/BoolNodes.h b/src/dsql/BoolNodes.h index 43ad33fcd0..a936f5c46d 100644 --- a/src/dsql/BoolNodes.h +++ b/src/dsql/BoolNodes.h @@ -165,7 +165,7 @@ public: bool ignoreNulls(const StreamList& streams) const override { // IN () is logically the same as = [0] OR = [1] OR .. - // See above (BinaryBoolNode) the rule for the OR predicate: all its aruments should have + // See above (BinaryBoolNode) the rule for the OR predicate: all its arguments should have // ignoreNulls == true to make the final result also true. Follow the same logic here. if (arg->ignoreNulls(streams))