Rajesh Balamohan created HIVE-24520:
---------------------------------------
Summary: Fix stackoverflow error in
HiveMetaStore::get_partitions_by_names
Key: HIVE-24520
URL: https://issues.apache.org/jira/browse/HIVE-24520
Project: Hive
Issue Type: Improvement
Reporter: Rajesh Balamohan
Need to fix the recursive call of the same method.
(May have been introduced as a part of
https://issues.apache.org/jira/browse/HIVE-22017)
{code:java}
@Override
@Deprecated
public List<Partition> get_partitions_by_names(final String dbName, final
String tblName,
final List<String> partNames)
throws TException {
return get_partitions_by_names(dbName, tblName, partNames);
}
{code}
--
This message was sent by Atlassian Jira
(v8.3.4#803005)