abstract class SparkSession extends Serializable with Closeable
The entry point to programming Spark with the Dataset and DataFrame API.
In environments that this has been created upfront (e.g. REPL, notebooks), use the builder to get an existing session:
SparkSession.builder().getOrCreate()
The builder can also be used to create a new session:
SparkSession.builder .master("local") .appName("Word Count") .config("spark.some.config.option", "some-value") .getOrCreate()
- Source
- SparkSession.scala
- Alphabetic
- By Inheritance
- SparkSession
- Closeable
- AutoCloseable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
-  new SparkSession()
Abstract Value Members
-   abstract  def addArtifact(source: String, target: String): UnitAdd a single artifact to the session while preserving the directory structure specified by targetunder the session's working directory of that particular file extension.Add a single artifact to the session while preserving the directory structure specified by targetunder the session's working directory of that particular file extension.Supported target file extensions are .jar and .class. ExampleaddArtifact("/Users/dummyUser/files/foo/bar.class", "foo/bar.class") addArtifact("/Users/dummyUser/files/flat.class", "flat.class") // Directory structure of the session's working directory for class files would look like: // ${WORKING_DIR_FOR_CLASS_FILES}/flat.class // ${WORKING_DIR_FOR_CLASS_FILES}/foo/bar.class - Annotations
- @Experimental()
- Since
- 4.0.0 
 
-   abstract  def addArtifact(bytes: Array[Byte], target: String): UnitAdd a single in-memory artifact to the session while preserving the directory structure specified by targetunder the session's working directory of that particular file extension.Add a single in-memory artifact to the session while preserving the directory structure specified by targetunder the session's working directory of that particular file extension.Supported target file extensions are .jar and .class. ExampleaddArtifact(bytesBar, "foo/bar.class") addArtifact(bytesFlat, "flat.class") // Directory structure of the session's working directory for class files would look like: // ${WORKING_DIR_FOR_CLASS_FILES}/flat.class // ${WORKING_DIR_FOR_CLASS_FILES}/foo/bar.class - Annotations
- @Experimental()
- Since
- 4.0.0 
 
-   abstract  def addArtifact(uri: URI): UnitAdd a single artifact to the current session. Add a single artifact to the current session. Currently it supports local files with extensions .jar and .class and Apache Ivy URIs. - Annotations
- @Experimental()
- Since
- 4.0.0 
 
-   abstract  def addArtifact(path: String): UnitAdd a single artifact to the current session. Add a single artifact to the current session. Currently only local files with extensions .jar and .class are supported. - Annotations
- @Experimental()
- Since
- 4.0.0 
 
-   abstract  def addArtifacts(uri: URI*): UnitAdd one or more artifacts to the session. Add one or more artifacts to the session. Currently it supports local files with extensions .jar and .class and Apache Ivy URIs - Annotations
- @Experimental() @varargs()
- Since
- 4.0.0 
 
-   abstract  def addTag(tag: String): UnitAdd a tag to be assigned to all the operations started by this thread in this session. Add a tag to be assigned to all the operations started by this thread in this session. Often, a unit of execution in an application consists of multiple Spark executions. Application programmers can use this method to group all those jobs together and give a group tag. The application can use org.apache.spark.sql.SparkSession.interruptTagto cancel all running executions with this tag. For example:// In the main thread: spark.addTag("myjobs") spark.range(10).map(i => { Thread.sleep(10); i }).collect() // In a separate thread: spark.interruptTag("myjobs") There may be multiple tags present at the same time, so different parts of application may use different tags to perform cancellation at different levels of granularity. - tag
- The tag to be added. Cannot contain ',' (comma) character or be an empty string. 
 - Since
- 4.0.0 
 
-   abstract  def baseRelationToDataFrame(baseRelation: BaseRelation): DataFrameConvert a BaseRelationcreated for external data sources into aDataFrame.Convert a BaseRelationcreated for external data sources into aDataFrame.- Annotations
- @ClassicOnly()
- Since
- 2.0.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def catalog: CatalogInterface through which the user may create, drop, alter or query underlying databases, tables, functions etc. Interface through which the user may create, drop, alter or query underlying databases, tables, functions etc. - Since
- 2.0.0 
 
-   abstract  def clearTags(): UnitClear the current thread's operation tags. Clear the current thread's operation tags. - Since
- 4.0.0 
 
-   abstract  def close(): Unit- Definition Classes
- Closeable → AutoCloseable
- Annotations
- @throws(classOf[java.io.IOException])
 
-   abstract  def conf: RuntimeConfigRuntime configuration interface for Spark. Runtime configuration interface for Spark. This is the interface through which the user can get and set all Spark and Hadoop configurations that are relevant to Spark SQL. When getting the value of a config, this defaults to the value set in the underlying SparkContext, if any.- Since
- 2.0.0 
 
-   abstract  def createDataFrame(rdd: JavaRDD[_], beanClass: Class[_]): DataFrameApplies a schema to an RDD of Java Beans. Applies a schema to an RDD of Java Beans. WARNING: Since there is no guaranteed ordering for fields in a Java Bean, SELECT * queries will return the columns in an undefined order. - Annotations
- @ClassicOnly()
- Since
- 2.0.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def createDataFrame(rdd: RDD[_], beanClass: Class[_]): DataFrameApplies a schema to an RDD of Java Beans. Applies a schema to an RDD of Java Beans. WARNING: Since there is no guaranteed ordering for fields in a Java Bean, SELECT * queries will return the columns in an undefined order. - Annotations
- @ClassicOnly()
- Since
- 2.0.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def createDataFrame(rowRDD: JavaRDD[Row], schema: StructType): DataFrame:: DeveloperApi :: Creates a DataFramefrom aJavaRDDcontaining org.apache.spark.sql.Rows using the given schema.:: DeveloperApi :: Creates a DataFramefrom aJavaRDDcontaining org.apache.spark.sql.Rows using the given schema. It is important to make sure that the structure of every org.apache.spark.sql.Row of the provided RDD matches the provided schema. Otherwise, there will be runtime exception.- Annotations
- @ClassicOnly() @DeveloperApi()
- Since
- 2.0.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def createDataFrame(rowRDD: RDD[Row], schema: StructType): DataFrame:: DeveloperApi :: Creates a DataFramefrom anRDDcontaining org.apache.spark.sql.Rows using the given schema.:: DeveloperApi :: Creates a DataFramefrom anRDDcontaining org.apache.spark.sql.Rows using the given schema. It is important to make sure that the structure of every org.apache.spark.sql.Row of the provided RDD matches the provided schema. Otherwise, there will be runtime exception. Example:import org.apache.spark.sql._ import org.apache.spark.sql.types._ val sparkSession = new org.apache.spark.sql.SparkSession(sc) val schema = StructType( StructField("name", StringType, false) :: StructField("age", IntegerType, true) :: Nil) val people = sc.textFile("examples/src/main/resources/people.txt").map( _.split(",")).map(p => Row(p(0), p(1).trim.toInt)) val dataFrame = sparkSession.createDataFrame(people, schema) dataFrame.printSchema // root // |-- name: string (nullable = false) // |-- age: integer (nullable = true) dataFrame.createOrReplaceTempView("people") sparkSession.sql("select name from people").collect.foreach(println) - Annotations
- @ClassicOnly() @DeveloperApi()
- Since
- 2.0.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def createDataFrame[A <: Product](rdd: RDD[A])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[A]): DataFrameCreates a DataFramefrom an RDD of Product (e.g.Creates a DataFramefrom an RDD of Product (e.g. case classes, tuples).- Annotations
- @ClassicOnly()
- Since
- 2.0.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def createDataFrame(data: List[_], beanClass: Class[_]): DataFrameApplies a schema to a List of Java Beans. Applies a schema to a List of Java Beans. WARNING: Since there is no guaranteed ordering for fields in a Java Bean, SELECT * queries will return the columns in an undefined order. - Since
- 1.6.0 
 
-   abstract  def createDataFrame(rows: List[Row], schema: StructType): DataFrame:: DeveloperApi :: Creates a DataFramefrom ajava.util.Listcontaining org.apache.spark.sql.Rows using the given schema.It is important to make sure that the structure of every org.apache.spark.sql.Row of the provided List matches the provided schema.:: DeveloperApi :: Creates a DataFramefrom ajava.util.Listcontaining org.apache.spark.sql.Rows using the given schema.It is important to make sure that the structure of every org.apache.spark.sql.Row of the provided List matches the provided schema. Otherwise, there will be runtime exception.- Annotations
- @DeveloperApi()
- Since
- 2.0.0 
 
-   abstract  def createDataFrame[A <: Product](data: Seq[A])(implicit arg0: scala.reflect.api.JavaUniverse.TypeTag[A]): DataFrameCreates a DataFramefrom a local Seq of Product.Creates a DataFramefrom a local Seq of Product.- Since
- 2.0.0 
 
-   abstract  def createDataset[T](data: RDD[T])(implicit arg0: Encoder[T]): Dataset[T]Creates a Dataset from an RDD of a given type. Creates a Dataset from an RDD of a given type. This method requires an encoder (to convert a JVM object of type Tto and from the internal Spark SQL representation) that is generally created automatically through implicits from aSparkSession, or can be created explicitly by calling static methods onEncoders.- Annotations
- @ClassicOnly()
- Since
- 2.0.0 
- Note
- this method is not supported in Spark Connect. 
 
-   abstract  def createDataset[T](data: List[T])(implicit arg0: Encoder[T]): Dataset[T]Creates a Dataset from a java.util.Listof a given type.Creates a Dataset from a java.util.Listof a given type. This method requires an encoder (to convert a JVM object of typeTto and from the internal Spark SQL representation) that is generally created automatically through implicits from aSparkSession, or can be created explicitly by calling static methods onEncoders.Java ExampleList<String> data = Arrays.asList("hello", "world"); Dataset<String> ds = spark.createDataset(data, Encoders.STRING()); - Since
- 2.0.0 
 
-   abstract  def createDataset[T](data: Seq[T])(implicit arg0: Encoder[T]): Dataset[T]Creates a Dataset from a local Seq of data of a given type. Creates a Dataset from a local Seq of data of a given type. This method requires an encoder (to convert a JVM object of type Tto and from the internal Spark SQL representation) that is generally created automatically through implicits from aSparkSession, or can be created explicitly by calling static methods onEncoders.Exampleimport spark.implicits._ case class Person(name: String, age: Long) val data = Seq(Person("Michael", 29), Person("Andy", 30), Person("Justin", 19)) val ds = spark.createDataset(data) ds.show() // +-------+---+ // | name|age| // +-------+---+ // |Michael| 29| // | Andy| 30| // | Justin| 19| // +-------+---+ - Since
- 2.0.0 
 
-   abstract  def emptyDataFrame: DataFrameReturns a DataFramewith no rows or columns.Returns a DataFramewith no rows or columns.- Annotations
- @transient()
- Since
- 2.0.0 
 
-   abstract  def emptyDataset[T](implicit arg0: Encoder[T]): Dataset[T]Creates a new Dataset of type T containing zero elements. Creates a new Dataset of type T containing zero elements. - Since
- 2.0.0 
 
-   abstract  def executeCommand(runner: String, command: String, options: Map[String, String]): DataFrameExecute an arbitrary string command inside an external execution engine rather than Spark. Execute an arbitrary string command inside an external execution engine rather than Spark. This could be useful when user wants to execute some commands out of Spark. For example, executing custom DDL/DML command for JDBC, creating index for ElasticSearch, creating cores for Solr and so on. The command will be eagerly executed after this method is called and the returned DataFrame will contain the output of the command(if any). - runner
- The class name of the runner that implements - ExternalCommandRunner.
- command
- The target command to be executed 
- options
- The options for the runner. 
 - Annotations
- @Unstable()
- Since
- 3.0.0 
 
-   abstract  def experimental: ExperimentalMethods:: Experimental :: A collection of methods that are considered experimental, but can be used to hook into the query planner for advanced functionality. :: Experimental :: A collection of methods that are considered experimental, but can be used to hook into the query planner for advanced functionality. - Annotations
- @ClassicOnly() @Experimental() @Unstable()
- Since
- 2.0.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def getTags(): Set[String]Get the operation tags that are currently set to be assigned to all the operations started by this thread in this session. Get the operation tags that are currently set to be assigned to all the operations started by this thread in this session. - Since
- 4.0.0 
 
-   abstract  val implicits: SQLImplicits(Scala-specific) Implicit methods available in Scala for converting common Scala objects into DataFrames.(Scala-specific) Implicit methods available in Scala for converting common Scala objects into DataFrames.val sparkSession = SparkSession.builder.getOrCreate() import sparkSession.implicits._ - Since
- 2.0.0 
 
-   abstract  def interruptAll(): Seq[String]Request to interrupt all currently running operations of this session. Request to interrupt all currently running operations of this session. - returns
- Sequence of operation IDs requested to be interrupted. 
 - Since
- 4.0.0 
- Note
- This method will wait up to 60 seconds for the interruption request to be issued. 
 
-   abstract  def interruptOperation(operationId: String): Seq[String]Request to interrupt an operation of this session, given its operation ID. Request to interrupt an operation of this session, given its operation ID. - returns
- The operation ID requested to be interrupted, as a single-element sequence, or an empty sequence if the operation is not started by this session. 
 - Since
- 4.0.0 
- Note
- This method will wait up to 60 seconds for the interruption request to be issued. 
 
-   abstract  def interruptTag(tag: String): Seq[String]Request to interrupt all currently running operations of this session with the given job tag. Request to interrupt all currently running operations of this session with the given job tag. - returns
- Sequence of operation IDs requested to be interrupted. 
 - Since
- 4.0.0 
- Note
- This method will wait up to 60 seconds for the interruption request to be issued. 
 
-   abstract  def listenerManager: ExecutionListenerManagerAn interface to register custom org.apache.spark.sql.util.QueryExecutionListenersthat listen for execution metrics.An interface to register custom org.apache.spark.sql.util.QueryExecutionListenersthat listen for execution metrics.- Annotations
- @ClassicOnly()
- Since
- 2.0.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def newSession(): SparkSessionStart a new session with isolated SQL configurations, temporary tables, registered functions are isolated, but sharing the underlying SparkContextand cached data.Start a new session with isolated SQL configurations, temporary tables, registered functions are isolated, but sharing the underlying SparkContextand cached data.- Since
- 2.0.0 
- Note
- Other than the - SparkContext, all shared state is initialized lazily. This method will force the initialization of the shared state to ensure that parent and child sessions are set up with the same shared state. If the underlying catalog implementation is Hive, this will initialize the metastore, which may take some time.
 
-   abstract  def range(start: Long, end: Long, step: Long, numPartitions: Int): Dataset[Long]Creates a Dataset with a single LongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with a step value, with partition number specified.Creates a Dataset with a single LongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with a step value, with partition number specified.- Since
- 2.0.0 
 
-   abstract  def range(start: Long, end: Long, step: Long): Dataset[Long]Creates a Dataset with a single LongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with a step value.Creates a Dataset with a single LongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with a step value.- Since
- 2.0.0 
 
-   abstract  def range(start: Long, end: Long): Dataset[Long]Creates a Dataset with a single LongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with step value 1.Creates a Dataset with a single LongTypecolumn namedid, containing elements in a range fromstarttoend(exclusive) with step value 1.- Since
- 2.0.0 
 
-   abstract  def range(end: Long): Dataset[Long]Creates a Dataset with a single LongTypecolumn namedid, containing elements in a range from 0 toend(exclusive) with step value 1.Creates a Dataset with a single LongTypecolumn namedid, containing elements in a range from 0 toend(exclusive) with step value 1.- Since
- 2.0.0 
 
-   abstract  def read: DataFrameReaderReturns a DataFrameReader that can be used to read non-streaming data in as a DataFrame.Returns a DataFrameReader that can be used to read non-streaming data in as a DataFrame.sparkSession.read.parquet("/path/to/file.parquet") sparkSession.read.schema(schema).json("/path/to/file.json") - Since
- 2.0.0 
 
-   abstract  def readStream: DataStreamReaderReturns a DataStreamReaderthat can be used to read streaming data in as aDataFrame.Returns a DataStreamReaderthat can be used to read streaming data in as aDataFrame.sparkSession.readStream.parquet("/path/to/directory/of/parquet/files") sparkSession.readStream.schema(schema).json("/path/to/directory/of/json/files") - Since
- 2.0.0 
 
-   abstract  def removeTag(tag: String): UnitRemove a tag previously added to be assigned to all the operations started by this thread in this session. Remove a tag previously added to be assigned to all the operations started by this thread in this session. Noop if such a tag was not added earlier. - tag
- The tag to be removed. Cannot contain ',' (comma) character or be an empty string. 
 - Since
- 4.0.0 
 
-   abstract  def sessionState: SessionStateState isolated across sessions, including SQL configurations, temporary tables, registered functions, and everything else that accepts a org.apache.spark.sql.internal.SQLConf.State isolated across sessions, including SQL configurations, temporary tables, registered functions, and everything else that accepts a org.apache.spark.sql.internal.SQLConf. IfparentSessionStateis not null, theSessionStatewill be a copy of the parent.This is internal to Spark and there is no guarantee on interface stability. - Annotations
- @ClassicOnly() @Unstable() @transient()
- Since
- 2.2.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def sharedState: SharedStateState shared across sessions, including the SparkContext, cached data, listener, and a catalog that interacts with external systems.State shared across sessions, including the SparkContext, cached data, listener, and a catalog that interacts with external systems.This is internal to Spark and there is no guarantee on interface stability. - Annotations
- @ClassicOnly() @Unstable() @transient()
- Since
- 2.2.0 
- Note
- this is only supported in Classic. 
 
-   abstract  def sparkContext: SparkContextThe Spark context associated with this Spark session. The Spark context associated with this Spark session. - Annotations
- @ClassicOnly()
- Note
- this is only supported in Classic. 
 
-   abstract  def sql(sqlText: String, args: Map[String, Any]): DataFrameExecutes a SQL query substituting named parameters by the given arguments, returning the result as a DataFrame.Executes a SQL query substituting named parameters by the given arguments, returning the result as a DataFrame. This API eagerly runs DDL/DML commands, but not for SELECT queries.- sqlText
- A SQL statement with named parameters to execute. 
- args
- A map of parameter names to Java/Scala objects that can be converted to SQL literal expressions. See Supported Data Types for supported value types in Scala/Java. For example, map keys: "rank", "name", "birthdate"; map values: 1, "Steven", LocalDate.of(2023, 4, 2). Map value can be also a - Columnof a literal or collection constructor functions such as- map(),- array(),- struct(), in that case it is taken as is.
 - Since
- 3.4.0 
 
-   abstract  def sql(sqlText: String, args: Array[_]): DataFrameExecutes a SQL query substituting positional parameters by the given arguments, returning the result as a DataFrame.Executes a SQL query substituting positional parameters by the given arguments, returning the result as a DataFrame. This API eagerly runs DDL/DML commands, but not for SELECT queries.- sqlText
- A SQL statement with positional parameters to execute. 
- args
- An array of Java/Scala objects that can be converted to SQL literal expressions. See <a href="https://spark.apache.org/docs/latest/sql-ref-datatypes.html"> Supported Data Types for supported value types in Scala/Java. For example, 1, "Steven", LocalDate.of(2023, 4, 2). A value can be also a - Columnof a literal or collection constructor functions such as- map(),- array(),- struct(), in that case it is taken as is.
 - Since
- 3.5.0 
 
-   abstract  def sqlContext: SQLContextA wrapped version of this session in the form of a SQLContext, for backward compatibility.A wrapped version of this session in the form of a SQLContext, for backward compatibility.- Annotations
- @transient()
- Since
- 2.0.0 
 
-   abstract  def streams: StreamingQueryManagerReturns a StreamingQueryManagerthat allows managing all theStreamingQuerys active onthis.Returns a StreamingQueryManagerthat allows managing all theStreamingQuerys active onthis.- Annotations
- @Unstable()
- Since
- 2.0.0 
 
-   abstract  def table(tableName: String): DataFrameReturns the specified table/view as a DataFrame.Returns the specified table/view as a DataFrame. If it's a table, it must support batch reading and the returned DataFrame is the batch scan query plan of this table. If it's a view, the returned DataFrame is simply the query plan of the view, which can either be a batch or streaming query plan.- tableName
- is either a qualified or unqualified name that designates a table or view. If a database is specified, it identifies the table/view from the database. Otherwise, it first attempts to find a temporary view with the given name and then match the table/view from the current database. Note that, the global temporary view database is also valid here. 
 - Since
- 2.0.0 
 
-   abstract  def tvf: TableValuedFunctionReturns a TableValuedFunction that can be used to call a table-valued function (TVF). Returns a TableValuedFunction that can be used to call a table-valued function (TVF). - Since
- 4.0.0 
 
-   abstract  def udf: UDFRegistrationA collection of methods for registering user-defined functions (UDF). A collection of methods for registering user-defined functions (UDF). The following example registers a Scala closure as UDF: sparkSession.udf.register("myUDF", (arg1: Int, arg2: String) => arg2 + arg1) The following example registers a UDF in Java: sparkSession.udf().register("myUDF", (Integer arg1, String arg2) -> arg2 + arg1, DataTypes.StringType); - Since
- 2.0.0 
- Note
- The user-defined functions must be deterministic. Due to optimization, duplicate invocations may be eliminated or the function may even be invoked more times than it is present in the query. 
 
-   abstract  def version: StringThe version of Spark on which this application is running. The version of Spark on which this application is running. - Since
- 2.0.0 
 
Concrete Value Members
-   final  def !=(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def ##: Int- Definition Classes
- AnyRef → Any
 
-   final  def ==(arg0: Any): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def asInstanceOf[T0]: T0- Definition Classes
- Any
 
-    def clone(): AnyRef- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
 
-   final  def eq(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-    def equals(arg0: AnyRef): Boolean- Definition Classes
- AnyRef → Any
 
-   final  def getClass(): Class[_ <: AnyRef]- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
 
-    def hashCode(): Int- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
 
-   final  def isInstanceOf[T0]: Boolean- Definition Classes
- Any
 
-   final  def ne(arg0: AnyRef): Boolean- Definition Classes
- AnyRef
 
-   final  def notify(): Unit- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
 
-   final  def notifyAll(): Unit- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
 
-    def sql(sqlText: String): DataFrameExecutes a SQL query using Spark, returning the result as a DataFrame.Executes a SQL query using Spark, returning the result as a DataFrame. This API eagerly runs DDL/DML commands, but not for SELECT queries.- Since
- 2.0.0 
 
-    def sql(sqlText: String, args: Map[String, Any]): DataFrameExecutes a SQL query substituting named parameters by the given arguments, returning the result as a DataFrame.Executes a SQL query substituting named parameters by the given arguments, returning the result as a DataFrame. This API eagerly runs DDL/DML commands, but not for SELECT queries.- sqlText
- A SQL statement with named parameters to execute. 
- args
- A map of parameter names to Java/Scala objects that can be converted to SQL literal expressions. See Supported Data Types for supported value types in Scala/Java. For example, map keys: "rank", "name", "birthdate"; map values: 1, "Steven", LocalDate.of(2023, 4, 2). Map value can be also a - Columnof a literal or collection constructor functions such as- map(),- array(),- struct(), in that case it is taken as is.
 - Since
- 3.4.0 
 
-    def stop(): UnitSynonym for close().Synonym for close().- Since
- 2.0.0 
 
-   final  def synchronized[T0](arg0: => T0): T0- Definition Classes
- AnyRef
 
-    def time[T](f: => T): TExecutes some code block and prints to stdout the time taken to execute the block. Executes some code block and prints to stdout the time taken to execute the block. This is available in Scala only and is used primarily for interactive testing and debugging. - Since
- 2.1.0 
 
-    def toString(): String- Definition Classes
- AnyRef → Any
 
-   final  def wait(arg0: Long, arg1: Int): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-   final  def wait(arg0: Long): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
 
-   final  def wait(): Unit- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
 
-    def withActive[T](block: => T): TExecute a block of code with this session set as the active session, and restore the previous session on completion. Execute a block of code with this session set as the active session, and restore the previous session on completion. - Annotations
- @DeveloperApi()
 
Deprecated Value Members
-    def finalize(): Unit- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
- (Since version 9)