Merge pull request #29453 from taosdata/test/main/3.3.5.0
Test/main/3.3.5.0
This commit is contained in:
commit
37c0b1ebbc
|
@ -75,7 +75,7 @@ slug: /release-history/release-notes/3.3.5.0
|
||||||
28. fix: after the tags of the table are updated, the stream computing fails to recognize and apply the ne values.
|
28. fix: after the tags of the table are updated, the stream computing fails to recognize and apply the ne values.
|
||||||
29. fix: fix kafka timeout issue and improve performance and stability
|
29. fix: fix kafka timeout issue and improve performance and stability
|
||||||
30. fix: in sql queries, when both 'is null' and invalid 'in' filter conditions are included simultaneously, the query results are incorrect. https://github.com/taosdata/TDengine/issues/29067
|
30. fix: in sql queries, when both 'is null' and invalid 'in' filter conditions are included simultaneously, the query results are incorrect. https://github.com/taosdata/TDengine/issues/29067
|
||||||
31. fix: sql queries containing both 'IN' and 'BETWEEN' filter conditions result in incorrect query results. https://github.com/taosdata/TDengine/issues/#28989
|
31. fix: sql queries containing both 'IN' and 'BETWEEN' filter conditions result in incorrect query results. https://github.com/taosdata/TDengine/issues/28989
|
||||||
32. fix: when performing multiplication or division operations between timestamp and numeric types, the results are incorrect. https://github.com/taosdata/TDengine/issues/28339
|
32. fix: when performing multiplication or division operations between timestamp and numeric types, the results are incorrect. https://github.com/taosdata/TDengine/issues/28339
|
||||||
33. fix: data type conversion error in the IN statement leads to incorrect query results. https://github.com/taosdata/TDengine/issues/29047 https://github.com/taosdata/TDengine/issues/28902
|
33. fix: data type conversion error in the IN statement leads to incorrect query results. https://github.com/taosdata/TDengine/issues/29047 https://github.com/taosdata/TDengine/issues/28902
|
||||||
34. fix: the error in filtering results when constant conditions are combined with OR operators. https://github.com/taosdata/TDengine/issues/28904
|
34. fix: the error in filtering results when constant conditions are combined with OR operators. https://github.com/taosdata/TDengine/issues/28904
|
||||||
|
|
|
@ -9,7 +9,7 @@ description: 3.3.5.0 版本说明
|
||||||
2. 特性:taosX 增量备份与恢复
|
2. 特性:taosX 增量备份与恢复
|
||||||
3. 特性:JDBC WebSocket 连接支持 STMT2 接口
|
3. 特性:JDBC WebSocket 连接支持 STMT2 接口
|
||||||
4. 特性:Rust 连接器支持 STMT2 接口
|
4. 特性:Rust 连接器支持 STMT2 接口
|
||||||
5. 特性: taos-CLI 中在错误提示中增加错误码
|
5. 特性:taos-CLI 中在错误提示中增加错误码
|
||||||
6. 特性:Python 连接器对接 SuperSet
|
6. 特性:Python 连接器对接 SuperSet
|
||||||
7. 特性:Explorer 可配置 Grafana Dashboard
|
7. 特性:Explorer 可配置 Grafana Dashboard
|
||||||
8. 特性:taosX-agent 支持配置内存缓存队列长度
|
8. 特性:taosX-agent 支持配置内存缓存队列长度
|
||||||
|
@ -52,7 +52,7 @@ description: 3.3.5.0 版本说明
|
||||||
6. 修复:窗口内数据更新导致流计算停止的问题
|
6. 修复:窗口内数据更新导致流计算停止的问题
|
||||||
7. 修复:libtaosws.so 读取数据时如果连接中端,错误码设置有误
|
7. 修复:libtaosws.so 读取数据时如果连接中端,错误码设置有误
|
||||||
8. 修复:OPC 数据点位以 @ 开头时解析错误
|
8. 修复:OPC 数据点位以 @ 开头时解析错误
|
||||||
9. 修复:taosbechmark 解决云服务下show vgroups 权限问题
|
9. 修复:taosBenchmark 解决云服务下show vgroups 权限问题
|
||||||
10. 修复:taosX 迁移支持列压缩的超宽超级表时报语法错误
|
10. 修复:taosX 迁移支持列压缩的超宽超级表时报语法错误
|
||||||
11. 修复:Vnode 占用内存估算错误的问题
|
11. 修复:Vnode 占用内存估算错误的问题
|
||||||
12. 修复:对 varchar 类型的常量字符串进行 union all 查询时失败的问题
|
12. 修复:对 varchar 类型的常量字符串进行 union all 查询时失败的问题
|
||||||
|
@ -74,7 +74,7 @@ description: 3.3.5.0 版本说明
|
||||||
28. 修复:在源表的标签更新后,流计算未能识别并应用新的标签值
|
28. 修复:在源表的标签更新后,流计算未能识别并应用新的标签值
|
||||||
29. 修复:调整 Kafka 订阅参数提升 Kakfa 数据写入性能和稳定性
|
29. 修复:调整 Kafka 订阅参数提升 Kakfa 数据写入性能和稳定性
|
||||||
30. 修复:SQL 查询中同时包含 is null 和无效的 in 筛选条件时,查询结果有误 https://github.com/taosdata/TDengine/issues/29067
|
30. 修复:SQL 查询中同时包含 is null 和无效的 in 筛选条件时,查询结果有误 https://github.com/taosdata/TDengine/issues/29067
|
||||||
31. 修复:SQL 查询中同时包含 in 和 between 筛选条件时,查询结果有误 https://github.com/taosdata/TDengine/issues/#28989
|
31. 修复:SQL 查询中同时包含 in 和 between 筛选条件时,查询结果有误 https://github.com/taosdata/TDengine/issues/28989
|
||||||
32. 修复:timestamp 类型和数值类型进行乘除运算时结果有误 https://github.com/taosdata/TDengine/issues/28339
|
32. 修复:timestamp 类型和数值类型进行乘除运算时结果有误 https://github.com/taosdata/TDengine/issues/28339
|
||||||
33. 修复:IN 条件中的数据类型转换错误导致查询结果不正确 https://github.com/taosdata/TDengine/issues/29047 https://github.com/taosdata/TDengine/issues/28902
|
33. 修复:IN 条件中的数据类型转换错误导致查询结果不正确 https://github.com/taosdata/TDengine/issues/29047 https://github.com/taosdata/TDengine/issues/28902
|
||||||
34. 修复:常量条件和 OR 运算符结合时筛选结果错误 https://github.com/taosdata/TDengine/issues/28904
|
34. 修复:常量条件和 OR 运算符结合时筛选结果错误 https://github.com/taosdata/TDengine/issues/28904
|
||||||
|
|
Loading…
Reference in New Issue