This is an automated email from the ASF dual-hosted git repository.
asolimando pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/calcite.git
The following commit(s) were added to refs/heads/main by this push:
new 2d6e9a7dda [CALCITE-6471] Improve performance of SqlToRelConverter by
preventing unconditional conversion of sqlNodes to string for null-check
messages
2d6e9a7dda is described below
commit 2d6e9a7dda70313bbfcf0e39f4cffc1404f1f521
Author: korlov42 <[email protected]>
AuthorDate: Thu Jul 25 18:07:42 2024 +0300
[CALCITE-6471] Improve performance of SqlToRelConverter by preventing
unconditional conversion of sqlNodes to string for null-check messages
---
.../src/main/java/org/apache/calcite/sql2rel/SqlToRelConverter.java | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git
a/core/src/main/java/org/apache/calcite/sql2rel/SqlToRelConverter.java
b/core/src/main/java/org/apache/calcite/sql2rel/SqlToRelConverter.java
index 75f94d6684..54eb918445 100644
--- a/core/src/main/java/org/apache/calcite/sql2rel/SqlToRelConverter.java
+++ b/core/src/main/java/org/apache/calcite/sql2rel/SqlToRelConverter.java
@@ -1058,7 +1058,7 @@ public class SqlToRelConverter {
}
SqlNode elseOperand =
requireNonNull(caseNode.getElseOperand(),
- "getElseOperand for " + caseNode);
+ () -> "getElseOperand for " + caseNode);
if (!SqlUtil.isNull(elseOperand)) {
// "not(unknown)" is "unknown", so no need to simplify
final SqlCall not =
@@ -4065,7 +4065,7 @@ public class SqlToRelConverter {
namespace = targetNs.resolve();
}
RelOptTable table = SqlValidatorUtil.getRelOptTable(namespace,
catalogReader, null, null);
- return requireNonNull(table, "no table found for " + call);
+ return requireNonNull(table, () -> "no table found for " + call);
}
/**
@@ -5399,7 +5399,7 @@ public class SqlToRelConverter {
rexBuilder.makeCorrel(builder.uniquify().build(), correlId);
final ImmutableMap<String, Integer> fieldMap = fields.build();
return Pair.of(c, (e, fieldName) -> {
- final int j = requireNonNull(fieldMap.get(fieldName), "field " +
fieldName);
+ final int j = requireNonNull(fieldMap.get(fieldName), () -> "field
" + fieldName);
return rexBuilder.makeFieldAccess(e, j);
});
}