Bug 1254053
| Summary: | Incorrect results when querying a string type attribute when using the 'LTE' operator | ||
|---|---|---|---|
| Product: | [JBoss] JBoss Data Grid 6 | Reporter: | Van Halbert <vhalbert> |
| Component: | Infinispan | Assignee: | Tristan Tarrant <ttarrant> |
| Status: | CLOSED UPSTREAM | QA Contact: | Martin Gencur <mgencur> |
| Severity: | unspecified | Docs Contact: | |
| Priority: | unspecified | ||
| Version: | 6.4.1 | CC: | jdg-bugs, jolee, sanne, vjuranek |
| Target Milestone: | ER2 | ||
| Target Release: | 6.6.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2025-02-10 03:48:01 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
| Bug Depends On: | |||
| Bug Blocks: | 1242999, 1253660 | ||
|
Comment 2
Van Halbert
2015-08-17 14:57:05 UTC
Steven Hawkins <shawkins> updated the status of jira TEIID-3627 to Resolved This cannot work if the types of the two operands are mismatched. The correct behaviour would be to signal an error instead of failing silently. I think the argument=-22 in incorrectly displayed thru debug.
The query being processed is:
{code}
SELECT g_0.stringNum FROM SmallAs.smallARemotecache AS g_0 WHERE g_0.stringNum <= '-22'
{code}
The column stringNum is of type String and the string literal of '-22' is what is being set for value:
{code}
return queryBuilder.having(columnName).lte(value);
{code}
So I think the types being compared are similar types.
Steven Hawkins <shawkins> updated the status of jira TEIID-3627 to Closed Hi Van, So the two operands have the same type, string. In that case please note the comparison '-55' <= '-22' is false. This is probably not what you would expect. How does your data look like? Does it really match the comparison? Adrian Adrian Nistor <anistor> updated the status of jira ISPN-5923 to Coding In Progress Patch was merged. This product has been discontinued or is no longer tracked in Red Hat Bugzilla. |