[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-14 Thread Adam Szita (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16863884#comment-16863884
 ] 

Adam Szita commented on HIVE-21812:
---

+1, committed to master!

> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch, HIVE-21812.04.patch, HIVE-21812.05.patch, 
> HIVE-21812.06.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String dbName, String tblName, String 
> name);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> List getPartitionsByNames(String db_name, String tbl_name, 
> List part_names);
> List getPartitionsByNames(String catName, String db_name, String 
> tbl_name, List part_names);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> {code}
> In order to support partitions on temporary tables, the majority of these 
> methods must be implemented in SessionHiveMetastoreClient. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-13 Thread Marta Kuczora (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16862854#comment-16862854
 ] 

Marta Kuczora commented on HIVE-21812:
--

+1
Thanks a lot [~lpinter] for the patch!

> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch, HIVE-21812.04.patch, HIVE-21812.05.patch, 
> HIVE-21812.06.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String dbName, String tblName, String 
> name);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> List getPartitionsByNames(String db_name, String tbl_name, 
> List part_names);
> List getPartitionsByNames(String catName, String db_name, String 
> tbl_name, List part_names);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> {code}
> In order to support partitions on temporary tables, the majority of these 
> methods must be implemented in SessionHiveMetastoreClient. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-12 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16862656#comment-16862656
 ] 

Hive QA commented on HIVE-21812:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12971546/HIVE-21812.06.patch

{color:green}SUCCESS:{color} +1 due to 3 test(s) being added or modified.

{color:green}SUCCESS:{color} +1 due to 16140 tests passed

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/17544/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/17544/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-17544/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12971546 - PreCommit-HIVE-Build

> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch, HIVE-21812.04.patch, HIVE-21812.05.patch, 
> HIVE-21812.06.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String dbName, String tblName, String 
> name);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> List getPartitionsByNames(String db_name, String tbl_name, 
> List part_names);
> List getPartitionsByNames(String catName, String db_name, String 
> tbl_name, List part_names);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> {code}
> In order to support partitions on temporary tables, the majority of these 
> methods must be implemented in SessionHiveMetastoreClient. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-12 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16862625#comment-16862625
 ] 

Hive QA commented on HIVE-21812:


| (/) *{color:green}+1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} @author {color} | {color:green}  0m  
0s{color} | {color:green} The patch does not contain any @author tags. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  2m  
0s{color} | {color:blue} Maven dependency ordering for branch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  7m 
41s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
39s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
56s{color} | {color:green} master passed {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  1m 
11s{color} | {color:blue} standalone-metastore/metastore-server in master has 
184 extant Findbugs warnings. {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  4m  
1s{color} | {color:blue} ql in master has 2260 extant Findbugs warnings. 
{color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
16s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  0m 
26s{color} | {color:blue} Maven dependency ordering for patch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  1m 
57s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
32s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  1m 
32s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
18s{color} | {color:green} standalone-metastore/metastore-server: The patch 
generated 0 new + 6 unchanged - 1 fixed = 6 total (was 7) {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
43s{color} | {color:green} ql: The patch generated 0 new + 15 unchanged - 2 
fixed = 15 total (was 17) {color} |
| {color:green}+1{color} | {color:green} whitespace {color} | {color:green}  0m 
 0s{color} | {color:green} The patch has no whitespace issues. {color} |
| {color:green}+1{color} | {color:green} findbugs {color} | {color:green}  5m 
40s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
20s{color} | {color:green} the patch passed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:green}+1{color} | {color:green} asflicense {color} | {color:green}  0m 
14s{color} | {color:green} The patch does not generate ASF License warnings. 
{color} |
| {color:black}{color} | {color:black} {color} | {color:black} 31m 41s{color} | 
{color:black} {color} |
\\
\\
|| Subsystem || Report/Notes ||
| Optional Tests |  asflicense  javac  javadoc  findbugs  checkstyle  compile  |
| uname | Linux hiveptest-server-upstream 3.16.0-4-amd64 #1 SMP Debian 
3.16.43-2+deb8u5 (2017-09-19) x86_64 GNU/Linux |
| Build tool | maven |
| Personality | 
/data/hiveptest/working/yetus_PreCommit-HIVE-Build-17544/dev-support/hive-personality.sh
 |
| git revision | master / 80c55eb0 |
| Default Java | 1.8.0_111 |
| findbugs | v3.0.0 |
| modules | C: standalone-metastore/metastore-server ql U: . |
| Console output | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17544/yetus.txt |
| Powered by | Apache Yetushttp://yetus.apache.org |


This message was automatically generated.



> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch, HIVE-21812.04.patch, HIVE-21812.05.patch, 
> HIVE-21812.06.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String 

[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-11 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16861739#comment-16861739
 ] 

Hive QA commented on HIVE-21812:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12971476/HIVE-21812.05.patch

{color:green}SUCCESS:{color} +1 due to 3 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 15 failed/errored test(s), 16135 tests 
executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.metastore.TestObjectStore.catalogs (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testConcurrentDropPartitions 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDatabaseOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDeprecatedConfigIsOverwritten
 (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDirectSQLDropParitionsCleanup
 (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDirectSQLDropPartitionsCacheCrossSession
 (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDirectSqlErrorMetrics 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testEmptyTrustStoreProps 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testMasterKeyOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testMaxEventResponse 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testPartitionOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testQueryCloseOnError 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testRoleOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testTableOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testUseSSLProperty 
(batchId=232)
{noformat}

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/17529/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/17529/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-17529/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 15 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12971476 - PreCommit-HIVE-Build

> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch, HIVE-21812.04.patch, HIVE-21812.05.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String dbName, String tblName, String 
> name);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> List getPartitionsByNames(String db_name, String tbl_name, 
> List part_names);
> List getPartitionsByNames(String catName, String db_name, String 
> tbl_name, List part_names);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> {code}
> In order to support partitions on temporary tables, the majority of these 
> methods must be implemented in SessionHiveMetastoreClient. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-11 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16861688#comment-16861688
 ] 

Hive QA commented on HIVE-21812:


| (x) *{color:red}-1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} @author {color} | {color:green}  0m  
0s{color} | {color:green} The patch does not contain any @author tags. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  2m 
12s{color} | {color:blue} Maven dependency ordering for branch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  7m 
28s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
42s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
59s{color} | {color:green} master passed {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  1m 
13s{color} | {color:blue} standalone-metastore/metastore-server in master has 
184 extant Findbugs warnings. {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  4m 
26s{color} | {color:blue} ql in master has 2260 extant Findbugs warnings. 
{color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
24s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  0m 
30s{color} | {color:blue} Maven dependency ordering for patch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  2m 
 5s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
38s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  1m 
38s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
18s{color} | {color:green} standalone-metastore/metastore-server: The patch 
generated 0 new + 6 unchanged - 1 fixed = 6 total (was 7) {color} |
| {color:red}-1{color} | {color:red} checkstyle {color} | {color:red}  0m 
43s{color} | {color:red} ql: The patch generated 5 new + 15 unchanged - 2 fixed 
= 20 total (was 17) {color} |
| {color:green}+1{color} | {color:green} whitespace {color} | {color:green}  0m 
 0s{color} | {color:green} The patch has no whitespace issues. {color} |
| {color:green}+1{color} | {color:green} findbugs {color} | {color:green}  6m  
1s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
27s{color} | {color:green} the patch passed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:green}+1{color} | {color:green} asflicense {color} | {color:green}  0m 
15s{color} | {color:green} The patch does not generate ASF License warnings. 
{color} |
| {color:black}{color} | {color:black} {color} | {color:black} 33m  7s{color} | 
{color:black} {color} |
\\
\\
|| Subsystem || Report/Notes ||
| Optional Tests |  asflicense  javac  javadoc  findbugs  checkstyle  compile  |
| uname | Linux hiveptest-server-upstream 3.16.0-4-amd64 #1 SMP Debian 
3.16.43-2+deb8u5 (2017-09-19) x86_64 GNU/Linux |
| Build tool | maven |
| Personality | 
/data/hiveptest/working/yetus_PreCommit-HIVE-Build-17529/dev-support/hive-personality.sh
 |
| git revision | master / 4f25b25 |
| Default Java | 1.8.0_111 |
| findbugs | v3.0.0 |
| checkstyle | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17529/yetus/diff-checkstyle-ql.txt
 |
| modules | C: standalone-metastore/metastore-server ql U: . |
| Console output | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17529/yetus.txt |
| Powered by | Apache Yetushttp://yetus.apache.org |


This message was automatically generated.



> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch, HIVE-21812.04.patch, HIVE-21812.05.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 

[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-11 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16861062#comment-16861062
 ] 

Hive QA commented on HIVE-21812:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12971436/HIVE-21812.04.patch

{color:green}SUCCESS:{color} +1 due to 3 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 19 failed/errored test(s), 16105 tests 
executed
*Failed tests:*
{noformat}
TestMiniLlapLocalCliDriver - did not produce a TEST-*.xml file (likely timed 
out) (batchId=176)

[load_dyn_part2.q,llap_uncompressed.q,schema_evol_orc_acidvec_table_llap_io.q,parquet_types.q,vectorization_5.q,schema_evol_stats.q,mapjoin46.q,jdbc_handler.q,column_access_stats.q,vector_between_in.q,merge1.q,subquery_in_having.q,vectorized_string_funcs.q,vectorization_1.q,subquery_ANY.q,vector_coalesce_3.q,stats_noscan_1.q,vector_decimal_10_0.q,orc_merge5.q,vector_udf1.q,vector_groupby_reduce.q,union8.q,ctas_empty_source.q,lineage2.q,insert_values_orig_table.q,correlationoptimizer1.q,vector_decimal_mapjoin.q,vectorized_case.q,vector_windowing_rank.q,materialized_view_rewrite_8.q]
org.apache.hadoop.hive.metastore.TestObjectStore.catalogs (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDatabaseOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDeprecatedConfigIsOverwritten
 (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDirectSQLDropParitionsCleanup
 (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDirectSQLDropPartitionsCacheCrossSession
 (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testDirectSqlErrorMetrics 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testEmptyTrustStoreProps 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testMasterKeyOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testMaxEventResponse 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testPartitionOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testQueryCloseOnError 
(batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testRoleOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testTableOps (batchId=232)
org.apache.hadoop.hive.metastore.TestObjectStore.testUseSSLProperty 
(batchId=232)
org.apache.hive.jdbc.TestTriggersMoveWorkloadManager.testTriggerMoveAndKill 
(batchId=274)
org.apache.hive.jdbc.TestTriggersMoveWorkloadManager.testTriggerMoveBackKill 
(batchId=274)
org.apache.hive.jdbc.TestTriggersMoveWorkloadManager.testTriggerMoveConflictKill
 (batchId=274)
org.apache.hive.jdbc.TestTriggersMoveWorkloadManager.testTriggerMoveEscapeKill 
(batchId=274)
{noformat}

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/17520/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/17520/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-17520/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 19 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12971436 - PreCommit-HIVE-Build

> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch, HIVE-21812.04.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String dbName, String tblName, String 
> name);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> List getPartitionsByNames(String db_name, String tbl_name, 
> List part_names);
> List getPartitionsByNames(String catName, String db_name, String 
> tbl_name, List part_names);
> Partition getPartitionWithAuthInfo(String dbName, String 

[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-11 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16861021#comment-16861021
 ] 

Hive QA commented on HIVE-21812:


| (/) *{color:green}+1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} @author {color} | {color:green}  0m  
0s{color} | {color:green} The patch does not contain any @author tags. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  1m 
58s{color} | {color:blue} Maven dependency ordering for branch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  8m 
33s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
41s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  1m 
 3s{color} | {color:green} master passed {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  1m 
16s{color} | {color:blue} standalone-metastore/metastore-server in master has 
184 extant Findbugs warnings. {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  4m  
8s{color} | {color:blue} ql in master has 2260 extant Findbugs warnings. 
{color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
19s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  0m 
27s{color} | {color:blue} Maven dependency ordering for patch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  2m 
 1s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
37s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  1m 
37s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
19s{color} | {color:green} standalone-metastore/metastore-server: The patch 
generated 0 new + 6 unchanged - 1 fixed = 6 total (was 7) {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
41s{color} | {color:green} ql: The patch generated 0 new + 15 unchanged - 2 
fixed = 15 total (was 17) {color} |
| {color:green}+1{color} | {color:green} whitespace {color} | {color:green}  0m 
 0s{color} | {color:green} The patch has no whitespace issues. {color} |
| {color:green}+1{color} | {color:green} findbugs {color} | {color:green}  5m 
50s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
23s{color} | {color:green} the patch passed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:green}+1{color} | {color:green} asflicense {color} | {color:green}  0m 
14s{color} | {color:green} The patch does not generate ASF License warnings. 
{color} |
| {color:black}{color} | {color:black} {color} | {color:black} 33m 29s{color} | 
{color:black} {color} |
\\
\\
|| Subsystem || Report/Notes ||
| Optional Tests |  asflicense  javac  javadoc  findbugs  checkstyle  compile  |
| uname | Linux hiveptest-server-upstream 3.16.0-4-amd64 #1 SMP Debian 
3.16.43-2+deb8u5 (2017-09-19) x86_64 GNU/Linux |
| Build tool | maven |
| Personality | 
/data/hiveptest/working/yetus_PreCommit-HIVE-Build-17520/dev-support/hive-personality.sh
 |
| git revision | master / 922b24e |
| Default Java | 1.8.0_111 |
| findbugs | v3.0.0 |
| modules | C: standalone-metastore/metastore-server ql U: . |
| Console output | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17520/yetus.txt |
| Powered by | Apache Yetushttp://yetus.apache.org |


This message was automatically generated.



> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch, HIVE-21812.04.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition 

[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-01 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16853641#comment-16853641
 ] 

Hive QA commented on HIVE-21812:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12970562/HIVE-21812.03.patch

{color:green}SUCCESS:{color} +1 due to 3 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 16152 tests 
executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.cli.TestMiniLlapLocalCliDriver.testCliDriver[metadata_only_queries_with_filters]
 (batchId=179)
{noformat}

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/17386/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/17386/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-17386/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 1 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12970562 - PreCommit-HIVE-Build

> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String dbName, String tblName, String 
> name);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> List getPartitionsByNames(String db_name, String tbl_name, 
> List part_names);
> List getPartitionsByNames(String catName, String db_name, String 
> tbl_name, List part_names);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> {code}
> In order to support partitions on temporary tables, the majority of these 
> methods must be implemented in SessionHiveMetastoreClient. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-01 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16853625#comment-16853625
 ] 

Hive QA commented on HIVE-21812:


| (/) *{color:green}+1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} @author {color} | {color:green}  0m  
0s{color} | {color:green} The patch does not contain any @author tags. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  2m  
7s{color} | {color:blue} Maven dependency ordering for branch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  8m 
28s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  2m  
1s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  1m 
11s{color} | {color:green} master passed {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  1m 
28s{color} | {color:blue} standalone-metastore/metastore-server in master has 
183 extant Findbugs warnings. {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  4m 
56s{color} | {color:blue} ql in master has 2259 extant Findbugs warnings. 
{color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
36s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  0m 
31s{color} | {color:blue} Maven dependency ordering for patch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  2m 
18s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
50s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  1m 
50s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
19s{color} | {color:green} standalone-metastore/metastore-server: The patch 
generated 0 new + 6 unchanged - 1 fixed = 6 total (was 7) {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  0m 
48s{color} | {color:green} ql: The patch generated 0 new + 15 unchanged - 2 
fixed = 15 total (was 17) {color} |
| {color:green}+1{color} | {color:green} whitespace {color} | {color:green}  0m 
 0s{color} | {color:green} The patch has no whitespace issues. {color} |
| {color:green}+1{color} | {color:green} findbugs {color} | {color:green}  6m 
27s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
31s{color} | {color:green} the patch passed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:green}+1{color} | {color:green} asflicense {color} | {color:green}  0m 
16s{color} | {color:green} The patch does not generate ASF License warnings. 
{color} |
| {color:black}{color} | {color:black} {color} | {color:black} 36m 41s{color} | 
{color:black} {color} |
\\
\\
|| Subsystem || Report/Notes ||
| Optional Tests |  asflicense  javac  javadoc  findbugs  checkstyle  compile  |
| uname | Linux hiveptest-server-upstream 3.16.0-4-amd64 #1 SMP Debian 
3.16.43-2+deb8u5 (2017-09-19) x86_64 GNU/Linux |
| Build tool | maven |
| Personality | 
/data/hiveptest/working/yetus_PreCommit-HIVE-Build-17386/dev-support/hive-personality.sh
 |
| git revision | master / 22371f5 |
| Default Java | 1.8.0_111 |
| findbugs | v3.0.0 |
| modules | C: standalone-metastore/metastore-server ql U: . |
| Console output | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17386/yetus.txt |
| Powered by | Apache Yetushttp://yetus.apache.org |


This message was automatically generated.



> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch, 
> HIVE-21812.03.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String 

[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-01 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16853616#comment-16853616
 ] 

Hive QA commented on HIVE-21812:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12970556/HIVE-21812.02.patch

{color:green}SUCCESS:{color} +1 due to 3 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 16122 tests 
executed
*Failed tests:*
{noformat}
TestMiniLlapLocalCliDriver - did not produce a TEST-*.xml file (likely timed 
out) (batchId=160)

[external_jdbc_table_typeconversion.q,vector_udf_octet_length.q,schema_evol_orc_acidvec_table_update.q,materialized_view_rewrite_part_2.q,vector_decimal_5.q,vector_case_when_conversion.q,escape1.q,schema_evol_orc_acid_table_update_llap_io.q,cte_mat_5.q,acid_meta_columns_decode.q,vector_string_decimal.q,results_cache_lifetime.q,cross_prod_3.q,join46.q,dynpart_sort_optimization2.q,tez_bmj_schema_evolution.q,insert_into_default_keyword.q,bucketmapjoin4.q,vector_orc_null_check.q,semijoin7.q,uber_reduce.q,schema_evol_orc_nonvec_part_all_complex.q,is_distinct_from.q,schema_evol_text_vec_part_all_complex_llap_io.q,auto_sortmerge_join_3.q,vectorization_9.q,materialized_view_create_rewrite.q,merge2.q,join_nulls.q,bucketmapjoin2.q]
{noformat}

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/17385/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/17385/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-17385/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 1 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12970556 - PreCommit-HIVE-Build

> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String dbName, String tblName, String 
> name);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> List getPartitionsByNames(String db_name, String tbl_name, 
> List part_names);
> List getPartitionsByNames(String catName, String db_name, String 
> tbl_name, List part_names);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> {code}
> In order to support partitions on temporary tables, the majority of these 
> methods must be implemented in SessionHiveMetastoreClient. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-06-01 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16853608#comment-16853608
 ] 

Hive QA commented on HIVE-21812:


| (x) *{color:red}-1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} @author {color} | {color:green}  0m  
0s{color} | {color:green} The patch does not contain any @author tags. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  1m 
43s{color} | {color:blue} Maven dependency ordering for branch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  8m 
45s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
57s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  1m 
 7s{color} | {color:green} master passed {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  1m 
25s{color} | {color:blue} standalone-metastore/metastore-server in master has 
183 extant Findbugs warnings. {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  4m 
48s{color} | {color:blue} ql in master has 2259 extant Findbugs warnings. 
{color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
34s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  0m 
29s{color} | {color:blue} Maven dependency ordering for patch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  2m 
21s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
53s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  1m 
53s{color} | {color:green} the patch passed {color} |
| {color:red}-1{color} | {color:red} checkstyle {color} | {color:red}  0m 
20s{color} | {color:red} standalone-metastore/metastore-server: The patch 
generated 4 new + 6 unchanged - 1 fixed = 10 total (was 7) {color} |
| {color:red}-1{color} | {color:red} checkstyle {color} | {color:red}  0m 
47s{color} | {color:red} ql: The patch generated 1 new + 15 unchanged - 2 fixed 
= 16 total (was 17) {color} |
| {color:green}+1{color} | {color:green} whitespace {color} | {color:green}  0m 
 0s{color} | {color:green} The patch has no whitespace issues. {color} |
| {color:green}+1{color} | {color:green} findbugs {color} | {color:green}  6m 
30s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
32s{color} | {color:green} the patch passed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:green}+1{color} | {color:green} asflicense {color} | {color:green}  0m 
17s{color} | {color:green} The patch does not generate ASF License warnings. 
{color} |
| {color:black}{color} | {color:black} {color} | {color:black} 36m 23s{color} | 
{color:black} {color} |
\\
\\
|| Subsystem || Report/Notes ||
| Optional Tests |  asflicense  javac  javadoc  findbugs  checkstyle  compile  |
| uname | Linux hiveptest-server-upstream 3.16.0-4-amd64 #1 SMP Debian 
3.16.43-2+deb8u5 (2017-09-19) x86_64 GNU/Linux |
| Build tool | maven |
| Personality | 
/data/hiveptest/working/yetus_PreCommit-HIVE-Build-17385/dev-support/hive-personality.sh
 |
| git revision | master / 22371f5 |
| Default Java | 1.8.0_111 |
| findbugs | v3.0.0 |
| checkstyle | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17385/yetus/diff-checkstyle-standalone-metastore_metastore-server.txt
 |
| checkstyle | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17385/yetus/diff-checkstyle-ql.txt
 |
| modules | C: standalone-metastore/metastore-server ql U: . |
| Console output | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17385/yetus.txt |
| Powered by | Apache Yetushttp://yetus.apache.org |


This message was automatically generated.



> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch, HIVE-21812.02.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> 

[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-05-31 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16853451#comment-16853451
 ] 

Hive QA commented on HIVE-21812:




Here are the results of testing the latest attachment:
https://issues.apache.org/jira/secure/attachment/12970485/HIVE-21812.01.patch

{color:green}SUCCESS:{color} +1 due to 3 test(s) being added or modified.

{color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 16152 tests 
executed
*Failed tests:*
{noformat}
org.apache.hadoop.hive.ql.parse.TestReplAcidTablesBootstrapWithJsonMessage.testBootstrapAcidTablesDuringIncrementalWithConcurrentWrites
 (batchId=248)
{noformat}

Test results: 
https://builds.apache.org/job/PreCommit-HIVE-Build/17377/testReport
Console output: https://builds.apache.org/job/PreCommit-HIVE-Build/17377/console
Test logs: http://104.198.109.242/logs/PreCommit-HIVE-Build-17377/

Messages:
{noformat}
Executing org.apache.hive.ptest.execution.TestCheckPhase
Executing org.apache.hive.ptest.execution.PrepPhase
Executing org.apache.hive.ptest.execution.YetusPhase
Executing org.apache.hive.ptest.execution.ExecutionPhase
Executing org.apache.hive.ptest.execution.ReportingPhase
Tests exited with: TestsFailedException: 1 tests failed
{noformat}

This message is automatically generated.

ATTACHMENT ID: 12970485 - PreCommit-HIVE-Build

> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}
> Partition getPartition(String dbName, String tblName, List partVals);
> Partition getPartition(String catName, String dbName, String tblName, 
> List partVals);
> Partition getPartition(String dbName, String tblName, String name);
> Partition getPartition(String catName, String dbName, String tblName, String 
> name);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> List getPartitionsByNames(String db_name, String tbl_name, 
> List part_names);
> List getPartitionsByNames(String catName, String db_name, String 
> tbl_name, List part_names);
> Partition getPartitionWithAuthInfo(String dbName, String tableName, 
> List pvals, String userName, List groupNames);
> Partition getPartitionWithAuthInfo(String catName, String dbName, String 
> tableName, List pvals, String userName, List groupNames);
> {code}
> In order to support partitions on temporary tables, the majority of these 
> methods must be implemented in SessionHiveMetastoreClient. 



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)


[jira] [Commented] (HIVE-21812) Implement get partition related methods on temporary tables

2019-05-31 Thread Hive QA (JIRA)


[ 
https://issues.apache.org/jira/browse/HIVE-21812?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel=16853443#comment-16853443
 ] 

Hive QA commented on HIVE-21812:


| (x) *{color:red}-1 overall{color}* |
\\
\\
|| Vote || Subsystem || Runtime || Comment ||
|| || || || {color:brown} Prechecks {color} ||
| {color:green}+1{color} | {color:green} @author {color} | {color:green}  0m  
0s{color} | {color:green} The patch does not contain any @author tags. {color} |
|| || || || {color:brown} master Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  2m  
8s{color} | {color:blue} Maven dependency ordering for branch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  8m 
42s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
57s{color} | {color:green} master passed {color} |
| {color:green}+1{color} | {color:green} checkstyle {color} | {color:green}  1m 
10s{color} | {color:green} master passed {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  1m 
26s{color} | {color:blue} standalone-metastore/metastore-server in master has 
183 extant Findbugs warnings. {color} |
| {color:blue}0{color} | {color:blue} findbugs {color} | {color:blue}  5m  
3s{color} | {color:blue} ql in master has 2259 extant Findbugs warnings. 
{color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
39s{color} | {color:green} master passed {color} |
|| || || || {color:brown} Patch Compile Tests {color} ||
| {color:blue}0{color} | {color:blue} mvndep {color} | {color:blue}  0m 
32s{color} | {color:blue} Maven dependency ordering for patch {color} |
| {color:green}+1{color} | {color:green} mvninstall {color} | {color:green}  2m 
28s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} compile {color} | {color:green}  1m 
54s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javac {color} | {color:green}  1m 
54s{color} | {color:green} the patch passed {color} |
| {color:red}-1{color} | {color:red} checkstyle {color} | {color:red}  0m 
21s{color} | {color:red} standalone-metastore/metastore-server: The patch 
generated 14 new + 6 unchanged - 1 fixed = 20 total (was 7) {color} |
| {color:red}-1{color} | {color:red} checkstyle {color} | {color:red}  0m 
51s{color} | {color:red} ql: The patch generated 102 new + 15 unchanged - 2 
fixed = 117 total (was 17) {color} |
| {color:green}+1{color} | {color:green} whitespace {color} | {color:green}  0m 
 0s{color} | {color:green} The patch has no whitespace issues. {color} |
| {color:green}+1{color} | {color:green} findbugs {color} | {color:green}  6m 
54s{color} | {color:green} the patch passed {color} |
| {color:green}+1{color} | {color:green} javadoc {color} | {color:green}  1m 
35s{color} | {color:green} the patch passed {color} |
|| || || || {color:brown} Other Tests {color} ||
| {color:red}-1{color} | {color:red} asflicense {color} | {color:red}  0m 
17s{color} | {color:red} The patch generated 3 ASF License warnings. {color} |
| {color:black}{color} | {color:black} {color} | {color:black} 37m 56s{color} | 
{color:black} {color} |
\\
\\
|| Subsystem || Report/Notes ||
| Optional Tests |  asflicense  javac  javadoc  findbugs  checkstyle  compile  |
| uname | Linux hiveptest-server-upstream 3.16.0-4-amd64 #1 SMP Debian 
3.16.43-2+deb8u5 (2017-09-19) x86_64 GNU/Linux |
| Build tool | maven |
| Personality | 
/data/hiveptest/working/yetus_PreCommit-HIVE-Build-17377/dev-support/hive-personality.sh
 |
| git revision | master / 81117db |
| Default Java | 1.8.0_111 |
| findbugs | v3.0.0 |
| checkstyle | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17377/yetus/diff-checkstyle-standalone-metastore_metastore-server.txt
 |
| checkstyle | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17377/yetus/diff-checkstyle-ql.txt
 |
| asflicense | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17377/yetus/patch-asflicense-problems.txt
 |
| modules | C: standalone-metastore/metastore-server ql U: . |
| Console output | 
http://104.198.109.242/logs//PreCommit-HIVE-Build-17377/yetus.txt |
| Powered by | Apache Yetushttp://yetus.apache.org |


This message was automatically generated.



> Implement get partition related methods on temporary tables
> ---
>
> Key: HIVE-21812
> URL: https://issues.apache.org/jira/browse/HIVE-21812
> Project: Hive
>  Issue Type: Sub-task
>Affects Versions: 4.0.0
>Reporter: Laszlo Pinter
>Assignee: Laszlo Pinter
>Priority: Major
> Attachments: HIVE-21812.01.patch
>
>
> IMetastoreClient exposes several APIs related to getting partitions. The 
> definition of the APIs are:
> {code:java}