You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Changelog
2
2
3
+
## [0.48.8-public] - 2024-08-12
4
+
5
+
### Enhancement
6
+
- Introduced internal validation of compound predicate expressions, fixed logic when handling
7
+
invalid or always true/false predicates, enhanced test coverage, and ensured stability and
8
+
accuracy in complex query optimization.
9
+
3
10
## [0.48.7-public] - 2024-08-07
4
11
### Enhancements
5
12
-**TableTunnel Configuration Optimization**: Introduced the `tags` attribute to `TableTunnel Configuration`, enabling users to attach custom tags to tunnel operations for enhanced logging and management. These tags are recorded in the tenant-level `information schema`.
Copy file name to clipboardExpand all lines: odps-sdk/odps-sdk-table-api/src/main/java/com/aliyun/odps/table/optimizer/predicate/CompoundPredicate.java
+17-7Lines changed: 17 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,6 @@
5
5
importjava.util.List;
6
6
importjava.util.stream.Collectors;
7
7
8
-
importcom.aliyun.odps.utils.StringUtils;
9
8
importcom.google.common.collect.ImmutableList;
10
9
11
10
/**
@@ -41,8 +40,7 @@ public CompoundPredicate(Operator logicalOperator) {
0 commit comments