Skip to content
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
Next Next commit
Match the types with the tests with/without string promotion
  • Loading branch information
HyukjinKwon committed Feb 13, 2017
commit 6a414a0742e00380e7a89a2ff21632a442bb91d9
Original file line number Diff line number Diff line change
Expand Up @@ -432,7 +432,7 @@ class TypeCoercionSuite extends PlanTest {
widenTestWithoutStringPromotion(ArrayType(StringType), ArrayType(TimestampType), None)

// String promotion
widenTestWithStringPromotion(LongType, StringType, Some(StringType))
widenTestWithStringPromotion(IntegerType, StringType, Some(StringType))
widenTestWithStringPromotion(StringType, TimestampType, Some(StringType))
widenTestWithStringPromotion(
ArrayType(LongType), ArrayType(StringType), Some(ArrayType(StringType)))
Expand Down