-
Notifications
You must be signed in to change notification settings - Fork 172
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
Use case class ParsedDeltaSharingTablePath as return type for parsePath #388
Conversation
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.
LGTM
@@ -841,7 +847,7 @@ object DeltaSharingRestClient extends Logging { | |||
* Parse the user provided path `profile_file#share.schema.share` to |
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.
Update comment?
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.
updated.
@@ -74,6 +74,12 @@ trait DeltaSharingClient { | |||
def getProfileProvider: DeltaSharingProfileProvider = null | |||
} | |||
|
|||
case class ParsedDeltaSharingTablePath( |
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.
Consider documenting this class.
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.
@chakankardb added in another PR.
@@ -65,6 +65,7 @@ private[sharing] class DeltaSharingFileSystem extends FileSystem { | |||
|
|||
override def getUri(): URI = URI.create(s"$SCHEME:///") | |||
|
|||
// delta-sharing:/// |
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.
This comment is not clear. Consider expanding on it.
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.
updated.
Use case class ParsedDeltaSharingTablePath instead of tuple as return type for parsePath, this is part of #341