[jira] [Created] (HIVE-23932) Test TypeCheckProcFactory reorg

2020-07-24 Thread Steve Carlin (Jira)
Steve Carlin created HIVE-23932:
---

 Summary: Test TypeCheckProcFactory reorg
 Key: HIVE-23932
 URL: https://issues.apache.org/jira/browse/HIVE-23932
 Project: Hive
  Issue Type: Improvement
  Components: Hive
Reporter: Steve Carlin






--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23931) Send ValidWriteIdList and tableId to get_*_constraints HMS APIs

2020-07-24 Thread Kishen Das (Jira)
Kishen Das created HIVE-23931:
-

 Summary: Send ValidWriteIdList and tableId to get_*_constraints 
HMS APIs
 Key: HIVE-23931
 URL: https://issues.apache.org/jira/browse/HIVE-23931
 Project: Hive
  Issue Type: Sub-task
Reporter: Kishen Das


Send ValidWriteIdList and tableId to get_*_constraints HMS APIs. This would be 
required in order to decide whether the response should be served from the 
Cache or backing DB.



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23930) Upgrade to tez 0.10.x

2020-07-24 Thread Jira
László Bodor created HIVE-23930:
---

 Summary: Upgrade to tez 0.10.x
 Key: HIVE-23930
 URL: https://issues.apache.org/jira/browse/HIVE-23930
 Project: Hive
  Issue Type: Improvement
Reporter: László Bodor






--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23929) Run compaction as partition owner

2020-07-24 Thread Jira
László Pintér created HIVE-23929:


 Summary: Run compaction as partition owner
 Key: HIVE-23929
 URL: https://issues.apache.org/jira/browse/HIVE-23929
 Project: Hive
  Issue Type: Bug
  Components: Hive
Reporter: László Pintér
Assignee: László Pintér


While using Nifi to stream data into Hive tables, it can happen that the newly 
created partitions have a different owner than the table itself. Running 
compaction on these partitions will fail with
{code:java}
org.apache.hadoop.security.AccessControlException: Permission denied: 
user=testuser, access=EXECUTE, 
inode="/warehouse/tablespace/managed/hive":hive:hadoop:drwx--
{code}
 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23928) Support conversion of not-exists to Anti join directly

2020-07-24 Thread mahesh kumar behera (Jira)
mahesh kumar behera created HIVE-23928:
--

 Summary: Support conversion of not-exists to Anti join directly
 Key: HIVE-23928
 URL: https://issues.apache.org/jira/browse/HIVE-23928
 Project: Hive
  Issue Type: Bug
Reporter: mahesh kumar behera
Assignee: mahesh kumar behera


Support HiveJoinProjectTransposeRule for Anti Join

 



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23926) Flaky test TestTableLevelReplicationScenarios.testRenameTableScenariosWithReplacePolicyDMLOperattion

2020-07-24 Thread Zoltan Haindrich (Jira)
Zoltan Haindrich created HIVE-23926:
---

 Summary: Flaky test 
TestTableLevelReplicationScenarios.testRenameTableScenariosWithReplacePolicyDMLOperattion
 Key: HIVE-23926
 URL: https://issues.apache.org/jira/browse/HIVE-23926
 Project: Hive
  Issue Type: Bug
Reporter: Zoltan Haindrich


http://ci.hive.apache.org/job/hive-precommit/job/master/123/testReport/org.apache.hadoop.hive.ql.parse/TestTableLevelReplicationScenarios/Testing___split_18___Archive___testRenameTableScenariosWithReplacePolicyDMLOperattion/



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23927) Cast to Timestamp generates different output for Integer & Float values

2020-07-24 Thread Renukaprasad C (Jira)
Renukaprasad C created HIVE-23927:
-

 Summary: Cast to Timestamp generates different output for Integer 
& Float values 
 Key: HIVE-23927
 URL: https://issues.apache.org/jira/browse/HIVE-23927
 Project: Hive
  Issue Type: Bug
Reporter: Renukaprasad C


Double consider the input value as SECOND and converts into Millis internally.
Whereas, Integer value will be considered as Millis and produce different 
output.

org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorUtils.getTimestamp(Object,
 PrimitiveObjectInspector, boolean) - Handles Integral & Decimal values 
differently. This cause the issue.

0: jdbc:hive2://localhost:1> select cast(1.204135216E9 as timestamp) 
Double2TimeStamp, cast(1204135216 as timestamp) Int2TimeStamp from abc 
tablesample(1 rows);
OK
INFO  : Compiling 
command(queryId=renu_20200724140642_70132390-ee12-4214-a2ca-a7e10556fc14): 
select cast(1.204135216E9 as timestamp) Double2TimeStamp, cast(1204135216 as 
timestamp) Int2TimeStamp from abc tablesample(1 rows)
INFO  : Concurrency mode is disabled, not creating a lock manager
INFO  : Semantic Analysis Completed (retrial = false)
INFO  : Returning Hive schema: 
Schema(fieldSchemas:[FieldSchema(name:double2timestamp, type:timestamp, 
comment:null), FieldSchema(name:int2timestamp, type:timestamp, comment:null)], 
properties:null)
INFO  : Completed compiling 
command(queryId=renu_20200724140642_70132390-ee12-4214-a2ca-a7e10556fc14); Time 
taken: 0.175 seconds
INFO  : Concurrency mode is disabled, not creating a lock manager
INFO  : Executing 
command(queryId=renu_20200724140642_70132390-ee12-4214-a2ca-a7e10556fc14): 
select cast(1.204135216E9 as timestamp) Double2TimeStamp, cast(1204135216 as 
timestamp) Int2TimeStamp from abc tablesample(1 rows)
INFO  : Completed executing 
command(queryId=renu_20200724140642_70132390-ee12-4214-a2ca-a7e10556fc14); Time 
taken: 0.001 seconds
INFO  : OK
INFO  : Concurrency mode is disabled, not creating a lock manager
++--+
|double2timestamp|  int2timestamp   |
++--+
| 2008-02-27 18:00:16.0  | 1970-01-14 22:28:55.216  |
++--+




--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23925) Flaky test TestJdbcWithMiniHS2

2020-07-24 Thread Zoltan Haindrich (Jira)
Zoltan Haindrich created HIVE-23925:
---

 Summary: Flaky test TestJdbcWithMiniHS2
 Key: HIVE-23925
 URL: https://issues.apache.org/jira/browse/HIVE-23925
 Project: Hive
  Issue Type: Bug
Reporter: Zoltan Haindrich


http://ci.hive.apache.org/job/hive-precommit/job/master/122/testReport/org.apache.hive.jdbc/TestJdbcWithMiniHS2/Testing___split_10___Archive___testConcurrentStatements/



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23924) Flaky test TestStatsReplicationScenariosACID.testForParallelBootstrapLoad

2020-07-24 Thread Zoltan Haindrich (Jira)
Zoltan Haindrich created HIVE-23924:
---

 Summary: Flaky test 
TestStatsReplicationScenariosACID.testForParallelBootstrapLoad
 Key: HIVE-23924
 URL: https://issues.apache.org/jira/browse/HIVE-23924
 Project: Hive
  Issue Type: Bug
Reporter: Zoltan Haindrich


http://ci.hive.apache.org/job/hive-precommit/job/master/122/testReport/org.apache.hadoop.hive.ql.parse/TestStatsReplicationScenariosACID/Testing___split_08___Archive___testForParallelBootstrapLoad/



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23923) Stabilize resultset of schema_evol_text_vec_part_all_primitive

2020-07-24 Thread Zoltan Haindrich (Jira)
Zoltan Haindrich created HIVE-23923:
---

 Summary: Stabilize resultset of 
schema_evol_text_vec_part_all_primitive
 Key: HIVE-23923
 URL: https://issues.apache.org/jira/browse/HIVE-23923
 Project: Hive
  Issue Type: Bug
Reporter: Zoltan Haindrich


http://ci.hive.apache.org/job/hive-flaky-check/80/testReport/junit/org.apache.hadoop.hive.cli/TestMiniLlapLocalCliDriver/testCliDriver_schema_evol_text_vec_part_all_primitive_/



--
This message was sent by Atlassian Jira
(v8.3.4#803005)


[jira] [Created] (HIVE-23922) Improve code quality, UDFArgumentException.getMessage Method requires only two parameters

2020-07-24 Thread hao (Jira)
hao created HIVE-23922:
--

 Summary: Improve code quality, UDFArgumentException.getMessage 
Method requires only two parameters
 Key: HIVE-23922
 URL: https://issues.apache.org/jira/browse/HIVE-23922
 Project: Hive
  Issue Type: Improvement
Reporter: hao


[UDFArgumentException.getMessage] This method only needs two parameters, 
message and methods. The rest parameters are not used



--
This message was sent by Atlassian Jira
(v8.3.4#803005)