[jira] [Updated] (HIVE-8642) Hive stack() UDTF Doesn't Support NULL Insert Values

2014-11-20 Thread Ashutosh Chauhan (JIRA)

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

Ashutosh Chauhan updated HIVE-8642:
---
Assignee: Navis

 Hive stack() UDTF Doesn't Support NULL Insert Values
 

 Key: HIVE-8642
 URL: https://issues.apache.org/jira/browse/HIVE-8642
 Project: Hive
  Issue Type: Improvement
  Components: SQL, UDF
Affects Versions: 0.13.0
Reporter: Nishant Kelkar
Assignee: Navis
Priority: Minor
 Attachments: HIVE-8642.1.patch.txt


 The following tables exist:
 1. test_table --  schema {field_a:STRING, field_b:STRING, 
 field_c:STRING}
 2. dual -- schema {field_1:INT}
 test_table contents:
 {code}
 endbpedia http://dbpedia.org/schools/CMU
 {code}
 dual contents:
 {code}
 1
 {code}
 I tried the following query, and it fails:
 {code}
 INSERT INTO TABLE test_table SELECT 
 stack(1,
 en,
 dbpedia,
 NULL
 ) AS (
 field_a,
 field_b,
 field_c
 ) FROM dual;
 {code}
 The error returned: FAILED: NullPointerException null



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HIVE-8642) Hive stack() UDTF Doesn't Support NULL Insert Values

2014-11-20 Thread Ashutosh Chauhan (JIRA)

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

Ashutosh Chauhan updated HIVE-8642:
---
   Resolution: Fixed
Fix Version/s: 0.15.0
   Status: Resolved  (was: Patch Available)

Committed to trunk. Thanks, [~navis]

 Hive stack() UDTF Doesn't Support NULL Insert Values
 

 Key: HIVE-8642
 URL: https://issues.apache.org/jira/browse/HIVE-8642
 Project: Hive
  Issue Type: Improvement
  Components: SQL, UDF
Affects Versions: 0.13.0
Reporter: Nishant Kelkar
Assignee: Navis
Priority: Minor
 Fix For: 0.15.0

 Attachments: HIVE-8642.1.patch.txt


 The following tables exist:
 1. test_table --  schema {field_a:STRING, field_b:STRING, 
 field_c:STRING}
 2. dual -- schema {field_1:INT}
 test_table contents:
 {code}
 endbpedia http://dbpedia.org/schools/CMU
 {code}
 dual contents:
 {code}
 1
 {code}
 I tried the following query, and it fails:
 {code}
 INSERT INTO TABLE test_table SELECT 
 stack(1,
 en,
 dbpedia,
 NULL
 ) AS (
 field_a,
 field_b,
 field_c
 ) FROM dual;
 {code}
 The error returned: FAILED: NullPointerException null



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HIVE-8642) Hive stack() UDTF Doesn't Support NULL Insert Values

2014-11-20 Thread Ashutosh Chauhan (JIRA)

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

Ashutosh Chauhan updated HIVE-8642:
---
Affects Version/s: 0.14.0

 Hive stack() UDTF Doesn't Support NULL Insert Values
 

 Key: HIVE-8642
 URL: https://issues.apache.org/jira/browse/HIVE-8642
 Project: Hive
  Issue Type: Improvement
  Components: SQL, UDF
Affects Versions: 0.13.0, 0.14.0
Reporter: Nishant Kelkar
Assignee: Navis
Priority: Minor
 Fix For: 0.15.0

 Attachments: HIVE-8642.1.patch.txt


 The following tables exist:
 1. test_table --  schema {field_a:STRING, field_b:STRING, 
 field_c:STRING}
 2. dual -- schema {field_1:INT}
 test_table contents:
 {code}
 endbpedia http://dbpedia.org/schools/CMU
 {code}
 dual contents:
 {code}
 1
 {code}
 I tried the following query, and it fails:
 {code}
 INSERT INTO TABLE test_table SELECT 
 stack(1,
 en,
 dbpedia,
 NULL
 ) AS (
 field_a,
 field_b,
 field_c
 ) FROM dual;
 {code}
 The error returned: FAILED: NullPointerException null



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HIVE-8642) Hive stack() UDTF Doesn't Support NULL Insert Values

2014-10-29 Thread Nishant Kelkar (JIRA)

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

Nishant Kelkar updated HIVE-8642:
-
Summary: Hive stack() UDTF Doesn't Support NULL Insert Values  (was: Hive 
stack() Method Doesn't Support NULL Insert Values)

 Hive stack() UDTF Doesn't Support NULL Insert Values
 

 Key: HIVE-8642
 URL: https://issues.apache.org/jira/browse/HIVE-8642
 Project: Hive
  Issue Type: Improvement
  Components: SQL, UDF
Affects Versions: 0.13.0
Reporter: Nishant Kelkar
Priority: Minor

 The following tables exist:
 1. test_table --  schema {field_a:STRING, field_b:STRING, 
 field_c:STRING}
 2. dual -- schema {field_1:INT}
 test_table contents:
 {code}
 endbpedia http://dbpedia.org/schools/CMU
 {code}
 dual contents:
 {code}
 1
 {code}
 I tried the following query, and it fails:
 {code}
 INSERT INTO TABLE test_table SELECT 
 stack(1,
 en,
 dbpedia,
 NULL
 ) AS (
 field_a,
 field_b,
 field_c
 ) FROM dual;
 {code}
 The error returned: FAILED: NullPointerException null



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)


[jira] [Updated] (HIVE-8642) Hive stack() UDTF Doesn't Support NULL Insert Values

2014-10-29 Thread Navis (JIRA)

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

Navis updated HIVE-8642:

Attachment: HIVE-8642.1.patch.txt

 Hive stack() UDTF Doesn't Support NULL Insert Values
 

 Key: HIVE-8642
 URL: https://issues.apache.org/jira/browse/HIVE-8642
 Project: Hive
  Issue Type: Improvement
  Components: SQL, UDF
Affects Versions: 0.13.0
Reporter: Nishant Kelkar
Priority: Minor
 Attachments: HIVE-8642.1.patch.txt


 The following tables exist:
 1. test_table --  schema {field_a:STRING, field_b:STRING, 
 field_c:STRING}
 2. dual -- schema {field_1:INT}
 test_table contents:
 {code}
 endbpedia http://dbpedia.org/schools/CMU
 {code}
 dual contents:
 {code}
 1
 {code}
 I tried the following query, and it fails:
 {code}
 INSERT INTO TABLE test_table SELECT 
 stack(1,
 en,
 dbpedia,
 NULL
 ) AS (
 field_a,
 field_b,
 field_c
 ) FROM dual;
 {code}
 The error returned: FAILED: NullPointerException null



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)