[jira] [Work logged] (HIVE-25596) Compress Hive Replication Metrics while storing

2021-11-07 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/HIVE-25596?focusedWorklogId=678350&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-678350
 ]

ASF GitHub Bot logged work on HIVE-25596:
-

Author: ASF GitHub Bot
Created on: 08/Nov/21 06:57
Start Date: 08/Nov/21 06:57
Worklog Time Spent: 10m 
  Work Description: pkumarsinha commented on a change in pull request #2724:
URL: https://github.com/apache/hive/pull/2724#discussion_r76628



##
File path: 
ql/src/java/org/apache/hadoop/hive/ql/parse/repl/metric/ReplicationMetricCollector.java
##
@@ -105,6 +110,21 @@ public void reportFailoverStart(String stageName, 
Map metricMap,
 }
   }
 
+  private void updateRMProgressIfLimitExceeds(Progress progress, Stage stage) 
throws SemanticException {
+MessageSerializer serializer = 
MessageFactory.getDefaultInstanceForReplMetrics(conf).getSerializer();
+ObjectMapper mapper = new ObjectMapper();
+String serializedProgress = null;
+try {
+  serializedProgress = 
serializer.serialize(mapper.writeValueAsString(progress));
+} catch (Exception e) {
+  throw new SemanticException(e);
+}
+if (serializedProgress.length() > ReplStatsTracker.RM_PROGRESS_LENGTH) {
+  stage.setReplStats("Error: RM_PROGRESS limit exceeded to " + 
serializedProgress.length());

Review comment:
   Also, please add the dropped progress as a part of log 




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 678350)
Time Spent: 5h 50m  (was: 5h 40m)

> Compress Hive Replication Metrics while storing
> ---
>
> Key: HIVE-25596
> URL: https://issues.apache.org/jira/browse/HIVE-25596
> Project: Hive
>  Issue Type: Improvement
>Reporter: Haymant Mangla
>Assignee: Haymant Mangla
>Priority: Major
>  Labels: pull-request-available
> Attachments: CompressedRM_Progress(k=10), CompressedRM_Progress(k=5), 
> PlainTextRM_Progress(k=10), PlainTextRM_Progress(k=5)
>
>  Time Spent: 5h 50m
>  Remaining Estimate: 0h
>
> Compress the json fields of sys.replication_metrics table to optimise RDBMS 
> space usage.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Updated] (HIVE-25653) Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating point data types.

2021-11-07 Thread Sankar Hariappan (Jira)


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

Sankar Hariappan updated HIVE-25653:

Affects Version/s: 3.1.2
   3.1.0

> Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating 
> point data types.
> 
>
> Key: HIVE-25653
> URL: https://issues.apache.org/jira/browse/HIVE-25653
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.1.0, 3.1.2
>Reporter: Ashish Sharma
>Assignee: Ashish Sharma
>Priority: Major
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Description
> *Script*- 
> create table test ( col1 int );
> insert into values 
> ('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72');
> select STDDEV_SAMP(col1) AS STDDEV_6M , STDDEV(col1) as STDDEV 
> ,STDDEV_POP(col1) as STDDEV_POP from test;
> *Result*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 5.940794514955821E-13 5.42317860890711E-13 5.42317860890711E-13
> *Expected*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 0   0 
>0



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Updated] (HIVE-25653) Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating point data types.

2021-11-07 Thread Sankar Hariappan (Jira)


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

Sankar Hariappan updated HIVE-25653:

Component/s: UDF

> Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating 
> point data types.
> 
>
> Key: HIVE-25653
> URL: https://issues.apache.org/jira/browse/HIVE-25653
> Project: Hive
>  Issue Type: Improvement
>  Components: UDF
>Affects Versions: 3.1.0, 3.1.2
>Reporter: Ashish Sharma
>Assignee: Ashish Sharma
>Priority: Major
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Description
> *Script*- 
> create table test ( col1 int );
> insert into values 
> ('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72');
> select STDDEV_SAMP(col1) AS STDDEV_6M , STDDEV(col1) as STDDEV 
> ,STDDEV_POP(col1) as STDDEV_POP from test;
> *Result*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 5.940794514955821E-13 5.42317860890711E-13 5.42317860890711E-13
> *Expected*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 0   0 
>0



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Resolved] (HIVE-25653) Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating point data types.

2021-11-07 Thread Sankar Hariappan (Jira)


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

Sankar Hariappan resolved HIVE-25653.
-
   Fix Version/s: 4.0.0
Target Version/s: 4.0.0
  Resolution: Fixed

Merged to master!
Thanks [~ashish-kumar-sharma] for the patch and [~adeshrao] for the review!

> Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating 
> point data types.
> 
>
> Key: HIVE-25653
> URL: https://issues.apache.org/jira/browse/HIVE-25653
> Project: Hive
>  Issue Type: Improvement
>Reporter: Ashish Sharma
>Assignee: Ashish Sharma
>Priority: Major
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Description
> *Script*- 
> create table test ( col1 int );
> insert into values 
> ('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72');
> select STDDEV_SAMP(col1) AS STDDEV_6M , STDDEV(col1) as STDDEV 
> ,STDDEV_POP(col1) as STDDEV_POP from test;
> *Result*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 5.940794514955821E-13 5.42317860890711E-13 5.42317860890711E-13
> *Expected*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 0   0 
>0



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Work logged] (HIVE-25653) Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating point data types.

2021-11-07 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/HIVE-25653?focusedWorklogId=678348&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-678348
 ]

ASF GitHub Bot logged work on HIVE-25653:
-

Author: ASF GitHub Bot
Created on: 08/Nov/21 06:54
Start Date: 08/Nov/21 06:54
Worklog Time Spent: 10m 
  Work Description: sankarh merged pull request #2760:
URL: https://github.com/apache/hive/pull/2760


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 678348)
Time Spent: 1h  (was: 50m)

> Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating 
> point data types.
> 
>
> Key: HIVE-25653
> URL: https://issues.apache.org/jira/browse/HIVE-25653
> Project: Hive
>  Issue Type: Improvement
>Reporter: Ashish Sharma
>Assignee: Ashish Sharma
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 1h
>  Remaining Estimate: 0h
>
> Description
> *Script*- 
> create table test ( col1 int );
> insert into values 
> ('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72');
> select STDDEV_SAMP(col1) AS STDDEV_6M , STDDEV(col1) as STDDEV 
> ,STDDEV_POP(col1) as STDDEV_POP from test;
> *Result*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 5.940794514955821E-13 5.42317860890711E-13 5.42317860890711E-13
> *Expected*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 0   0 
>0



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Updated] (HIVE-25653) Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating point data types.

2021-11-07 Thread Sankar Hariappan (Jira)


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

Sankar Hariappan updated HIVE-25653:

Summary: Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for 
floating point data types.  (was: Precision problem in STD, 
STDDDEV_SAMP,STDDEV_POP)

> Incorrect results returned by STDDEV, STDDEV_SAMP, STDDEV_POP for floating 
> point data types.
> 
>
> Key: HIVE-25653
> URL: https://issues.apache.org/jira/browse/HIVE-25653
> Project: Hive
>  Issue Type: Improvement
>Reporter: Ashish Sharma
>Assignee: Ashish Sharma
>Priority: Major
>  Labels: pull-request-available
>  Time Spent: 50m
>  Remaining Estimate: 0h
>
> Description
> *Script*- 
> create table test ( col1 int );
> insert into values 
> ('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72'),('10230.72');
> select STDDEV_SAMP(col1) AS STDDEV_6M , STDDEV(col1) as STDDEV 
> ,STDDEV_POP(col1) as STDDEV_POP from test;
> *Result*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 5.940794514955821E-13 5.42317860890711E-13 5.42317860890711E-13
> *Expected*- 
> STDDDEV_SAMPSTDDEV  
> STDDEV_POP 
> 0   0 
>0



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Work logged] (HIVE-25596) Compress Hive Replication Metrics while storing

2021-11-07 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/HIVE-25596?focusedWorklogId=678347&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-678347
 ]

ASF GitHub Bot logged work on HIVE-25596:
-

Author: ASF GitHub Bot
Created on: 08/Nov/21 06:47
Start Date: 08/Nov/21 06:47
Worklog Time Spent: 10m 
  Work Description: pkumarsinha commented on a change in pull request #2724:
URL: https://github.com/apache/hive/pull/2724#discussion_r744418558



##
File path: 
ql/src/test/org/apache/hadoop/hive/ql/udf/generic/TestGenericUDFDeserialize.java
##
@@ -0,0 +1,96 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hive.ql.udf.generic;
+
+import org.apache.hadoop.hive.conf.HiveConf;
+import org.apache.hadoop.hive.metastore.messaging.MessageEncoder;
+import org.apache.hadoop.hive.metastore.messaging.MessageFactory;
+import org.apache.hadoop.hive.ql.metadata.HiveException;
+import org.apache.hadoop.hive.ql.exec.UDFArgumentException;
+import org.apache.hadoop.io.Text;
+import org.junit.Test;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNull;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertTrue;
+import org.apache.hadoop.hive.serde2.objectinspector.ObjectInspector;
+import 
org.apache.hadoop.hive.serde2.objectinspector.primitive.PrimitiveObjectInspectorFactory;
+
+/**
+ * TestGenericUDFDeserialize.

Review comment:
   Add description

##
File path: common/src/java/org/apache/hadoop/hive/conf/HiveConf.java
##
@@ -696,7 +696,8 @@ private static void populateLlapDaemonVarsSet(Set 
llapDaemonVarsSetLocal
 + "attempted using the snapshot based approach. If disabled, the 
replication will fail in case the target is "
 + "modified."),
 REPL_STATS_TOP_EVENTS_COUNTS("hive.repl.stats.events.count", 5,
-"Number of top costliest events that needs to maintained per event 
type for the replication statistics."),
+"Number of top costliest events that needs to maintained per event 
type for the replication statistics." +
+" Maximum permissible limit is 10."),

Review comment:
   fix typo

##
File path: 
ql/src/java/org/apache/hadoop/hive/ql/parse/repl/metric/ReplicationMetricCollector.java
##
@@ -105,6 +110,21 @@ public void reportFailoverStart(String stageName, 
Map metricMap,
 }
   }
 
+  private void updateRMProgressIfLimitExceeds(Progress progress, Stage stage) 
throws SemanticException {
+MessageSerializer serializer = 
MessageFactory.getDefaultInstanceForReplMetrics(conf).getSerializer();
+ObjectMapper mapper = new ObjectMapper();
+String serializedProgress = null;
+try {
+  serializedProgress = 
serializer.serialize(mapper.writeValueAsString(progress));
+} catch (Exception e) {
+  throw new SemanticException(e);
+}
+if (serializedProgress.length() > ReplStatsTracker.RM_PROGRESS_LENGTH) {
+  stage.setReplStats("Error: RM_PROGRESS limit exceeded to " + 
serializedProgress.length());

Review comment:
   Add a log line too 

##
File path: 
ql/src/test/org/apache/hadoop/hive/ql/udf/generic/TestGenericUDFDeserialize.java
##
@@ -0,0 +1,96 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.apache.hadoop.hive.ql.udf.generic;
+
+i

[jira] [Resolved] (HIVE-25584) [llap-ext-client] Load data from a Text file for Map dataType is giving errors

2021-11-07 Thread Sruthi Mooriyathvariam (Jira)


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

Sruthi Mooriyathvariam resolved HIVE-25584.
---
Resolution: Fixed

> [llap-ext-client] Load data from a Text file for Map dataType is giving errors
> --
>
> Key: HIVE-25584
> URL: https://issues.apache.org/jira/browse/HIVE-25584
> Project: Hive
>  Issue Type: Task
>  Components: llap
>Reporter: Sruthi Mooriyathvariam
>Assignee: Sruthi Mooriyathvariam
>Priority: Minor
> Fix For: 4.0.0
>
>
> Currently, there is no support for non-ORC writes (text and parquet) for the 
> llap-ext-client. Thus loading data from a text file leads to errors for Map 
> data type. This has to be fixed while adding support for non-ORC writes.



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Resolved] (HIVE-25659) Metastore direct sql queries with IN/(NOT IN) should be split based on max parameters allowed by SQL DB

2021-11-07 Thread Sankar Hariappan (Jira)


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

Sankar Hariappan resolved HIVE-25659.
-
Target Version/s: 4.0.0
  Resolution: Fixed

Merged to master!
Thanks [~gupta.nikhil0007] for the patch! 
Please update the Hive wiki for the new configuration added.

> Metastore direct sql queries with IN/(NOT IN) should be split based on max 
> parameters allowed by SQL DB
> ---
>
> Key: HIVE-25659
> URL: https://issues.apache.org/jira/browse/HIVE-25659
> Project: Hive
>  Issue Type: Bug
>  Components: Standalone Metastore
>Affects Versions: 3.1.0, 4.0.0
>Reporter: Nikhil Gupta
>Assignee: Nikhil Gupta
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 2h 40m
>  Remaining Estimate: 0h
>
> Function 
> org.apache.hadoop.hive.metastore.txn.TxnUtils#buildQueryWithINClauseStrings 
> can generate queries with huge number of parameters with very small value of 
> DIRECT_SQL_MAX_ELEMENTS_IN_CLAUSE and DIRECT_SQL_MAX_QUERY_LENGTH while 
> generating delete query for completed_compactions table
> Example:
> {code:java}
> DIRECT_SQL_MAX_ELEMENTS_IN_CLAUSE = 100
> DIRECT_SQL_MAX_QUERY_LENGTH = 10 (10 KB)
> Number of parameters in a single query = 4759
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Work logged] (HIVE-25659) Metastore direct sql queries with IN/(NOT IN) should be split based on max parameters allowed by SQL DB

2021-11-07 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/HIVE-25659?focusedWorklogId=678342&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-678342
 ]

ASF GitHub Bot logged work on HIVE-25659:
-

Author: ASF GitHub Bot
Created on: 08/Nov/21 05:51
Start Date: 08/Nov/21 05:51
Worklog Time Spent: 10m 
  Work Description: sankarh merged pull request #2758:
URL: https://github.com/apache/hive/pull/2758


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 678342)
Time Spent: 2h 40m  (was: 2.5h)

> Metastore direct sql queries with IN/(NOT IN) should be split based on max 
> parameters allowed by SQL DB
> ---
>
> Key: HIVE-25659
> URL: https://issues.apache.org/jira/browse/HIVE-25659
> Project: Hive
>  Issue Type: Bug
>  Components: Standalone Metastore
>Affects Versions: 3.1.0, 4.0.0
>Reporter: Nikhil Gupta
>Assignee: Nikhil Gupta
>Priority: Minor
>  Labels: pull-request-available
> Fix For: 4.0.0
>
>  Time Spent: 2h 40m
>  Remaining Estimate: 0h
>
> Function 
> org.apache.hadoop.hive.metastore.txn.TxnUtils#buildQueryWithINClauseStrings 
> can generate queries with huge number of parameters with very small value of 
> DIRECT_SQL_MAX_ELEMENTS_IN_CLAUSE and DIRECT_SQL_MAX_QUERY_LENGTH while 
> generating delete query for completed_compactions table
> Example:
> {code:java}
> DIRECT_SQL_MAX_ELEMENTS_IN_CLAUSE = 100
> DIRECT_SQL_MAX_QUERY_LENGTH = 10 (10 KB)
> Number of parameters in a single query = 4759
> {code}



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Work logged] (HIVE-25679) Use serdeContants collection delim in MultiDelimSerDe

2021-11-07 Thread ASF GitHub Bot (Jira)


 [ 
https://issues.apache.org/jira/browse/HIVE-25679?focusedWorklogId=678313&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-678313
 ]

ASF GitHub Bot logged work on HIVE-25679:
-

Author: ASF GitHub Bot
Created on: 07/Nov/21 21:21
Start Date: 07/Nov/21 21:21
Worklog Time Spent: 10m 
  Work Description: Stelyus opened a new pull request #2768:
URL: https://github.com/apache/hive/pull/2768


   ### What changes were proposed in this pull request?
   Before HIVE-16922, serdeConstants.collection_delim was equal to 
'colelction.delim'
   Thus we created our own collection_delim in MultiDelimSerDe with the right 
typo
   Since this has been corrected, we can now put back collection.delim from 
serdeConstants
   
   
   ### Why are the changes needed?
   Refactoring
   
   
   ### Does this PR introduce _any_ user-facing change?
   No
   
   
   ### How was this patch tested?
   Existing test
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


Issue Time Tracking
---

Worklog Id: (was: 678313)
Remaining Estimate: 0h
Time Spent: 10m

> Use serdeContants collection delim in MultiDelimSerDe
> -
>
> Key: HIVE-25679
> URL: https://issues.apache.org/jira/browse/HIVE-25679
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Franck Thang
>Assignee: Franck Thang
>Priority: Minor
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Since collection.delim typo has been fixed in HIVE-16922, we can use now 
> collection delim from Constants in MultiDelimSerde



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Updated] (HIVE-25679) Use serdeContants collection delim in MultiDelimSerDe

2021-11-07 Thread ASF GitHub Bot (Jira)


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

ASF GitHub Bot updated HIVE-25679:
--
Labels: pull-request-available  (was: )

> Use serdeContants collection delim in MultiDelimSerDe
> -
>
> Key: HIVE-25679
> URL: https://issues.apache.org/jira/browse/HIVE-25679
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Franck Thang
>Assignee: Franck Thang
>Priority: Minor
>  Labels: pull-request-available
>  Time Spent: 10m
>  Remaining Estimate: 0h
>
> Since collection.delim typo has been fixed in HIVE-16922, we can use now 
> collection delim from Constants in MultiDelimSerde



--
This message was sent by Atlassian Jira
(v8.20.1#820001)


[jira] [Assigned] (HIVE-25679) Use serdeContants collection delim in MultiDelimSerDe

2021-11-07 Thread Franck Thang (Jira)


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

Franck Thang reassigned HIVE-25679:
---


> Use serdeContants collection delim in MultiDelimSerDe
> -
>
> Key: HIVE-25679
> URL: https://issues.apache.org/jira/browse/HIVE-25679
> Project: Hive
>  Issue Type: Improvement
>Affects Versions: 3.0.0
>Reporter: Franck Thang
>Assignee: Franck Thang
>Priority: Minor
>
> Since collection.delim typo has been fixed in HIVE-16922, we can use now 
> collection delim from Constants in MultiDelimSerde



--
This message was sent by Atlassian Jira
(v8.20.1#820001)