-
Notifications
You must be signed in to change notification settings - Fork 281
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Yingjianw/JDK 17 Upgrade #620
base: master
Are you sure you want to change the base?
Yingjianw/JDK 17 Upgrade #620
Conversation
1e0534f
to
ee79858
Compare
use thrift with fast service additional fix add back polaris test
ee79858
to
b1bea50
Compare
4669819
to
221d279
Compare
@@ -24,9 +24,9 @@ | |||
import lombok.EqualsAndHashCode; | |||
import lombok.Getter; | |||
import lombok.NonNull; | |||
import org.checkerframework.checker.nullness.qual.Nullable; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we want javax.annotation.Nullable (jakarta when we move to SBN3)
@@ -56,7 +56,7 @@ public class HiveConnectorFactory extends SpringConnectorFactory { | |||
connectorContext.getConfiguration() | |||
.getOrDefault(HiveConfigConstants.USE_EMBEDDED_METASTORE, "false") | |||
); | |||
final boolean useFastHiveService = useLocalMetastore && Boolean.parseBoolean( | |||
final boolean useFastHiveService = Boolean.parseBoolean( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need this anymore? I feel we should remove the embedded HMS entirely given it won't work anymore on SBN3.
@@ -19,7 +19,7 @@ | |||
|
|||
import com.fasterxml.jackson.annotation.JsonCreator; | |||
import com.fasterxml.jackson.annotation.JsonValue; | |||
import com.google.common.base.Preconditions; | |||
//import com.google.common.base.Preconditions; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious what is the issue with Preconditions on java 17?
https://guava.dev/releases/17.0/api/docs/index.html?com/google/common/base/Preconditions.html
No description provided.