tgravescs commented on a change in pull request #25558:
[SPARK-28855][CORE][ML][SQL][STREAMING] Remove outdated usages of Experimental,
Evolving annotations
URL: https://github.com/apache/spark/pull/25558#discussion_r316739293
##########
File path: sql/core/src/main/scala/org/apache/spark/sql/SQLContext.scala
##########
@@ -614,54 +591,43 @@ class SQLContext private[sql](val sparkSession:
SparkSession)
}
/**
- * :: Experimental ::
* Creates a `DataFrame` with a single `LongType` column named `id`,
containing elements
* in a range from 0 to `end` (exclusive) with step value 1.
*
* @since 1.4.1
* @group dataframe
*/
- @Experimental
- @Evolving
def range(end: Long): DataFrame = sparkSession.range(end).toDF()
/**
- * :: Experimental ::
* Creates a `DataFrame` with a single `LongType` column named `id`,
containing elements
* in a range from `start` to `end` (exclusive) with step value 1.
*
* @since 1.4.0
* @group dataframe
*/
- @Experimental
- @Evolving
def range(start: Long, end: Long): DataFrame = sparkSession.range(start,
end).toDF()
/**
- * :: Experimental ::
* Creates a `DataFrame` with a single `LongType` column named `id`,
containing elements
* in a range from `start` to `end` (exclusive) with a step value.
*
* @since 2.0.0
* @group dataframe
*/
- @Experimental
- @Evolving
def range(start: Long, end: Long, step: Long): DataFrame = {
sparkSession.range(start, end, step).toDF()
}
/**
- * :: Experimental ::
+ * :: ::
Review comment:
remove empty line?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]