[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-10 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Attachment: hbase-9477.v2.patch

v2 fixes a cherrypick conflict

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.98.0, 0.96.0

 Attachments: hbase-9477.patch, hbase-9477.v2.patch


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-10 Thread stack (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-9477:
-

Attachment: KVI.java

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.98.0, 0.96.0

 Attachments: hbase-9477.patch, hbase-9477.v2.patch, KVI.java


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-10 Thread stack (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

stack updated HBASE-9477:
-

Attachment: hbase-9477.v2

Reattach Jon's last patch (it is missing the .patch extension) so that hadoopqa 
finds this rather than the KVI.java I attached.

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.98.0, 0.96.0

 Attachments: hbase-9477.patch, hbase-9477.v2, hbase-9477.v2.patch, 
 KVI.java


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-10 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Attachment: hbase-9477.v3.patch

here's a v3 -- removed pom.xml.hadoop2 and fixed javadoc warnings.

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.98.0, 0.96.0

 Attachments: hbase-9477.patch, hbase-9477.v2, hbase-9477.v2.patch, 
 hbase-9477.v3.patch, KVI.java


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-10 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

  Resolution: Fixed
Release Note: The Result#raw() and Result#list APIs have been deprecated.  
Users and applications should use Result#rawCells() and Result#listCells() 
instead.
Hadoop Flags: Reviewed
  Status: Resolved  (was: Patch Available)

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.98.0, 0.96.0

 Attachments: hbase-9477.patch, hbase-9477.v2, hbase-9477.v2.patch, 
 hbase-9477.v3.patch, KVI.java


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-10 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Attachment: hbase-9477.v3.96.patch

Attaching version committed to 96

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.98.0, 0.96.0

 Attachments: hbase-9477.patch, hbase-9477.v2, hbase-9477.v2.patch, 
 hbase-9477.v3.96.patch, hbase-9477.v3.patch, KVI.java


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-09 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

  Description: Discussion in HBASE-9359 brought that application 
commonly use the Keyvalue[] Result#raw (and similarly Result#list).  Let's 
rename the 0.96 version to #listCells , #listRaw and revert #raw and #list to 
their old signature to easyeupgrade deprecation isseus. 
 Priority: Blocker  (was: Major)
Affects Version/s: 0.95.2
Fix Version/s: 0.96.0
 Assignee: Jonathan Hsieh

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.96.0


 Discussion in HBASE-9359 brought that application commonly use the Keyvalue[] 
 Result#raw (and similarly Result#list).  Let's rename the 0.96 version to 
 #listCells , #listRaw and revert #raw and #list to their old signature to 
 easyeupgrade deprecation isseus. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-09 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Description: Discussion in HBASE-9359 brought that application commonly use 
the Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
version to something like #listCells and #rawCells and revert #raw and #list to 
their old signature to easy upgrade deprecation issues.   (was: Discussion in 
HBASE-9359 brought that application commonly use the Keyvalue[] Result#raw (and 
similarly Result#list).  Let's rename the 0.96 version to something like 
#listCells and #rawCells and revert #raw and #list to their old signature to 
easy upgrade deprecation isseus. )

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.96.0


 Discussion in HBASE-9359 brought that application commonly use the Keyvalue[] 
 Result#raw (and similarly Result#list).  Let's rename the 0.96 version to 
 something like #listCells and #rawCells and revert #raw and #list to their 
 old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-09 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Description: Discussion in HBASE-9359 brought that application commonly use 
the Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
version to something like #listCells and #rawCells and revert #raw and #list to 
their old signature to easyeupgrade deprecation isseus.   (was: Discussion in 
HBASE-9359 brought that application commonly use the Keyvalue[] Result#raw (and 
similarly Result#list).  Let's rename the 0.96 version to #listCells , #listRaw 
and revert #raw and #list to their old signature to easyeupgrade deprecation 
isseus. )

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.96.0


 Discussion in HBASE-9359 brought that application commonly use the Keyvalue[] 
 Result#raw (and similarly Result#list).  Let's rename the 0.96 version to 
 something like #listCells and #rawCells and revert #raw and #list to their 
 old signature to easyeupgrade deprecation isseus. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-09 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Description: Discussion in HBASE-9359 brought that application commonly use 
the Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
version to something like #listCells and #rawCells and revert #raw and #list to 
their old signature to easy upgrade deprecation isseus.   (was: Discussion in 
HBASE-9359 brought that application commonly use the Keyvalue[] Result#raw (and 
similarly Result#list).  Let's rename the 0.96 version to something like 
#listCells and #rawCells and revert #raw and #list to their old signature to 
easyeupgrade deprecation isseus. )

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.96.0


 Discussion in HBASE-9359 brought that application commonly use the Keyvalue[] 
 Result#raw (and similarly Result#list).  Let's rename the 0.96 version to 
 something like #listCells and #rawCells and revert #raw and #list to their 
 old signature to easy upgrade deprecation isseus. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-09 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Description: Discussion in HBASE-9359 brought up that applications commonly 
use the Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 
0.96 version to something like #listCells and #rawCells and revert #raw and 
#list to their old signature to easy upgrade deprecation issues.   (was: 
Discussion in HBASE-9359 brought that application commonly use the Keyvalue[] 
Result#raw (and similarly Result#list).  Let's rename the 0.96 version to 
something like #listCells and #rawCells and revert #raw and #list to their old 
signature to easy upgrade deprecation issues. )

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.96.0


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-09 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Attachment: hbase-9477.patch

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.96.0

 Attachments: hbase-9477.patch


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-09 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Status: Patch Available  (was: Open)

This would only be applied to 0.96 (not 0.98)

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.96.0

 Attachments: hbase-9477.patch


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira


[jira] [Updated] (HBASE-9477) Add deprecation compat shim for Result#raw and Result#list for 0.96

2013-09-09 Thread Jonathan Hsieh (JIRA)

 [ 
https://issues.apache.org/jira/browse/HBASE-9477?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Jonathan Hsieh updated HBASE-9477:
--

Fix Version/s: 0.98.0

 Add deprecation compat shim for Result#raw and Result#list for 0.96
 ---

 Key: HBASE-9477
 URL: https://issues.apache.org/jira/browse/HBASE-9477
 Project: HBase
  Issue Type: Sub-task
Affects Versions: 0.95.2
Reporter: Jonathan Hsieh
Assignee: Jonathan Hsieh
Priority: Blocker
 Fix For: 0.98.0, 0.96.0

 Attachments: hbase-9477.patch


 Discussion in HBASE-9359 brought up that applications commonly use the 
 Keyvalue[] Result#raw (and similarly Result#list).  Let's rename the 0.96 
 version to something like #listCells and #rawCells and revert #raw and #list 
 to their old signature to easy upgrade deprecation issues. 

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira