[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-20 Thread Edward Yoon (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12553688
 ] 

Edward Yoon commented on HADOOP-2339:
-

Anyhow, Should it be closed?

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
Priority: Minor
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-18 Thread Edward Yoon (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12552797
 ] 

Edward Yoon commented on HADOOP-2339:
-

Bryan, I removed your comments because there is no messages.
If you have a constructive comment, please share it.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
Priority: Minor
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-17 Thread Edward Yoon (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12552598
 ] 

Edward Yoon commented on HADOOP-2339:
-

Let's assume the webtable (bigtable paper)
{code}
urlrow  content   anchor  
language   metatag   ...
http://abcd.com   ...   anchor:http://xyz.comxyz dot com...   
 ...
anchor:http://udanax.org udanax homepage
{code}

At this time, 'udanax.org' was evaporation from the world-wide-web.
Then we need to delete the 'anchor:http://udanax.org' of all rows.

I think this method is formal, useful, basical method.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-14 Thread Bryan Duxbury (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12551879
 ] 

Bryan Duxbury commented on HADOOP-2339:
---

Edward - Can you clarify your comment above? Maybe it's just a language thing, 
but I really don't understand your argument for the functionality.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-11 Thread Bryan Duxbury (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12550676
 ] 

Bryan Duxbury commented on HADOOP-2339:
---

Let's specify very clearly what this issue regards. 

As I understand it, the goal is to be able to delete a specific column family 
and qualifier on every row in the entire table. It's important to note that the 
qualifier is needed, because you can already do this essentially with ALTER 
TABLE if you want to delete an entire column family. Is this correct?

If so, I'm not sure that we should offer this functionality. It will be slow, 
especially if it's run as a single delete at a time in serial from the shell. I 
would think that from the shell, you have the ability to empty an entire table 
with TRUNCATE, or delete an entire column family with ALTER TABLE ... DROP 
columnfamily, and that's probably enough. If you actually do need to delete 
just a given qualified column name on every row in your table, you should write 
a mapreduce job or some other highly parallel way to do that. This is in 
keeping with the goal of making the shell both efficient and lean when it comes 
to the functionality it supports.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-11 Thread Edward Yoon (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12550736
 ] 

Edward Yoon commented on HADOOP-2339:
-

'columnfamily', 'columnfamily:specified_qualifer' delete function is important 
thing.
I'm not bothering to make a example.

Also, I thought it should be work as inter-row wise partitioned sub structre 
parallelism.
But, now shell is 0.0.1 version.

Imagine the processing-speed:increment by row-count:increment 2d plots of 
scanner and mapreduce, 
start points of processing-speed dimension and slopes will be different.
So, I thought the cross point find algorithm for the most faster automatical 
processing.

'Slow Performance' can't touch the grammar rules.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-11 Thread Bryan Duxbury (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12550773
 ] 

Bryan Duxbury commented on HADOOP-2339:
---

@Edward: I have no idea what you are talking about.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-10 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12550322
 ] 

Hadoop QA commented on HADOOP-2339:
---

+1 overall.  Here are the results of testing the latest attachment 
http://issues.apache.org/jira/secure/attachment/12370926/2339_v04.patch
against trunk revision r603084.

@author +1.  The patch does not contain any @author tags.

javadoc +1.  The javadoc tool did not generate any warning messages.

javac +1.  The applied patch does not generate any new compiler warnings.

findbugs +1.  The patch does not introduce any new Findbugs warnings.

core tests +1.  The patch passed core unit tests.

contrib tests +1.  The patch passed contrib unit tests.

Test results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1314/testReport/
Findbugs warnings: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1314/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1314/artifact/trunk/build/test/checkstyle-errors.html
Console output: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1314/console

This message is automatically generated.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
Priority: Minor
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-05 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548640
 ] 

Hadoop QA commented on HADOOP-2339:
---

-1 overall.  Here are the results of testing the latest attachment 
http://issues.apache.org/jira/secure/attachment/12370926/2339_v04.patch
against trunk revision r601232.

@author +1.  The patch does not contain any @author tags.

javadoc +1.  The javadoc tool did not generate any warning messages.

javac +1.  The applied patch does not generate any new compiler warnings.

findbugs +1.  The patch does not introduce any new Findbugs warnings.

core tests +1.  The patch passed core unit tests.

contrib tests -1.  The patch failed contrib unit tests.

Test results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1270/testReport/
Findbugs warnings: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1270/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1270/artifact/trunk/build/test/checkstyle-errors.html
Console output: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1270/console

This message is automatically generated.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-05 Thread Bryan Duxbury (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548871
 ] 

Bryan Duxbury commented on HADOOP-2339:
---

To clarify this issue, are we talking about what is essentially an ALTER TABLE 
DROP COLUMN in SQL? If so, the description should be changed to reflect that.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-04 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548177
 ] 

Hadoop QA commented on HADOOP-2339:
---

-1 overall.  Here are the results of testing the latest attachment 
http://issues.apache.org/jira/secure/attachment/12370921/2339_v03.patch
against trunk revision r600771.

@author +1.  The patch does not contain any @author tags.

javadoc +1.  The javadoc tool did not generate any warning messages.

javac +1.  The applied patch does not generate any new compiler warnings.

findbugs +1.  The patch does not introduce any new Findbugs warnings.

core tests +1.  The patch passed core unit tests.

contrib tests -1.  The patch failed contrib unit tests.

Test results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1255/testReport/
Findbugs warnings: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1255/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1255/artifact/trunk/build/test/checkstyle-errors.html
Console output: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1255/console

This message is automatically generated.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-04 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548205
 ] 

Hadoop QA commented on HADOOP-2339:
---

-1 overall.  Here are the results of testing the latest attachment 
http://issues.apache.org/jira/secure/attachment/12370926/2339_v04.patch
against trunk revision r600771.

@author +1.  The patch does not contain any @author tags.

javadoc +1.  The javadoc tool did not generate any warning messages.

javac +1.  The applied patch does not generate any new compiler warnings.

findbugs +1.  The patch does not introduce any new Findbugs warnings.

core tests +1.  The patch passed core unit tests.

contrib tests -1.  The patch failed contrib unit tests.

Test results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1256/testReport/
Findbugs warnings: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1256/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1256/artifact/trunk/build/test/checkstyle-errors.html
Console output: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1256/console

This message is automatically generated.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-04 Thread Hudson (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548242
 ] 

Hudson commented on HADOOP-2339:


Integrated in Hadoop-Nightly #322 (See 
[http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Nightly/322/])

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-04 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548256
 ] 

Hadoop QA commented on HADOOP-2339:
---

-1 overall.  Here are the results of testing the latest attachment 
http://issues.apache.org/jira/secure/attachment/12370926/2339_v04.patch
against trunk revision r600771.

@author +1.  The patch does not contain any @author tags.

javadoc +1.  The javadoc tool did not generate any warning messages.

javac +1.  The applied patch does not generate any new compiler warnings.

findbugs +1.  The patch does not introduce any new Findbugs warnings.

core tests +1.  The patch passed core unit tests.

contrib tests -1.  The patch failed contrib unit tests.

Test results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1257/testReport/
Findbugs warnings: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1257/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1257/artifact/trunk/build/test/checkstyle-errors.html
Console output: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1257/console

This message is automatically generated.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch, 2339_v02.patch, 2339_v03.patch, 
 2339_v04.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-03 Thread Edward Yoon (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548073
 ] 

Edward Yoon commented on HADOOP-2339:
-

{code}
DELETE * FROM table_name;
{code}

NOTE: Now just using deleteColumn() method in a loop.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-03 Thread Hadoop QA (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548093
 ] 

Hadoop QA commented on HADOOP-2339:
---

+1 overall.  Here are the results of testing the latest attachment 
http://issues.apache.org/jira/secure/attachment/12370898/2339.patch
against trunk revision r600707.

@author +1.  The patch does not contain any @author tags.

javadoc +1.  The javadoc tool did not generate any warning messages.

javac +1.  The applied patch does not generate any new compiler warnings.

findbugs +1.  The patch does not introduce any new Findbugs warnings.

core tests +1.  The patch passed core unit tests.

contrib tests +1.  The patch passed contrib unit tests.

Test results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1250/testReport/
Findbugs warnings: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1250/artifact/trunk/build/test/findbugs/newPatchFindbugsWarnings.html
Checkstyle results: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1250/artifact/trunk/build/test/checkstyle-errors.html
Console output: 
http://lucene.zones.apache.org:8080/hudson/job/Hadoop-Patch/1250/console

This message is automatically generated.

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-03 Thread stack (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548102
 ] 

stack commented on HADOOP-2339:
---

One question: What happens if user specifies a column name that is not a column 
family?  I suppose in this case we should delete all cells for the specified 
column?  Also, I wonder if 'delete b: from udanax' shouldn't just delete column 
content rather than actual column itself: i.e. disable, remove, readd, 
re-enable?

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.



[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause

2007-12-03 Thread Edward Yoon (JIRA)

[ 
https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548133
 ] 

Edward Yoon commented on HADOOP-2339:
-

ugh...   It seems troublesome...

*hql  DELETE columnA: FROM table;*
In this case, only columnA: should be deleted.

{code}
columnA:  to be deleted
columnA:a
columnA:b
{code}


And then, how can i delete all columns in columnfamily?
I'd like to use the deleteColumn() method to drop the *ColumnFamily*

{code}
DROP TABLE table_name;
DROP COLUMNFAMILY columnfamily_name;
{code}

 [Hbase Shell] Delete command with no WHERE clause
 -

 Key: HADOOP-2339
 URL: https://issues.apache.org/jira/browse/HADOOP-2339
 Project: Hadoop
  Issue Type: Improvement
  Components: contrib/hbase
Affects Versions: 0.16.0
Reporter: Edward Yoon
Assignee: Edward Yoon
 Fix For: 0.16.0

 Attachments: 2339.patch


 using HbaseAdmin.deleteColumn() method.
 {code}
 DELETE column_name FROM table_name;
 {code}

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.