Opened 15 years ago
Closed 15 years ago
#664 closed defect (fixed)
FdoUnaryLogicalOperator::ToString generates an invalid filter
Reported by: | romicadascalescu | Owned by: | romicadascalescu |
---|---|---|---|
Priority: | major | Milestone: | 3.6.0 |
Component: | FDO API | Version: | 3.4.0 |
Severity: | 3 | Keywords: | |
Cc: | External ID: |
Description
FdoUnaryLogicalOperator ToString generates an invalid filter, it should add brackets around the condition E.g.: filter = NOT ( a AND b) filter.ToString() will result in NOT a AND b and it should be NOT (a AND b)
Note:
See TracTickets
for help on using tickets.
Fixed by adding extra brackets.