[jira] [Created] (HIVE-22139) Will not pad Decimal numbers with trailing zeros if select from value

2019-08-22 Thread Yuming Wang (Jira)
Yuming Wang created HIVE-22139:
--

 Summary: Will not pad Decimal numbers with trailing zeros if 
select from value
 Key: HIVE-22139
 URL: https://issues.apache.org/jira/browse/HIVE-22139
 Project: Hive
  Issue Type: Bug
  Components: SQL
Affects Versions: 3.1.1
Reporter: Yuming Wang


How to reproduce:
{code:sql}
// code placeholder
{code}



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


[VOTE] Apache Hive 3.1.2 Release Candidate 1

2019-08-22 Thread Alan Gates
NOTE:  This is a separate release from the recently voted on Hive 2.3.6.
Apache Hive 3.1.2 Release Candidate 1 is available here:

https://people.apache.org/~gates/apache-hive-3.1.2-rc-1/

Maven artifacts are available here:

https://repository.apache.org/content/repositories/orgapachehive-1097/

The tag release-3.1.2-rc1 has been applied to the source for this release
in github, you can see it at
https://github.com/apache/hive/tree/release-3.1.2-rc1

Voting will conclude in 72 hours.

Hive PMC Members: Please test and vote.

Thanks.


[jira] [Created] (HIVE-22138) Upgrade script for Hive version

2019-08-22 Thread Sam An (Jira)
Sam An created HIVE-22138:
-

 Summary: Upgrade script for Hive version
 Key: HIVE-22138
 URL: https://issues.apache.org/jira/browse/HIVE-22138
 Project: Hive
  Issue Type: Task
Affects Versions: 3.1.0
Reporter: Sam An
Assignee: Sam An


Hive metastore and Hive schema version will be bumped to 3.1.2000, and we need 
to have corresponding sql script to handle that. 



--
This message was sent by Atlassian Jira
(v8.3.2#803003)


Re: [RESULT][VOTE] Apache Hive 2.3.6 Release Candidate 0

2019-08-22 Thread Alan Gates
With 3 +1s (Alan, Owen, and Zoltan) and no -1s this vote passes.  Thank you
Owen and Zoltan for reviewing the release.

Alan.

On Wed, Aug 21, 2019 at 4:28 PM Alan Gates  wrote:

> Unless that fix is really important I say we don't push it into the 2.3.6
> as this release is mainly for Spark and they've already tested with it.  My
> take is HIVE-21980 isn't a crucial fix, so I say we leave it on the 2.3
> branch and it will come out in a 2.3.7 release if someone needs it.
>
> Alan.
>
> On Wed, Aug 21, 2019 at 9:24 AM Zoltan Haindrich  wrote:
>
>> +1
>> * checked signatures
>> * downloaded the binary release; run some queries in a small installation
>>
>> I'm undecided about the following: for branch-3 there was an ask to
>> include HIVE-18624; which was already present on branch-2 which is good;
>> but I know about another similar issue HIVE-21980; I've just landed it on
>> all relevant branches - including branch-2.3
>> I'm not sure if we want to roll another RC to include it - since it needs
>> a specifically constructed large query.
>>
>> Thank you Alan for taking up releasing 2.3.6!
>>
>>
>> On 8/19/19 6:49 PM, Alan Gates wrote:
>> > Apache Hive 2.3.6 Release Candidate 0 is available here:
>> >
>> > https://people.apache.org/~gates/apache-hive-2.3.6-rc-0/
>> >
>> > Maven artifacts are available here:
>> > https://repository.apache.org/content/repositories/orgapachehive-1096/
>> >
>> > The tag release-2.3.6-rc0 has been applied to the source for this
>> release
>> > in github, you can see it at
>> > https://github.com/apache/hive/tree/release-2.3.6-rc0
>> >
>> > Voting will stay open for at least 72 hours.
>> >
>> > Hive PMC Members: Please test and vote.
>> >
>> > Thanks.
>> >
>>
>


[jira] [Created] (HIVE-22137) Implement alter/rename partition related methods on temporary tables

2019-08-22 Thread Laszlo Pinter (Jira)
Laszlo Pinter created HIVE-22137:


 Summary: Implement alter/rename partition related methods on 
temporary tables
 Key: HIVE-22137
 URL: https://issues.apache.org/jira/browse/HIVE-22137
 Project: Hive
  Issue Type: Sub-task
  Components: Hive
Reporter: Laszlo Pinter
Assignee: Laszlo Pinter


IMetaStoreClient exposes the following methods related to altering of 
partitions:
{code:java}
void alter_partition(String dbName, String tblName, Partition newPart);
void alter_partition(String catName, String dbName, String tblName, Partition 
newPart);
void alter_partition(String dbName, String tblName, Partition newPart, 
EnvironmentContext environmentContext);
void alter_partition(String catName, String dbName, String tblName, Partition 
newPart, EnvironmentContext environmentContext, String writeIdList);
void alter_partition(String catName, String dbName, String tblName, Partition 
newPart, EnvironmentContext environmentContext);
void alter_partitions(String dbName, String tblName, List newParts);
void alter_partitions(String dbName, String tblName, List newParts, 
EnvironmentContext environmentContext);
void alter_partitions(String dbName, String tblName, List newParts, 
EnvironmentContext environmentContext,String writeIdList, long writeId);
void alter_partitions(String catName, String dbName, String tblName, 
List newParts);
void alter_partitions(String catName, String dbName, String tblName, 
List newParts, EnvironmentContext environmentContext, String 
writeIdList, long writeId);
void renamePartition(final String dbname, final String tableName, final 
List part_vals, final Partition newPart);
void renamePartition(String catName, String dbname, String tableName, 
List part_vals, Partition newPart, String validWriteIds){code}
These should be implemented, in order to completely support partition on 
temporary tables.



--
This message was sent by Atlassian Jira
(v8.3.2#803003)