[jira] [Updated] (HIVE-14650) Select fails when ORC file has more columns than table schema

2019-09-26 Thread Saijin Huang (Jira)


 [ 
https://issues.apache.org/jira/browse/HIVE-14650?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-14650:

Description: (was: When SELECTing from a Hive ORC table, the following 
IndexOutOfBoundsException is thrown if the underlying ORC file has 4 or more 
columns than the Hive schema (where N is the number of columns in the ORC file).
{noformat}
Failed with exception java.io.IOException:java.lang.IndexOutOfBoundsException: 
toIndex = N
16/08/25 15:22:19 ERROR CliDriver: Failed with exception 
java.io.IOException:java.lang.IndexOutOfBoundsException: toIndex = N
java.io.IOException: java.lang.IndexOutOfBoundsException: toIndex = N
at 
org.apache.hadoop.hive.ql.exec.FetchOperator.getNextRow(FetchOperator.java:507)
at 
org.apache.hadoop.hive.ql.exec.FetchOperator.pushRow(FetchOperator.java:414)
at org.apache.hadoop.hive.ql.exec.FetchTask.fetch(FetchTask.java:140)
at org.apache.hadoop.hive.ql.Driver.getResults(Driver.java:1686)
at 
org.apache.hadoop.hive.cli.CliDriver.processLocalCmd(CliDriver.java:233)
at org.apache.hadoop.hive.cli.CliDriver.processCmd(CliDriver.java:165)
at org.apache.hadoop.hive.cli.CliDriver.processLine(CliDriver.java:376)
at 
org.apache.hadoop.hive.cli.CliDriver.executeDriver(CliDriver.java:736)
at org.apache.hadoop.hive.cli.CliDriver.run(CliDriver.java:681)
at org.apache.hadoop.hive.cli.CliDriver.main(CliDriver.java:621)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
at java.lang.reflect.Method.invoke(Method.java:498)
at org.apache.hadoop.util.RunJar.run(RunJar.java:221)
at org.apache.hadoop.util.RunJar.main(RunJar.java:136)
Caused by: java.lang.IndexOutOfBoundsException: toIndex = 6
at java.util.ArrayList.subListRangeCheck(ArrayList.java:1004)
at java.util.ArrayList.subList(ArrayList.java:996)
at 
org.apache.hadoop.hive.ql.io.orc.RecordReaderFactory.getSchemaOnRead(RecordReaderFactory.java:161)
at 
org.apache.hadoop.hive.ql.io.orc.RecordReaderFactory.createTreeReader(RecordReaderFactory.java:66)
at 
org.apache.hadoop.hive.ql.io.orc.RecordReaderImpl.(RecordReaderImpl.java:202)
at 
org.apache.hadoop.hive.ql.io.orc.ReaderImpl.rowsOptions(ReaderImpl.java:541)
at 
org.apache.hadoop.hive.ql.io.orc.OrcRawRecordMerger$ReaderPair.(OrcRawRecordMerger.java:183)
at 
org.apache.hadoop.hive.ql.io.orc.OrcRawRecordMerger$OriginalReaderPair.(OrcRawRecordMerger.java:226)
at 
org.apache.hadoop.hive.ql.io.orc.OrcRawRecordMerger.(OrcRawRecordMerger.java:437)
at 
org.apache.hadoop.hive.ql.io.orc.OrcInputFormat.getReader(OrcInputFormat.java:1216)
at 
org.apache.hadoop.hive.ql.io.orc.OrcInputFormat.getRecordReader(OrcInputFormat.java:1113)
at 
org.apache.hadoop.hive.ql.exec.FetchOperator$FetchInputFormatSplit.getRecordReader(FetchOperator.java:673)
at 
org.apache.hadoop.hive.ql.exec.FetchOperator.getRecordReader(FetchOperator.java:323)
at 
org.apache.hadoop.hive.ql.exec.FetchOperator.getNextRow(FetchOperator.java:445)
... 15 more
{noformat}
This error appears to be related to the patch of HIVE-10591.

Steps to reproduce (Hive QL):
{noformat}
DROP TABLE IF EXISTS orc_drop_column;
CREATE TABLE orc_drop_column (`id` int, `name` string, `description` string, 
`somevalue` double, `someflag` boolean, `somedate` timestamp) STORED AS ORC;
INSERT INTO TABLE orc_drop_column select * from (select 1, 'my_name', 
'my_desc', 5.5, true, '2016-08-25 06:00:00') a;

ALTER TABLE orc_drop_column SET SERDE 
'org.apache.hadoop.hive.serde2.columnar.ColumnarSerDe';
ALTER TABLE orc_drop_column REPLACE COLUMNS (
  `id` int,
  `name` string
);
ALTER TABLE orc_drop_column SET SERDE 
'org.apache.hadoop.hive.ql.io.orc.OrcSerde';
SELECT id, name FROM orc_drop_column;
{noformat}
 )

> Select fails when ORC file has more columns than table schema
> -
>
> Key: HIVE-14650
> URL: https://issues.apache.org/jira/browse/HIVE-14650
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 1.2.1
>Reporter: Jeff Mink
>Assignee: xiepengjie
>Priority: Minor
>




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


[jira] [Updated] (HIVE-20175) Missing ASF for some class with druid

2018-07-15 Thread Saijin Huang (JIRA)


 [ 
https://issues.apache.org/jira/browse/HIVE-20175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-20175:

Affects Version/s: (was: 3.2.0)
   4.0.0

> Missing ASF for some  class with druid
> --
>
> Key: HIVE-20175
> URL: https://issues.apache.org/jira/browse/HIVE-20175
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 4.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-20175.1.patch
>
>
> when testing druid for unit testing,some class miss the ASF header



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


[jira] [Updated] (HIVE-20175) Missing ASF for some class with druid

2018-07-15 Thread Saijin Huang (JIRA)


 [ 
https://issues.apache.org/jira/browse/HIVE-20175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-20175:

Affects Version/s: 3.2.0

> Missing ASF for some  class with druid
> --
>
> Key: HIVE-20175
> URL: https://issues.apache.org/jira/browse/HIVE-20175
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.2.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-20175.1.patch
>
>
> when testing druid for unit testing,some class miss the ASF header



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


[jira] [Updated] (HIVE-20175) Missing ASF for some class with druid

2018-07-14 Thread Saijin Huang (JIRA)


 [ 
https://issues.apache.org/jira/browse/HIVE-20175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-20175:

Status: Patch Available  (was: Open)

> Missing ASF for some  class with druid
> --
>
> Key: HIVE-20175
> URL: https://issues.apache.org/jira/browse/HIVE-20175
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-20175.1.patch
>
>
> when testing druid for unit testing,some class miss the ASF header



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


[jira] [Updated] (HIVE-20175) Missing ASF for some class with druid

2018-07-14 Thread Saijin Huang (JIRA)


 [ 
https://issues.apache.org/jira/browse/HIVE-20175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-20175:

Attachment: HIVE-20175.1.patch

> Missing ASF for some  class with druid
> --
>
> Key: HIVE-20175
> URL: https://issues.apache.org/jira/browse/HIVE-20175
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-20175.1.patch
>
>
> when testing druid for unit testing,some class miss the ASF header



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


[jira] [Updated] (HIVE-20175) Missing ASF for some class with druid

2018-07-14 Thread Saijin Huang (JIRA)


 [ 
https://issues.apache.org/jira/browse/HIVE-20175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-20175:

Description: when testing druid for unit testing,some class miss the ASF 
header

> Missing ASF for some  class with druid
> --
>
> Key: HIVE-20175
> URL: https://issues.apache.org/jira/browse/HIVE-20175
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
>
> when testing druid for unit testing,some class miss the ASF header



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


[jira] [Assigned] (HIVE-20175) Missing ASF for some class with druid

2018-07-14 Thread Saijin Huang (JIRA)


 [ 
https://issues.apache.org/jira/browse/HIVE-20175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-20175:
---


> Missing ASF for some  class with druid
> --
>
> Key: HIVE-20175
> URL: https://issues.apache.org/jira/browse/HIVE-20175
> Project: Hive
>  Issue Type: Improvement
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
>




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


[jira] [Updated] (HIVE-20175) Missing ASF for some class with druid

2018-07-14 Thread Saijin Huang (JIRA)


 [ 
https://issues.apache.org/jira/browse/HIVE-20175?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-20175:

Issue Type: Bug  (was: Improvement)

> Missing ASF for some  class with druid
> --
>
> Key: HIVE-20175
> URL: https://issues.apache.org/jira/browse/HIVE-20175
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
>




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


[jira] [Commented] (HIVE-19092) Somne improvement in bin shell scripts

2018-04-03 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-19092:
-

update the patch.Pending test!

> Somne improvement in bin shell scripts
> --
>
> Key: HIVE-19092
> URL: https://issues.apache.org/jira/browse/HIVE-19092
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19092.1.patch, HIVE-19092.2.patch
>
>




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


[jira] [Updated] (HIVE-19092) Somne improvement in bin shell scripts

2018-04-03 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19092:

Attachment: HIVE-19092.2.patch

> Somne improvement in bin shell scripts
> --
>
> Key: HIVE-19092
> URL: https://issues.apache.org/jira/browse/HIVE-19092
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19092.1.patch, HIVE-19092.2.patch
>
>




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


[jira] [Commented] (HIVE-19092) Somne improvement in bin shell scripts

2018-04-03 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-19092:
-

[~alangates] It is a reduntant operation and i wil fix it.Thank you for your 
advice.

> Somne improvement in bin shell scripts
> --
>
> Key: HIVE-19092
> URL: https://issues.apache.org/jira/browse/HIVE-19092
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19092.1.patch
>
>




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


[jira] [Updated] (HIVE-19092) Somne improvement in bin shell scripts

2018-04-02 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19092:

Status: Patch Available  (was: Open)

> Somne improvement in bin shell scripts
> --
>
> Key: HIVE-19092
> URL: https://issues.apache.org/jira/browse/HIVE-19092
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19092.1.patch
>
>




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


[jira] [Updated] (HIVE-19092) Somne improvement in bin shell scripts

2018-04-02 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19092:

Attachment: HIVE-19092.1.patch

> Somne improvement in bin shell scripts
> --
>
> Key: HIVE-19092
> URL: https://issues.apache.org/jira/browse/HIVE-19092
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19092.1.patch
>
>




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


[jira] [Assigned] (HIVE-19092) Somne improvement in bin shell scripts

2018-04-02 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19092?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-19092:
---


> Somne improvement in bin shell scripts
> --
>
> Key: HIVE-19092
> URL: https://issues.apache.org/jira/browse/HIVE-19092
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>




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


[jira] [Updated] (HIVE-19006) upgrade log4j2 to 2.11.0

2018-03-26 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19006:

Status: Patch Available  (was: Open)

> upgrade log4j2 to 2.11.0
> 
>
> Key: HIVE-19006
> URL: https://issues.apache.org/jira/browse/HIVE-19006
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19006.1.patch
>
>




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


[jira] [Updated] (HIVE-19006) upgrade log4j2 to 2.11.0

2018-03-26 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19006:

Attachment: (was: HIVE-19006.1.patch)

> upgrade log4j2 to 2.11.0
> 
>
> Key: HIVE-19006
> URL: https://issues.apache.org/jira/browse/HIVE-19006
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19006.1.patch
>
>




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


[jira] [Updated] (HIVE-19006) upgrade log4j2 to 2.11.0

2018-03-26 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19006:

Status: Open  (was: Patch Available)

> upgrade log4j2 to 2.11.0
> 
>
> Key: HIVE-19006
> URL: https://issues.apache.org/jira/browse/HIVE-19006
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19006.1.patch
>
>




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


[jira] [Updated] (HIVE-19006) upgrade log4j2 to 2.11.0

2018-03-26 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19006:

Attachment: HIVE-19006.1.patch

> upgrade log4j2 to 2.11.0
> 
>
> Key: HIVE-19006
> URL: https://issues.apache.org/jira/browse/HIVE-19006
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19006.1.patch, HIVE-19006.1.patch
>
>




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


[jira] [Updated] (HIVE-19006) upgrade log4j2 to 2.11.0

2018-03-21 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19006:

Status: Patch Available  (was: Open)

> upgrade log4j2 to 2.11.0
> 
>
> Key: HIVE-19006
> URL: https://issues.apache.org/jira/browse/HIVE-19006
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19006.1.patch
>
>




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


[jira] [Updated] (HIVE-19006) upgrade log4j2 to 2.11.0

2018-03-21 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19006:

Attachment: HIVE-19006.1.patch

> upgrade log4j2 to 2.11.0
> 
>
> Key: HIVE-19006
> URL: https://issues.apache.org/jira/browse/HIVE-19006
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-19006.1.patch
>
>




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


[jira] [Assigned] (HIVE-19006) upgrade log4j2 to 2.11.0

2018-03-21 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-19006:
---

Assignee: Saijin Huang

> upgrade log4j2 to 2.11.0
> 
>
> Key: HIVE-19006
> URL: https://issues.apache.org/jira/browse/HIVE-19006
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>




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


[jira] [Updated] (HIVE-19006) upgrade log4j2 to 2.11.0

2018-03-21 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-19006?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-19006:

Affects Version/s: 3.0.0

> upgrade log4j2 to 2.11.0
> 
>
> Key: HIVE-19006
> URL: https://issues.apache.org/jira/browse/HIVE-19006
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Priority: Minor
>




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


[jira] [Updated] (HIVE-18951) Fix the llapdump usage error in llapdump.sh

2018-03-13 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18951?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18951:

Status: Patch Available  (was: Open)

> Fix the llapdump usage error in llapdump.sh
> ---
>
> Key: HIVE-18951
> URL: https://issues.apache.org/jira/browse/HIVE-18951
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18951.1.patch
>
>




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


[jira] [Assigned] (HIVE-18951) Fix the llapdump usage error in llapdump.sh

2018-03-13 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18951?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-18951:
---

Assignee: Saijin Huang

> Fix the llapdump usage error in llapdump.sh
> ---
>
> Key: HIVE-18951
> URL: https://issues.apache.org/jira/browse/HIVE-18951
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18951.1.patch
>
>




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


[jira] [Updated] (HIVE-18951) Fix the llapdump usage error in llapdump.sh

2018-03-13 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18951?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18951:

Attachment: (was: LICENSE)

> Fix the llapdump usage error in llapdump.sh
> ---
>
> Key: HIVE-18951
> URL: https://issues.apache.org/jira/browse/HIVE-18951
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18951.1.patch
>
>




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


[jira] [Updated] (HIVE-18951) Fix the llapdump usage error in llapdump.sh

2018-03-13 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18951?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18951:

Attachment: HIVE-18951.1.patch

> Fix the llapdump usage error in llapdump.sh
> ---
>
> Key: HIVE-18951
> URL: https://issues.apache.org/jira/browse/HIVE-18951
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18951.1.patch, LICENSE
>
>




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


[jira] [Updated] (HIVE-18951) Fix the llapdump usage error in llapdump.sh

2018-03-13 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18951?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18951:

Attachment: LICENSE

> Fix the llapdump usage error in llapdump.sh
> ---
>
> Key: HIVE-18951
> URL: https://issues.apache.org/jira/browse/HIVE-18951
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18951.1.patch, LICENSE
>
>




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


[jira] [Assigned] (HIVE-18834) Lzo files not getting split in hive jobs on hive2.1.0、hive2.2.0

2018-03-01 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18834?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-18834:
---

Assignee: (was: Saijin Huang)

> Lzo files not getting split in hive jobs on hive2.1.0、hive2.2.0
> ---
>
> Key: HIVE-18834
> URL: https://issues.apache.org/jira/browse/HIVE-18834
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 2.1.0, 2.2.0
>Reporter: Saijin Huang
>Priority: Major
>
> According to the guide from wiki,i want to select count(*) from lzotest;
> environment:
> hive2.2.0,hive2.2.0,hadoop 2.7.3
> hive on mr ,hive on spark
> We have 1 .lzo files and the corresponding .index files .We are creating a 
> external table lzotest on the directory of these files. Size of the  lzo file 
> is 2.2G. When we run hive queries , unfortunately only 2 mappers are being 
> spawned,one map is correspond  to the lzo file,the other map iscorresponding 
> to the index file.Obviously,lzo files not getting split and the number of 
> count(*) is incorrect and greater than the true value.
> hive on mr and hive on spark get incorrct value.
> However,hive on tez can get the corrct value.The mr job can get 27 maps and 
> lzo files can be success to split.
>  
> --
> We build a new environment based on hive-1.1.0-cdh5.4.2, everything works 
> fine.
> --
> We have checked the configuration .There are nothing problem.
> Then we confuse that hive on tez works fine while hive on mr,hive on spark 
> can not get the correct value.
> The splitting is not happening, what could be the issue?Any suggestions for a 
> quick workaround t?



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


[jira] [Updated] (HIVE-18834) Lzo files not getting split in hive jobs on hive2.1.0、hive2.2.0

2018-03-01 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18834?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18834:

Description: 
According to the guide from wiki,i want to select count(*) from lzotest;

environment:

hive2.2.0,hive2.2.0,hadoop 2.7.3

hive on mr ,hive on spark

We have 1 .lzo files and the corresponding .index files .We are creating a 
external table lzotest on the directory of these files. Size of the  lzo file 
is 2.2G. When we run hive queries , unfortunately only 2 mappers are being 
spawned,one map is correspond  to the lzo file,the other map iscorresponding to 
the index file.Obviously,lzo files not getting split and the number of count(*) 
is incorrect and greater than the true value.

hive on mr and hive on spark get incorrct value.

However,hive on tez can get the corrct value.The mr job can get 27 maps and lzo 
files can be success to split.

 

--

We build a new environment based on hive-1.1.0-cdh5.4.2, everything works fine.

--

We have checked the configuration .There are nothing problem.

Then we confuse that hive on tez works fine while hive on mr,hive on spark can 
not get the correct value.

The splitting is not happening, what could be the issue?Any suggestions for a 
quick workaround t?

  was:
According to the guide from wiki,i want to select count(*) from lzotest;

<


> Lzo files not getting split in hive jobs on hive2.1.0、hive2.2.0
> ---
>
> Key: HIVE-18834
> URL: https://issues.apache.org/jira/browse/HIVE-18834
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 2.1.0, 2.2.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Major
>
> According to the guide from wiki,i want to select count(*) from lzotest;
> environment:
> hive2.2.0,hive2.2.0,hadoop 2.7.3
> hive on mr ,hive on spark
> We have 1 .lzo files and the corresponding .index files .We are creating a 
> external table lzotest on the directory of these files. Size of the  lzo file 
> is 2.2G. When we run hive queries , unfortunately only 2 mappers are being 
> spawned,one map is correspond  to the lzo file,the other map iscorresponding 
> to the index file.Obviously,lzo files not getting split and the number of 
> count(*) is incorrect and greater than the true value.
> hive on mr and hive on spark get incorrct value.
> However,hive on tez can get the corrct value.The mr job can get 27 maps and 
> lzo files can be success to split.
>  
> --
> We build a new environment based on hive-1.1.0-cdh5.4.2, everything works 
> fine.
> --
> We have checked the configuration .There are nothing problem.
> Then we confuse that hive on tez works fine while hive on mr,hive on spark 
> can not get the correct value.
> The splitting is not happening, what could be the issue?Any suggestions for a 
> quick workaround t?



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


[jira] [Updated] (HIVE-18834) Lzo files not getting split in hive jobs on hive2.1.0、hive2.2.0

2018-03-01 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18834?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18834:

Description: 
According to the guide from wiki,i want to select count(*) from lzotest;

<

> Lzo files not getting split in hive jobs on hive2.1.0、hive2.2.0
> ---
>
> Key: HIVE-18834
> URL: https://issues.apache.org/jira/browse/HIVE-18834
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 2.1.0, 2.2.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Major
>
> According to the guide from wiki,i want to select count(*) from lzotest;
> <



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


[jira] [Assigned] (HIVE-18834) Lzo files not getting split in hive jobs on hive2.1.0、hive2.2.0

2018-03-01 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18834?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-18834:
---


> Lzo files not getting split in hive jobs on hive2.1.0、hive2.2.0
> ---
>
> Key: HIVE-18834
> URL: https://issues.apache.org/jira/browse/HIVE-18834
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 2.2.0, 2.1.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Major
>




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


[jira] [Commented] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-23 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-18645:
-

Hi,[~lirui],it is a minor change.Can you plz take a quick review?

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Updated] (HIVE-18795) upgrade accumulo to 1.8.1

2018-02-23 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18795:

Attachment: HIVE-18795.1.patch

> upgrade accumulo to 1.8.1
> -
>
> Key: HIVE-18795
> URL: https://issues.apache.org/jira/browse/HIVE-18795
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18795.1.patch
>
>




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


[jira] [Updated] (HIVE-18795) upgrade accumulo to 1.8.1

2018-02-23 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18795:

Status: Patch Available  (was: Open)

> upgrade accumulo to 1.8.1
> -
>
> Key: HIVE-18795
> URL: https://issues.apache.org/jira/browse/HIVE-18795
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18795.1.patch
>
>




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


[jira] [Assigned] (HIVE-18795) upgrade accumulo to 1.8.1

2018-02-23 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18795?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-18795:
---


> upgrade accumulo to 1.8.1
> -
>
> Key: HIVE-18795
> URL: https://issues.apache.org/jira/browse/HIVE-18795
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>




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


[jira] [Updated] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-10 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18664:

Attachment: HIVE-18664.2.patch

> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18664.1.patch, HIVE-18664.2.patch
>
>
> I notice the test  from TestDruidRecordWriter#testWrite is failing for a long 
> time. It is releated to the issue -HIVE-15393- about guava version.
> Here temporary solution  is that the label "@Ingone" is put on the test and 
> the test is not running.



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


[jira] [Commented] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-08 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-18664:
-

I notice [~bslim] is  investigating it.Can you have a better idea about this 
problem?

[~kgyrtkirk] ,can you plz take a look?

> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18664.1.patch
>
>
> I notice the test  from TestDruidRecordWriter#testWrite is failing for a long 
> time. It is releated to the issue -HIVE-15393- about guava version.
> Here temporary solution  is that the label "@Ingone" is put on the test and 
> the test is not running.



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


[jira] [Updated] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-08 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18664:

Description: 
I notice the test  from TestDruidRecordWriter#testWrite is failing for a long 
time. It is releated to the issue -HIVE-15393- about guava version.

Here temporary solution  is that the label "@Ingone" is put on the test and the 
test is not running.

  was:
I notice the test  from TestDruidRecordWriter#testWrite is failing for a long 
time. It is releated to the issue HIVE-15393. 

Here temporary solution  is that the label "@Ingone" is put on the test and the 
test is not running.


> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18664.1.patch
>
>
> I notice the test  from TestDruidRecordWriter#testWrite is failing for a long 
> time. It is releated to the issue -HIVE-15393- about guava version.
> Here temporary solution  is that the label "@Ingone" is put on the test and 
> the test is not running.



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


[jira] [Updated] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-08 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18664:

Description: 
I notice the test  from TestDruidRecordWriter#testWrite is failing for a long 
time. It is releated to the issue HIVE-15393. 

Here temporary solution  is that the label "@Ingone" is put on the test and the 
test is not running.

  was:I notice the test  from TestDruidRecordWriter#testWrite is failing for a 
long time. It is releated to the issue HIVE-15393. 


> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18664.1.patch
>
>
> I notice the test  from TestDruidRecordWriter#testWrite is failing for a long 
> time. It is releated to the issue HIVE-15393. 
> Here temporary solution  is that the label "@Ingone" is put on the test and 
> the test is not running.



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


[jira] [Updated] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-08 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18664:

Description: I notice the test  from TestDruidRecordWriter#testWrite is 
failing for a long time. It is releated to the issue HIVE-15393.   (was: I 
notice the test  )

> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18664.1.patch
>
>
> I notice the test  from TestDruidRecordWriter#testWrite is failing for a long 
> time. It is releated to the issue HIVE-15393. 



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


[jira] [Updated] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-08 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18664:

Attachment: HIVE-18664.1.patch

> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18664.1.patch
>
>




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


[jira] [Updated] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-08 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18664:

Description: I notice the test  

> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18664.1.patch
>
>
> I notice the test  



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


[jira] [Updated] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-08 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18664:

Status: Patch Available  (was: Open)

> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18664.1.patch
>
>




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


[jira] [Assigned] (HIVE-18664) fix the fail test from TestDruidRecordWriter#testWrite

2018-02-08 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18664?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-18664:
---


> fix the fail test from TestDruidRecordWriter#testWrite
> --
>
> Key: HIVE-18664
> URL: https://issues.apache.org/jira/browse/HIVE-18664
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>




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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Attachment: HIVE-18645.1.patch

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Status: Patch Available  (was: Open)

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Attachment: (was: HIVE-18645.1.patch)

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Status: Open  (was: Patch Available)

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Attachment: (was: HIVE-18645.1.patch)

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Attachment: HIVE-18645.1.patch

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch, HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Commented] (HIVE-18578) Some class has missed the ASF header

2018-02-07 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-18578:
-

[~kgyrtkirk] thank you for your commit!

> Some class has missed the ASF header
> 
>
> Key: HIVE-18578
> URL: https://issues.apache.org/jira/browse/HIVE-18578
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Fix For: 3.0.0
>
> Attachments: HIVE-18578.1.patch
>
>
> Some class has missed the ASF header



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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Affects Version/s: 3.0.0
   Status: Patch Available  (was: Open)

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Attachment: HIVE-18645.1.patch

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Attachments: HIVE-18645.1.patch
>
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Updated] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18645:

Description: 
The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
README.txt from module hbase-handler.

Update the url and change .txt to .md

> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
>
> The url "http://wiki.apache.org/hadoop/Hive/HBaseIntegration; is invalid in 
> README.txt from module hbase-handler.
> Update the url and change .txt to .md



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


[jira] [Assigned] (HIVE-18645) invalid url address in README.txt from module hbase-handler

2018-02-07 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18645?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-18645:
---


> invalid url address in README.txt from module hbase-handler
> ---
>
> Key: HIVE-18645
> URL: https://issues.apache.org/jira/browse/HIVE-18645
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
>




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


[jira] [Updated] (HIVE-18578) Some class has missed the ASF header

2018-01-29 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18578:

Status: Patch Available  (was: Open)

> Some class has missed the ASF header
> 
>
> Key: HIVE-18578
> URL: https://issues.apache.org/jira/browse/HIVE-18578
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Fix For: 3.0.0
>
> Attachments: HIVE-18578.1.patch
>
>
> Some class has missed the ASF header



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


[jira] [Updated] (HIVE-18578) Some class has missed the ASF header

2018-01-29 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18578:

Attachment: HIVE-18578.1.patch

> Some class has missed the ASF header
> 
>
> Key: HIVE-18578
> URL: https://issues.apache.org/jira/browse/HIVE-18578
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Fix For: 3.0.0
>
> Attachments: HIVE-18578.1.patch
>
>
> Some class has missed the ASF header



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


[jira] [Updated] (HIVE-18578) Some class has missed the ASF header

2018-01-29 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18578:

Attachment: (was: HIVE-18578.1.patch)

> Some class has missed the ASF header
> 
>
> Key: HIVE-18578
> URL: https://issues.apache.org/jira/browse/HIVE-18578
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Fix For: 3.0.0
>
>
> Some class has missed the ASF header



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


[jira] [Updated] (HIVE-18578) Some class has missed the ASF header

2018-01-29 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18578:

Attachment: HIVE-18578.1.patch

> Some class has missed the ASF header
> 
>
> Key: HIVE-18578
> URL: https://issues.apache.org/jira/browse/HIVE-18578
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Fix For: 3.0.0
>
> Attachments: HIVE-18578.1.patch
>
>
> Some class has missed the ASF header



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


[jira] [Assigned] (HIVE-18578) Some class has missed the ASF header

2018-01-29 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18578?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-18578:
---


> Some class has missed the ASF header
> 
>
> Key: HIVE-18578
> URL: https://issues.apache.org/jira/browse/HIVE-18578
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Trivial
> Fix For: 3.0.0
>
>
> Some class has missed the ASF header



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


[jira] [Updated] (HIVE-18337) upgrade pig to 0.17.0

2017-12-24 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18337:

Status: Patch Available  (was: Open)

> upgrade pig to 0.17.0
> -
>
> Key: HIVE-18337
> URL: https://issues.apache.org/jira/browse/HIVE-18337
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18337.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-18337) upgrade pig to 0.17.0

2017-12-24 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18337:

Attachment: HIVE-18337.1.patch

> upgrade pig to 0.17.0
> -
>
> Key: HIVE-18337
> URL: https://issues.apache.org/jira/browse/HIVE-18337
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-18337.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-18337) upgrade pig to 0.17.0

2017-12-24 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18337:

Attachment: (was: 1.patch)

> upgrade pig to 0.17.0
> -
>
> Key: HIVE-18337
> URL: https://issues.apache.org/jira/browse/HIVE-18337
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-18337) upgrade pig to 0.17.0

2017-12-24 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-18337:

Attachment: 1.patch

> upgrade pig to 0.17.0
> -
>
> Key: HIVE-18337
> URL: https://issues.apache.org/jira/browse/HIVE-18337
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: 1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (HIVE-18337) upgrade pig to 0.17.0

2017-12-24 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-18337?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-18337:
---


> upgrade pig to 0.17.0
> -
>
> Key: HIVE-18337
> URL: https://issues.apache.org/jira/browse/HIVE-18337
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17786) JdbcConnectionParams set exact host and port in Utils.java

2017-10-12 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17786:

Status: Patch Available  (was: Open)

> JdbcConnectionParams set exact host and port in Utils.java
> --
>
> Key: HIVE-17786
> URL: https://issues.apache.org/jira/browse/HIVE-17786
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17786.1.patch
>
>
> In Utils.java,line 557、558,connParams.setHost and connParams.setPort should 
> be changed to the exact value



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17786) JdbcConnectionParams set exact host and port in Utils.java

2017-10-12 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17786:

Description: In Utils.java,line 557、558,connParams.setHost and 
connParams.setPort should be changed to the exact value

> JdbcConnectionParams set exact host and port in Utils.java
> --
>
> Key: HIVE-17786
> URL: https://issues.apache.org/jira/browse/HIVE-17786
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17786.1.patch
>
>
> In Utils.java,line 557、558,connParams.setHost and connParams.setPort should 
> be changed to the exact value



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17786) JdbcConnectionParams set exact host and port in Utils.java

2017-10-12 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17786:

Attachment: HIVE-17786.1.patch

> JdbcConnectionParams set exact host and port in Utils.java
> --
>
> Key: HIVE-17786
> URL: https://issues.apache.org/jira/browse/HIVE-17786
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17786.1.patch
>
>
> In Utils.java,line 557、558,connParams.setHost and connParams.setPort should 
> be changed to the exact value



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (HIVE-17786) JdbcConnectionParams set exact host and port in Utils.java

2017-10-12 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17786?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-17786:
---


> JdbcConnectionParams set exact host and port in Utils.java
> --
>
> Key: HIVE-17786
> URL: https://issues.apache.org/jira/browse/HIVE-17786
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17749) Multiple class have missed the ASF header

2017-10-11 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17749:
-

[~lirui],can you plz take a quick review?

> Multiple class have missed the ASF header
> -
>
> Key: HIVE-17749
> URL: https://issues.apache.org/jira/browse/HIVE-17749
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17749.1.patch
>
>
> Multiple class have missed the ASF header



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17749) Multiple class have missed the ASF header

2017-10-10 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17749:
-

The test failure  is not related to the issue.I find that the four test failure 
is because of the .out files not updated.

> Multiple class have missed the ASF header
> -
>
> Key: HIVE-17749
> URL: https://issues.apache.org/jira/browse/HIVE-17749
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17749.1.patch
>
>
> Multiple class have missed the ASF header



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17631) upgrade orc to 1.4.0

2017-10-09 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17631:

Status: Open  (was: Patch Available)

> upgrade orc to 1.4.0
> 
>
> Key: HIVE-17631
> URL: https://issues.apache.org/jira/browse/HIVE-17631
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>
> It seems like orc 1.4.0 has a latest and stable version:
> https://orc.apache.org/docs/releases.html



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17631) upgrade orc to 1.4.0

2017-10-09 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17631:

Attachment: (was: HIVE-17631.1.patch)

> upgrade orc to 1.4.0
> 
>
> Key: HIVE-17631
> URL: https://issues.apache.org/jira/browse/HIVE-17631
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>
> It seems like orc 1.4.0 has a latest and stable version:
> https://orc.apache.org/docs/releases.html



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17749) Multiple class have missed the ASF header

2017-10-09 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17749:

Assignee: Saijin Huang
  Status: Patch Available  (was: Open)

> Multiple class have missed the ASF header
> -
>
> Key: HIVE-17749
> URL: https://issues.apache.org/jira/browse/HIVE-17749
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17749.1.patch
>
>
> Multiple class have missed the ASF header



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17749) Multiple class have missed the ASF header

2017-10-09 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17749:

Attachment: HIVE-17749.1.patch

> Multiple class have missed the ASF header
> -
>
> Key: HIVE-17749
> URL: https://issues.apache.org/jira/browse/HIVE-17749
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17749.1.patch
>
>
> Multiple class have missed the ASF header



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17749) Multiple class have missed the ASF header

2017-10-09 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17749?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17749:

Description: Multiple class have missed the ASF header

> Multiple class have missed the ASF header
> -
>
> Key: HIVE-17749
> URL: https://issues.apache.org/jira/browse/HIVE-17749
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17749.1.patch
>
>
> Multiple class have missed the ASF header



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17631) upgrade orc to 1.4.0

2017-09-27 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17631:

Status: Patch Available  (was: Open)

> upgrade orc to 1.4.0
> 
>
> Key: HIVE-17631
> URL: https://issues.apache.org/jira/browse/HIVE-17631
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
> Attachments: HIVE-17631.1.patch
>
>
> It seems like orc 1.4.0 has a latest and stable version:
> https://orc.apache.org/docs/releases.html



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17631) upgrade orc to 1.4.0

2017-09-27 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17631:

Description: 
It seems like orc 1.4.0 has a latest and stable version:
https://orc.apache.org/docs/releases.html

> upgrade orc to 1.4.0
> 
>
> Key: HIVE-17631
> URL: https://issues.apache.org/jira/browse/HIVE-17631
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
> Attachments: HIVE-17631.1.patch
>
>
> It seems like orc 1.4.0 has a latest and stable version:
> https://orc.apache.org/docs/releases.html



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17631) upgrade orc to 1.4.0

2017-09-27 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17631:

Attachment: HIVE-17631.1.patch

> upgrade orc to 1.4.0
> 
>
> Key: HIVE-17631
> URL: https://issues.apache.org/jira/browse/HIVE-17631
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
> Environment: It seems like orc 1.4.0 has a latest and stable version:
> https://orc.apache.org/docs/releases.html
>Reporter: Saijin Huang
>Assignee: Saijin Huang
> Attachments: HIVE-17631.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17631) upgrade orc to 1.4.0

2017-09-27 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17631:

Environment: (was: It seems like orc 1.4.0 has a latest and stable 
version:
https://orc.apache.org/docs/releases.html)

> upgrade orc to 1.4.0
> 
>
> Key: HIVE-17631
> URL: https://issues.apache.org/jira/browse/HIVE-17631
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
> Attachments: HIVE-17631.1.patch
>
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (HIVE-17631) upgrade orc to 1.4.0

2017-09-27 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17631?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-17631:
---


> upgrade orc to 1.4.0
> 
>
> Key: HIVE-17631
> URL: https://issues.apache.org/jira/browse/HIVE-17631
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
> Environment: It seems like orc 1.4.0 has a latest and stable version:
> https://orc.apache.org/docs/releases.html
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17594) Unit format error in Copy.java

2017-09-26 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17594:
-

[~dmtolpeko],Thanks for your review and commit!

> Unit format error in Copy.java
> --
>
> Key: HIVE-17594
> URL: https://issues.apache.org/jira/browse/HIVE-17594
> Project: Hive
>  Issue Type: Bug
>  Components: hpl/sql
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Fix For: 3.0.0
>
> Attachments: HIVE-17594.1.patch
>
>
> In Copy.java,line 273,the unit "rows/sec" is inconsistent with the actual 
> value "rows/elapsed/1000.0".



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17594) Unit format error in Copy.java

2017-09-25 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17594:
-

[~dmtolpeko],the examples is list above.Can you plz take a quick review and 
quick commit?

> Unit format error in Copy.java
> --
>
> Key: HIVE-17594
> URL: https://issues.apache.org/jira/browse/HIVE-17594
> Project: Hive
>  Issue Type: Bug
>  Components: hpl/sql
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17594.1.patch
>
>
> In Copy.java,line 273,the unit "rows/sec" is inconsistent with the actual 
> value "rows/elapsed/1000.0".



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Comment Edited] (HIVE-17594) Unit format error in Copy.java

2017-09-25 Thread Saijin Huang (JIRA)

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

Saijin Huang edited comment on HIVE-17594 at 9/25/17 9:25 AM:
--

[~dmtolpeko], i repoduce the problem according to the test file 
copy_to_file.sql.
--
reporduce:

before modification
1.hive -e "create table src(id int);insert into src values(2)"
2.hplsql -e "copy src to src.txt;" 
3.the result is "
Ln:1 Query executed: 1 columns, output file: src.txt
Ln:1 COPY completed: 1 row(s), 2 bytes, 55 ms, 0 rows/sec
"
the speed is not correct.

after modification
1.hive -e "create table src(id int);insert into src values(2)"
2.hplsql -e "copy src to src.txt;" 
3.the result is "
Ln:1 Query executed: 1 columns, output file: src.txt
Ln:1 COPY completed: 1 row(s), 2 bytes, 457 ms, 2.19 rows/sec
" 
the speed is correct.


was (Author: txhsj):
[~dmtolpeko], i repoduce the problem according to the test file 
copy_to_file.sql.
--
reporduce:

before modification
1.hive -e "create table src(id int);insert into src values(2)"
2.hplsql -e "copy src to src.txt;" 
3.the result is "
Ln:1 Query executed: 1 columns, output file: src.txt
Ln:1 COPY completed: 1 row(s), 2 bytes, 55 ms, 0 rows/sec
"
the speed is not correct.

after modification
1.hive -e "create table src(id int);insert into src values(2)"
2.hplsql -e "copy src to src.txt;" 
3.the result is "
Ln:1 Query executed: 1 columns, output file: src1.txt
Ln:1 COPY completed: 1 row(s), 2 bytes, 457 ms, 2.19 rows/sec
" 
the speed is correct.

> Unit format error in Copy.java
> --
>
> Key: HIVE-17594
> URL: https://issues.apache.org/jira/browse/HIVE-17594
> Project: Hive
>  Issue Type: Bug
>  Components: hpl/sql
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17594.1.patch
>
>
> In Copy.java,line 273,the unit "rows/sec" is inconsistent with the actual 
> value "rows/elapsed/1000.0".



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17594) Unit format error in Copy.java

2017-09-25 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17594:
-

[~dmtolpeko], i repoduce the problem according to the test file 
copy_to_file.sql.
--
reporduce:

before modification
1.hive -e "create table src(id int);insert into src values(2)"
2.hplsql -e "copy src to src.txt;" 
3.the result is "
Ln:1 Query executed: 1 columns, output file: src.txt
Ln:1 COPY completed: 1 row(s), 2 bytes, 55 ms, 0 rows/sec
"
the speed is not correct.

after modification
1.hive -e "create table src(id int);insert into src values(2)"
2.hplsql -e "copy src to src.txt;" 
3.the result is "
Ln:1 Query executed: 1 columns, output file: src1.txt
Ln:1 COPY completed: 1 row(s), 2 bytes, 457 ms, 2.19 rows/sec
" 
the speed is correct.

> Unit format error in Copy.java
> --
>
> Key: HIVE-17594
> URL: https://issues.apache.org/jira/browse/HIVE-17594
> Project: Hive
>  Issue Type: Bug
>  Components: hpl/sql
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17594.1.patch
>
>
> In Copy.java,line 273,the unit "rows/sec" is inconsistent with the actual 
> value "rows/elapsed/1000.0".



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17594) Unit format error in Copy.java

2017-09-25 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17594?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17594:

Status: Patch Available  (was: Open)

> Unit format error in Copy.java
> --
>
> Key: HIVE-17594
> URL: https://issues.apache.org/jira/browse/HIVE-17594
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17594.1.patch
>
>
> In Copy.java,line 273,the unit "rows/sec" is inconsistent with the actual 
> value "rows/elapsed/1000.0".



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17594) Unit format error in Copy.java

2017-09-25 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17594?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17594:

Attachment: HIVE-17594.1.patch

> Unit format error in Copy.java
> --
>
> Key: HIVE-17594
> URL: https://issues.apache.org/jira/browse/HIVE-17594
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Attachments: HIVE-17594.1.patch
>
>
> In Copy.java,line 273,the unit "rows/sec" is inconsistent with the actual 
> value "rows/elapsed/1000.0".



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17594) Unit format error in Copy.java

2017-09-25 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17594?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17594:

Description: 
In Copy.java,line 273,the unit "rows/sec" is inconsistent with the actual value 
"rows/elapsed/1000.0".


> Unit format error in Copy.java
> --
>
> Key: HIVE-17594
> URL: https://issues.apache.org/jira/browse/HIVE-17594
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>
> In Copy.java,line 273,the unit "rows/sec" is inconsistent with the actual 
> value "rows/elapsed/1000.0".



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (HIVE-17594) Unit format error in Copy.java

2017-09-25 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17594?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-17594:
---


> Unit format error in Copy.java
> --
>
> Key: HIVE-17594
> URL: https://issues.apache.org/jira/browse/HIVE-17594
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
>




--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17549) Use SHA-256 for RowContainer to improve security

2017-09-19 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17549:
-

Thanks for reply![~lirui].As we konw,MD5 is weaker than sha-256.it is necessary 
to replace md5 hash by sha-256.Also,RowContainer is used for SkewJoin.So in 
rowcontainer.java,the function "copyToDFSDirecory"  is defined to copy tmpfile 
to hdfs path.However,the temp path  generated by sha-256 is more security than 
md5 which help to hold the tmppath unique and security

> Use SHA-256 for RowContainer to improve security
> 
>
> Key: HIVE-17549
> URL: https://issues.apache.org/jira/browse/HIVE-17549
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
> Attachments: HIVE-17549.1.patch
>
>
> Use SHA-256 to replace md5 for RowContainer to improve security



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17549) Use SHA-256 for RowContainer to improve security

2017-09-18 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17549:
-

[~lirui],can you take a review?

> Use SHA-256 for RowContainer to improve security
> 
>
> Key: HIVE-17549
> URL: https://issues.apache.org/jira/browse/HIVE-17549
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
> Attachments: HIVE-17549.1.patch
>
>
> Use SHA-256 to replace md5 for RowContainer to improve security



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17549) Use SHA-256 for RowContainer to improve security

2017-09-18 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17549?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17549:

Status: Patch Available  (was: Open)

> Use SHA-256 for RowContainer to improve security
> 
>
> Key: HIVE-17549
> URL: https://issues.apache.org/jira/browse/HIVE-17549
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
> Attachments: HIVE-17549.1.patch
>
>
> Use SHA-256 to replace md5 for RowContainer to improve security



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17549) Use SHA-256 for RowContainer to improve security

2017-09-18 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17549?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17549:

Attachment: HIVE-17549.1.patch

> Use SHA-256 for RowContainer to improve security
> 
>
> Key: HIVE-17549
> URL: https://issues.apache.org/jira/browse/HIVE-17549
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
> Attachments: HIVE-17549.1.patch
>
>
> Use SHA-256 to replace md5 for RowContainer to improve security



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Assigned] (HIVE-17549) Use SHA-256 for RowContainer to improve security

2017-09-18 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17549?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang reassigned HIVE-17549:
---


> Use SHA-256 for RowContainer to improve security
> 
>
> Key: HIVE-17549
> URL: https://issues.apache.org/jira/browse/HIVE-17549
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>
> Use SHA-256 to replace md5 for RowContainer to improve security



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17177) move TestSuite.java to the right position

2017-07-30 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17177:
-

[~lirui]   can you plz take a quick review and commit?

> move TestSuite.java to the right position
> -
>
> Key: HIVE-17177
> URL: https://issues.apache.org/jira/browse/HIVE-17177
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Fix For: 3.0.0
>
> Attachments: HIVE-17177.1.patch
>
>
> TestSuite.java is currently not belong to the package 
> org.apache.hive.storage.jdbc.Move it to the right position.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Commented] (HIVE-17176) Add ASF header for LlapAllocatorBuffer.java

2017-07-30 Thread Saijin Huang (JIRA)

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

Saijin Huang commented on HIVE-17176:
-

[~lirui] can you plz take a quick review and commit?

> Add ASF header for LlapAllocatorBuffer.java
> ---
>
> Key: HIVE-17176
> URL: https://issues.apache.org/jira/browse/HIVE-17176
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Fix For: 3.0.0
>
> Attachments: HIVE-17176.1.patch
>
>
> Reproduce the problem from hive-16233,find the asf header missed.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17176) Add ASF header for LlapAllocatorBuffer.java

2017-07-26 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17176?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17176:

Affects Version/s: 3.0.0

> Add ASF header for LlapAllocatorBuffer.java
> ---
>
> Key: HIVE-17176
> URL: https://issues.apache.org/jira/browse/HIVE-17176
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Fix For: 3.0.0
>
> Attachments: HIVE-17176.1.patch
>
>
> Reproduce the problem from hive-16233,find the asf header missed.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17177) move TestSuite.java to the right position

2017-07-26 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17177:

Affects Version/s: 3.0.0

> move TestSuite.java to the right position
> -
>
> Key: HIVE-17177
> URL: https://issues.apache.org/jira/browse/HIVE-17177
> Project: Hive
>  Issue Type: Bug
>Affects Versions: 3.0.0
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Fix For: 3.0.0
>
> Attachments: HIVE-17177.1.patch
>
>
> TestSuite.java is currently not belong to the package 
> org.apache.hive.storage.jdbc.Move it to the right position.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17177) move TestSuite.java to the right position

2017-07-26 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17177:

Attachment: HIVE-17177.1.patch

> move TestSuite.java to the right position
> -
>
> Key: HIVE-17177
> URL: https://issues.apache.org/jira/browse/HIVE-17177
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Fix For: 3.0.0
>
> Attachments: HIVE-17177.1.patch
>
>
> TestSuite.java is currently not belong to the package 
> org.apache.hive.storage.jdbc.Move it to the right position.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


[jira] [Updated] (HIVE-17177) move TestSuite.java to the right position

2017-07-26 Thread Saijin Huang (JIRA)

 [ 
https://issues.apache.org/jira/browse/HIVE-17177?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Saijin Huang updated HIVE-17177:

Status: Patch Available  (was: Open)

> move TestSuite.java to the right position
> -
>
> Key: HIVE-17177
> URL: https://issues.apache.org/jira/browse/HIVE-17177
> Project: Hive
>  Issue Type: Bug
>Reporter: Saijin Huang
>Assignee: Saijin Huang
>Priority: Minor
> Fix For: 3.0.0
>
> Attachments: HIVE-17177.1.patch
>
>
> TestSuite.java is currently not belong to the package 
> org.apache.hive.storage.jdbc.Move it to the right position.



--
This message was sent by Atlassian JIRA
(v6.4.14#64029)


  1   2   >