We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 257f820 commit 05c2d47Copy full SHA for 05c2d47
optimizer/src/main/java/cn/edu/tsinghua/iginx/physical/optimizer/naive/util/UDFDetector.java
@@ -35,7 +35,7 @@ public static boolean containNonSystemFunction(@Nullable FunctionCall functionCa
35
if (functionCall == null) {
36
return false;
37
}
38
- if (!containNonSystemFunction(functionCall.getFunction())) {
+ if (containNonSystemFunction(functionCall.getFunction())) {
39
return true;
40
41
FunctionParams params = functionCall.getParams();
0 commit comments