We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 844f4ca commit d31f180Copy full SHA for d31f180
sql/core/src/test/scala/org/apache/spark/sql/execution/UnsafeExternalSortSuite.scala
@@ -38,7 +38,7 @@ class UnsafeExternalSortSuite extends SparkPlanTest with BeforeAndAfterAll {
38
39
// Test sorting on different data types
40
for (
41
- dataType <- DataTypeTestUtils.atomicTypes // Disable null type for now due to bug in SqlSerializer2 ++ Set(NullType);
+ dataType <- DataTypeTestUtils.atomicTypes ++ Set(NullType)
42
if !dataType.isInstanceOf[DecimalType]; // Since we don't have an unsafe representation for decimals
43
nullable <- Seq(true, false);
44
sortOrder <- Seq('a.asc :: Nil, 'a.desc :: Nil);
0 commit comments