iotdb
iotdb copied to clipboard
Apache IoTDB
## Description fix ISSUE-7014 ### Content1 ... Replace the usage of the "instanceof" operator by a catch block ### Content2 ... ### Content3 ... This PR has: - [ ]...
Code Path:confignode/src/main/java/org/apache/iotdb/confignode/manager/load/LoadManagerMetrics.java Duplicated string literals make the process of refactoring error-prone, since you must be sure to update all occurrences. On the other hand, constants can be referenced from many...
Code Path:server/src/main/java/org/apache/iotdb/db/mpp/plan/analyze/AnalyzeVisitor.java Multiple catch blocks of the appropriate type should be used instead of catching a general exception, and then testing on the type.
This tool receives a sql instruction such as "select ** from root.sg.d1" and a file path "out.tsfile", then generates a TsFile outside.
**Describe the bug** Like [IOTDB-2732](https://issues.apache.org/jira/browse/IOTDB-2732), I try to insert a infinity value into a float timeseries, not inserting directly but using `select into` and `fill` clause to insert a constant....
See JIRA: https://issues.apache.org/jira/browse/IOTDB-4187
## Description fix [IOTDB-jira 7016] [https://github.com/apache/iotdb/issues/7016] ### Content1 ... Replace this "switch" statement by "if" statements when there's just one or two cases ### Content2 ... ### Content3 ... This...
Code Path:server/src/main/java/org/apache/iotdb/db/mpp/plan/analyze/ExpressionUtils.java switch statements are useful when there are many different cases depending on the value of the same expression. For just one or two cases however, the code will...
Bumps `dropwizard.metrics.version` from 4.2.7 to 4.2.11. Updates `metrics-core` from 4.2.7 to 4.2.11 Release notes Sourced from metrics-core's releases. v4.2.11 What's Changed Update dependency org.eclipse.jetty:jetty-bom to v10.0.10 (release/4.2.x) by @renovate in...