Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
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
4 changes: 0 additions & 4 deletions docs/sql-ref-scripting.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,6 @@ This is followed by the compound statement body, which consists of:
- The [EXECUTE IMMEDIATE](sql-ref-syntax-aux-exec-imm.html) statement.
- Nested compound statements, which provide nested scopes for variables, conditions, and condition handlers.

## Enablement

To enable SQL Scripting, set the `spark.sql.scripting.enabled` flag to `true`.

## Passing data between the invoker and the compound statement

There are two ways to pass data to and from a SQL script:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4336,7 +4336,7 @@ object SQLConf {
"flow and error handling.")
.version("4.0.0")
.booleanConf
.createWithDefault(false)
.createWithDefault(true)

val SQL_SCRIPTING_CONTINUE_HANDLER_ENABLED =
buildConf("spark.sql.scripting.continueHandlerEnabled")
Expand Down