aboutsummaryrefslogtreecommitdiff
path: root/sql/core/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'sql/core/src/test')
-rw-r--r--sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala13
1 files changed, 6 insertions, 7 deletions
diff --git a/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala b/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
index a170fae577..26e1a9f75d 100644
--- a/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
+++ b/sql/core/src/test/scala/org/apache/spark/sql/ColumnExpressionSuite.scala
@@ -508,18 +508,17 @@ class ColumnExpressionSuite extends QueryTest with SharedSQLContext {
Row("ab", "cde"))
}
- test("monotonicallyIncreasingId") {
+ test("monotonically_increasing_id") {
// Make sure we have 2 partitions, each with 2 records.
val df = sparkContext.parallelize(Seq[Int](), 2).mapPartitions { _ =>
Iterator(Tuple1(1), Tuple1(2))
}.toDF("a")
checkAnswer(
- df.select(monotonicallyIncreasingId()),
- Row(0L) :: Row(1L) :: Row((1L << 33) + 0L) :: Row((1L << 33) + 1L) :: Nil
- )
- checkAnswer(
- df.select(expr("monotonically_increasing_id()")),
- Row(0L) :: Row(1L) :: Row((1L << 33) + 0L) :: Row((1L << 33) + 1L) :: Nil
+ df.select(monotonically_increasing_id(), expr("monotonically_increasing_id()")),
+ Row(0L, 0L) ::
+ Row(1L, 1L) ::
+ Row((1L << 33) + 0L, (1L << 33) + 0L) ::
+ Row((1L << 33) + 1L, (1L << 33) + 1L) :: Nil
)
}