liuxiaocs7 commented on code in PR #7530:
URL: https://github.com/apache/hbase/pull/7530#discussion_r2617252078
##########
hbase-examples/src/main/java/org/apache/hadoop/hbase/thrift2/DemoClient.java:
##########
@@ -143,7 +144,7 @@ public void run() throws Exception {
System.out.print("row = " + ClientUtils.utf8(result.getRow()));
for (TColumnValue resultColumnValue : result.getColumnValues()) {
System.out.print("family = " +
ClientUtils.utf8(resultColumnValue.getFamily()));
- System.out.print("qualifier = " +
ClientUtils.utf8(resultColumnValue.getFamily()));
+ System.out.print("qualifier = " +
ClientUtils.utf8(resultColumnValue.getQualifier()));
Review Comment:
Hi, @guluo2016, thanks for your comments, I understand what you mean now.
It's similar to the following output.
```
row1 = row1
family1 = family1
qualifier1 = qualifier1
value1 = value1
timestamp = 1765724068283
```
I think that `family =` here is merely used to indicate the type of field
for ColumnValue, with the specific value determined by `family1`, this seems
enough, what do you think?
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]