haridsv commented on PR #2379:
URL: https://github.com/apache/phoenix/pull/2379#issuecomment-4160748836
I see a generics compiler warning that can be fixed with the following
change:
```
-public class PhoenixSyncTableInputFormat extends PhoenixInputFormat {
+public class PhoenixSyncTableInputFormat extends
PhoenixInputFormat<DBWritable> {
```
The existing code also has a couple of warnings that can be fixed:
```
-public class PhoenixServerBuildIndexInputFormat<T extends DBWritable>
extends PhoenixInputFormat {
+public class PhoenixServerBuildIndexInputFormat<T extends DBWritable>
extends PhoenixInputFormat<T> {
```
```
- extends PhoenixServerBuildIndexInputFormat {
+ extends PhoenixServerBuildIndexInputFormat<T> {
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]