This is an automated email from the ASF dual-hosted git repository.
jackietien pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/iotdb.git
The following commit(s) were added to refs/heads/master by this push:
new 0cb2eb599c1 Using construction method of TimeSeriesOperand which has
type parameter
0cb2eb599c1 is described below
commit 0cb2eb599c16c662abad7d15fd216ed4612a7dde
Author: Beyyes <[email protected]>
AuthorDate: Tue Aug 13 15:52:41 2024 +0800
Using construction method of TimeSeriesOperand which has type parameter
---
.../org/apache/iotdb/db/queryengine/plan/analyze/ExpressionUtils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/analyze/ExpressionUtils.java
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/analyze/ExpressionUtils.java
index a9ad3fad40b..41175c08c9d 100644
---
a/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/analyze/ExpressionUtils.java
+++
b/iotdb-core/datanode/src/main/java/org/apache/iotdb/db/queryengine/plan/analyze/ExpressionUtils.java
@@ -80,7 +80,7 @@ public class ExpressionUtils {
public static Expression reconstructTimeSeriesOperand(
TimeSeriesOperand rawExpression, PartialPath actualPath) {
- Expression resultExpression = new TimeSeriesOperand(actualPath);
+ Expression resultExpression = new TimeSeriesOperand(actualPath,
rawExpression.getType());
return cloneCommonFields(rawExpression, resultExpression);
}