Jeff Tao
Jeff Tao
**Bug Description** 执行查询SQL:select avg(f_value) from device_data where metric_key = 'Tmp' and ts >= '2022-08-09 00:00:00' and ts < '2022-08-10 00:00:00',查看taosdlog报错日志 08/29 15:54:00.015086 00009027 QRY ERROR failed to get tableIds from...
- [x] You have read the [Spring Data contribution guidelines](https://github.com/spring-projects/spring-data-build/blob/master/CONTRIBUTING.adoc). - [x] You use the code formatters provided [here](https://github.com/spring-projects/spring-data-build/tree/master/etc/ide) and have them applied to your changes. Don’t submit any formatting...
```java public class StringToPropertiesConverter implements Converter { @Override public Properties convert(String source) { Properties info = new Properties(); try (StringReader stringReader = new StringReader(source)) { info.load(stringReader); } catch (Exception ex)...