Skip to content

Commit

Permalink
Elide empty comments in HiveColumnHandle
Browse files Browse the repository at this point in the history
This makes plans less verbose.
  • Loading branch information
raghavsethi committed Nov 7, 2017
1 parent 9f23635 commit edef5e5
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -173,7 +173,8 @@ public String toString()
.add("hiveType", hiveType)
.add("hiveColumnIndex", hiveColumnIndex)
.add("columnType", columnType)
.add("comment", comment)
.add("comment", comment.orElse(null))
.omitNullValues()
.toString();
}

Expand Down

0 comments on commit edef5e5

Please sign in to comment.