|
View:
New views
20 Messages
—
Rating Filter:
Alert me
|
| < Prev | 1 - 2 - 3 | Next > |
|
|
[jira] Created: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[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 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] Work started: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Work on HADOOP-2339 started by Edward Yoon. > [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 > > > 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] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon updated HADOOP-2339: -------------------------------- Status: Patch Available (was: In Progress) submitting. I'd like to commit to 0.16 TRUNK. > [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] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon updated HADOOP-2339: -------------------------------- Attachment: 2339.patch {code} hql > select * from udanax; +-------------------------+-------------------------+-------------------------+ | Row | Column | Cell | +-------------------------+-------------------------+-------------------------+ | row1 | a: | aa | +-------------------------+-------------------------+-------------------------+ | row1 | b: | aa | +-------------------------+-------------------------+-------------------------+ | row2 | b: | aa | +-------------------------+-------------------------+-------------------------+ 3 row(s) in set. (0.06 sec) hql > delete b: from udanax; 07/12/04 09:30:15 INFO hbase.HBaseAdmin: Disabled table udanax 07/12/04 09:30:15 INFO hbase.HBaseAdmin: Enabled table udanax Column(s) deleted successfully. (10.16 sec) hql > select * from udanax; +-------------------------+-------------------------+-------------------------+ | Row | Column | Cell | +-------------------------+-------------------------+-------------------------+ | row1 | a: | aa | +-------------------------+-------------------------+-------------------------+ 1 row(s) in set. (0.05 sec) hql > {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. |
|
|
[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ 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[ 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] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] stack updated HADOOP-2339: -------------------------- Resolution: Fixed Status: Resolved (was: Patch Available) Committed. Resolving. Thanks Edward. > [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[ 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] Reopened: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon reopened HADOOP-2339: --------------------------------- Ah... Sorry for my carelessness. I'll attach the patch for describe below. {code} DELETE column_name:qualifier_name FROM table_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. |
|
|
[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ 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. |
|
|
[jira] Issue Comment Edited: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548133 ] udanax edited comment on HADOOP-2339 at 12/3/07 9:25 PM: -------------------------------------------------------------- ugh... It seems troublesome... *hql > DELETE columnA: FROM table;* In this case, only "columnA:" should be deleted. {code} Row1 columnA: ----> to be deleted columnA:a columnA:b Row2 columnA: ----> to be deleted columnA:b columnA:c {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} was (Author: udanax): 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. |
|
|
[jira] Commented: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12548135 ] Edward Yoon commented on HADOOP-2339: ------------------------------------- {code} DROP COLUMNFAMILY columnfamily_name1[, columnfamily_name2, ...] FROM table_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. |
|
|
[jira] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon updated HADOOP-2339: -------------------------------- Attachment: 2339_v02.patch Ok. Drop has a different mean. So,... column_name1[, column_name2, ...] or COLUMNFAMILIES(column1[, column2]) ex. DELETE column:, column:a, column:b FROM table; // delete the specified columns DELETE COLUMNFAMILIES(column1, column2) FROM table; // delete the columnfamilies DELETE * FROM table; {code} hql > select * from udanax; +-------------------------+-------------------------+-------------------------+ | Row | Column | Cell | +-------------------------+-------------------------+-------------------------+ | a | b: | bb3 | +-------------------------+-------------------------+-------------------------+ | a | c: | cc | +-------------------------+-------------------------+-------------------------+ | b | b: | bb2 | +-------------------------+-------------------------+-------------------------+ | b | c: | cc2 | +-------------------------+-------------------------+-------------------------+ | c | b:aa | aa | +-------------------------+-------------------------+-------------------------+ | c | c: | bb | +-------------------------+-------------------------+-------------------------+ 6 row(s) in set. (0.06 sec) hql > delete 'b:aa' from udanax; 1 Column(s) deleted successfully. (0.03 sec) hql > select * from udanax; +-------------------------+-------------------------+-------------------------+ | Row | Column | Cell | +-------------------------+-------------------------+-------------------------+ | a | b: | bb3 | +-------------------------+-------------------------+-------------------------+ | a | c: | cc | +-------------------------+-------------------------+-------------------------+ | b | b: | bb2 | +-------------------------+-------------------------+-------------------------+ | b | c: | cc2 | +-------------------------+-------------------------+-------------------------+ | c | c: | bb | +-------------------------+-------------------------+-------------------------+ 5 row(s) in set. (0.06 sec) hql > delete columnfamilies(c) from udanax; delete columnfamilies(c) from udanax; Dropping c:... Please wait. 07/12/04 16:36:38 INFO hbase.HBaseAdmin: Disabled table udanax 07/12/04 16:36:38 INFO hbase.HBaseAdmin: Enabled table udanax 1 columnfamily(s) deleted successfully. (10.12 sec) hql > select * from udanax; select * from udanax; +-------------------------+-------------------------+-------------------------+ | Row | Column | Cell | +-------------------------+-------------------------+-------------------------+ | a | b: | bb3 | +-------------------------+-------------------------+-------------------------+ | b | b: | bb2 | +-------------------------+-------------------------+-------------------------+ 2 row(s) in set. (0.07 sec) hql > {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, 2339_v02.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] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon updated HADOOP-2339: -------------------------------- Attachment: 2339_v03.patch Sorry, wrong spell was fixed. (dropped -> deleted) > [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] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon updated HADOOP-2339: -------------------------------- Status: Patch Available (was: Reopened) Ok, submitting. > [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[ 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] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon updated HADOOP-2339: -------------------------------- Attachment: 2339_v04.patch Local test passed. So, re-submitting. {code} test: [echo] contrib: hbase [delete] Deleting directory /root/workspace/hadoop/build/contrib/hbase/test/logs [mkdir] Created dir: /root/workspace/hadoop/build/contrib/hbase/test/logs [junit] Running org.apache.hadoop.hbase.shell.TestHBaseShell [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 52.787 sec [junit] Running org.apache.hadoop.hbase.shell.TestSubstitutionVariables [junit] Tests run: 2, Failures: 0, Errors: 0, Time elapsed: 0.019 sec [junit] Running org.apache.hadoop.hbase.shell.algebra.TestBooleanCondition [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.044 sec [junit] Running org.apache.hadoop.hbase.shell.algebra.TestBooleanTermFilter [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 23.241 sec [junit] Running org.apache.hadoop.hbase.shell.algebra.TestJoinCondition [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.158 sec [junit] Running org.apache.hadoop.hbase.shell.algebra.TestTableJoinMapReduce [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 87.233 sec [junit] Running org.apache.hadoop.hbase.util.TestBase64 [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.136 sec [junit] Running org.apache.hadoop.hbase.util.TestKeying [junit] Tests run: 1, Failures: 0, Errors: 0, Time elapsed: 0.011 sec [junit] Running org.onelab.test.TestFilter [junit] Tests run: 3, Failures: 0, Errors: 0, Time elapsed: 0.025 sec BUILD SUCCESSFUL Total time: 2 minutes 54 seconds bash-3.00# {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, 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] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon updated HADOOP-2339: -------------------------------- Status: Open (was: Patch Available) > [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] Updated: (HADOOP-2339) [Hbase Shell] Delete command with no WHERE clause[ https://issues.apache.org/jira/browse/HADOOP-2339?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Edward Yoon updated HADOOP-2339: -------------------------------- Status: Patch Available (was: Open) Re-try > [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[ 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. |
| < Prev | 1 - 2 - 3 | Next > |
| Free embeddable forum powered by Nabble | Forum Help |