[MINOR][SQL][DOCS] Correct the 'options' description on UnresolvedRelation

### What changes were proposed in this pull request?

This PR fixes the 'options' description on `UnresolvedRelation`. This comment was added in https://github.com/apache/spark/pull/29535 but not valid anymore because V1 also uses this `options` (and merge the options with the table properties) per https://github.com/apache/spark/pull/29712.

This PR can go through from `master` to `branch-3.1`.

### Why are the changes needed?

To make `UnresolvedRelation.options`'s description clearer.

### Does this PR introduce _any_ user-facing change?

No, dev-only.

### How was this patch tested?

Scala linter by `dev/linter-scala`.

Closes #34075 from HyukjinKwon/minor-comment-unresolved-releation.

Authored-by: Hyukjin Kwon <gurwls223@apache.org>
Signed-off-by: Huaxin Gao <huaxin_gao@apple.com>
(cherry picked from commit 0076eba8d0)
Signed-off-by: Huaxin Gao <huaxin_gao@apple.com>
This commit is contained in:
Hyukjin Kwon 2021-09-22 23:00:15 -07:00 committed by Huaxin Gao
parent d4050d7ee9
commit af569d1b0a

View file

@ -41,7 +41,7 @@ class UnresolvedException(function: String)
* Holds the name of a relation that has yet to be looked up in a catalog. * Holds the name of a relation that has yet to be looked up in a catalog.
* *
* @param multipartIdentifier table name * @param multipartIdentifier table name
* @param options options to scan this relation. Only applicable to v2 table scan. * @param options options to scan this relation.
*/ */
case class UnresolvedRelation( case class UnresolvedRelation(
multipartIdentifier: Seq[String], multipartIdentifier: Seq[String],