Skip to content
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

[SPARK-32592][SQL] Make DataFrameReader.table take the specified options #29535

Closed
wants to merge 9 commits into from
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
nit
  • Loading branch information
huaxingao committed Aug 31, 2020
commit a41c06af4ba4edf73a267763bd26f8fd73b13b97
Original file line number Diff line number Diff line change
Expand Up @@ -546,7 +546,7 @@ abstract class TreeNode[BaseType <: TreeNode[BaseType]] extends Product {
case Some(null) => Nil
case Some(any) => any :: Nil
case map: CaseInsensitiveStringMap => truncatedString(
map.asCaseSensitiveMap().entrySet().toArray(), "[", ", ", "]", maxFields):: Nil
map.asCaseSensitiveMap().entrySet().toArray(), "[", ", ", "]", maxFields) :: Nil
case table: CatalogTable =>
table.storage.serde match {
case Some(serde) => table.identifier :: serde :: Nil
Expand Down