• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

ExpediaGroup / drone-fly / #138

25 Mar 2026 06:43PM UTC coverage: 34.545% (-21.6%) from 56.14%
#138

push

web-flow
Merge b3b9b43f3 into f8782bb73

12 of 164 new or added lines in 14 files covered. (7.32%)

133 of 385 relevant lines covered (34.55%)

0.35 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/drone-fly-app/src/main/java/org/apache/hadoop/hive/metastore/HiveMetaStore.java
1
/**
2
 * Copyright (C) 2020-2026 Expedia, Inc.
3
 *
4
 * Licensed under the Apache License, Version 2.0 (the "License");
5
 * you may not use this file except in compliance with the License.
6
 * You may obtain a copy of the License at
7
 *
8
 * http://www.apache.org/licenses/LICENSE-2.0
9
 *
10
 * Unless required by applicable law or agreed to in writing, software
11
 * distributed under the License is distributed on an "AS IS" BASIS,
12
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
 * See the License for the specific language governing permissions and
14
 * limitations under the License.
15
 */
16
package org.apache.hadoop.hive.metastore;
17

18
import org.apache.hadoop.conf.Configuration;
19
import org.apache.hadoop.hive.metastore.api.MetaException;
20

21
/**
22
 * Compatibility shim that re-introduces {@code HiveMetaStore.HMSHandler} as an inner class. In Hive
23
 * 4.x, {@code HMSHandler} became a standalone top-level class and the inner class was removed.
24
 * Libraries compiled against Hive 3.x (e.g. apiary-hive-events <= 8.1.15) still reference {@code
25
 * HiveMetaStore$HMSHandler}, so this shim restores it.
26
 */
NEW
27
public class HiveMetaStore {
×
28

29
  public static class HMSHandler extends org.apache.hadoop.hive.metastore.HMSHandler {
30
    public HMSHandler(String name, Configuration conf) throws MetaException {
NEW
31
      super(name, conf);
×
NEW
32
    }
×
33
  }
34
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc