[
https://issues.apache.org/jira/browse/PHOENIX-5897?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=17142881#comment-17142881
]
Hudson commented on PHOENIX-5897:
---------------------------------
ABORTED: Integrated in Jenkins build PreCommit-PHOENIX-Build #3984 (See
[https://builds.apache.org/job/PreCommit-PHOENIX-Build/3984/])
PHOENIX-5897 SingleKeyValueTuple.toString() returns unexpected result.
(chenglei: rev 4d6a67d5ef30bf73a5ac4feddf09969c884e226a)
* (edit)
phoenix-core/src/main/java/org/apache/phoenix/schema/tuple/SingleKeyValueTuple.java
* (add)
phoenix-core/src/test/java/org/apache/phoenix/schema/tuple/SingleKeyValueTupleTest.java
> SingleKeyValueTuple.toString() returns unexpected result
> --------------------------------------------------------
>
> Key: PHOENIX-5897
> URL: https://issues.apache.org/jira/browse/PHOENIX-5897
> Project: Phoenix
> Issue Type: Improvement
> Affects Versions: 5.0.0-alpha
> Reporter: Chen Feng
> Assignee: Chen Feng
> Priority: Minor
> Fix For: 5.1.0, 4.16.0
>
> Attachments: PHOENIX-5897-v1.patch, PHOENIX-5897_v1-4.x.patch
>
>
> In SingleKeyValueTuple.toString(), the code is shown as follows.
> return "SingleKeyValueTuple[" + cell == null ? keyPtr.get() ==
> UNITIALIZED_KEY_BUFFER ? "null" :
> Bytes.toStringBinary(keyPtr.get(),keyPtr.getOffset(),keyPtr.getLength()) :
> cell.toString() + "]";
> actually, the code runs in the following order.
> ("SingleKeyValueTuple[" + cell) == null ? keyPtr.get() ==
> UNITIALIZED_KEY_BUFFER ? "null" : Bytes.toStringBinary() : (cell.toString() +
> "]");
> Therefore the result is weird.
> BTW, value = condition1 ? condition2 ? X : Y : Z is also confusing, using if
> can be more clear.
--
This message was sent by Atlassian Jira
(v8.3.4#803005)