[
https://issues.apache.org/jira/browse/ACCUMULO-3386?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Christopher Tubbs updated ACCUMULO-3386:
----------------------------------------
Affects Version/s: 1.6.0
1.6.1
> Update release notes to explain how to correct data written with the buggy
> DateLexicoder
> ----------------------------------------------------------------------------------------
>
> Key: ACCUMULO-3386
> URL: https://issues.apache.org/jira/browse/ACCUMULO-3386
> Project: Accumulo
> Issue Type: Sub-task
> Affects Versions: 1.6.0, 1.6.1
> Reporter: Christopher Tubbs
> Assignee: Corey J. Nolet
> Priority: Blocker
>
> We should make sure users who may have used the buggy DateLexicoder are
> informed of a method which they can use to correct their data or to continue
> using the old behavior.
> To read data with the old, broken behavior (if needed):
> {code}
> Lexicoder lex = new ULongLexicoder();
> for (Entry<Key, Value> e : scanner) {
> Date d = new Date(lex.decode(TextUtil.getBytes(e.getKey().getRow())));
> // ...
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)