[ https://issues.apache.org/jira/browse/HIVE-6329?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13889457#comment-13889457 ]
Hive QA commented on HIVE-6329: ------------------------------- {color:red}Overall{color}: -1 at least one tests failed Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12626591/HIVE-6329.3.patch.txt {color:red}ERROR:{color} -1 due to 3 failed/errored test(s), 4998 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_auto_sortmerge_join_16 org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_infer_bucket_sort_bucketed_table org.apache.hadoop.hive.cli.TestMinimrCliDriver.testCliDriver_schemeAuthority2 {noformat} Test results: http://bigtop01.cloudera.org:8080/job/PreCommit-HIVE-Build/1163/testReport Console output: http://bigtop01.cloudera.org:8080/job/PreCommit-HIVE-Build/1163/console Messages: {noformat} Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase Tests exited with: TestsFailedException: 3 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12626591 > Support column level encryption/decryption > ------------------------------------------ > > Key: HIVE-6329 > URL: https://issues.apache.org/jira/browse/HIVE-6329 > Project: Hive > Issue Type: New Feature > Components: Security, Serializers/Deserializers > Reporter: Navis > Assignee: Navis > Priority: Minor > Attachments: HIVE-6329.1.patch.txt, HIVE-6329.2.patch.txt, > HIVE-6329.3.patch.txt > > > Receiving some requirements on encryption recently but hive is not supporting > it. Before the full implementation via HIVE-5207, this might be useful for > some cases. > {noformat} > hive> create table encode_test(id int, name STRING, phone STRING, address > STRING) > > ROW FORMAT SERDE 'org.apache.hadoop.hive.serde2.lazy.LazySimpleSerDe' > > WITH SERDEPROPERTIES ('column.encode.indices'='2,3', > 'column.encode.classname'='org.apache.hadoop.hive.serde2.Base64WriteOnly') > STORED AS TEXTFILE; > OK > Time taken: 0.584 seconds > hive> insert into table encode_test select > 100,'navis','010-0000-0000','Seoul, Seocho' from src tablesample (1 rows); > ...... > OK > Time taken: 5.121 seconds > hive> select * from encode_test; > OK > 100 navis MDEwLTAwMDAtMDAwMA== U2VvdWwsIFNlb2Nobw== > Time taken: 0.078 seconds, Fetched: 1 row(s) > hive> > {noformat} -- This message was sent by Atlassian JIRA (v6.1.5#6160)