Alexey Diomin created HBASE-15916:
-------------------------------------
Summary: incorrect work formating for shell scan
Key: HBASE-15916
URL: https://issues.apache.org/jira/browse/HBASE-15916
Project: HBase
Issue Type: Bug
Affects Versions: master
Reporter: Alexey Diomin
Priority: Minor
this commit change behavior of 'scan' command
https://github.com/apache/hbase/commit/e1e8434340f02907976f20566c3e55d8d627d4c4
old behavior:
1) call table._scan_internal with args
2) table._scan_internal
a) call @converters.clear()
b) create scan and fill @converters
c) return result
3) scan print result with formatters
new behavior issue:
1) scan command prepare Scan and fill @converters
2) table._scan_internal
a) call @converters.clear()
b) if we have scan != nil use his
c) return result
3) scan print result WITHOUT formatters
p.s. this example dosn't work
http://blog.cloudera.com/blog/2016/01/how-to-create-and-use-a-custom-formatter-in-the-apache-hbase-shell/
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)