Return whether a given key is set in this SQLConf.
Return all the configuration properties that have been set (i.e.
Return all the configuration properties that have been set (i.e. not the default). This creates a new copy of the config properties in the form of a Map.
Return all the configuration definitions that have been defined in SQLConf.
Return the value of an optional Spark SQL configuration property for the given key.
Return the value of an optional Spark SQL configuration property for the given key. If the key is not set yet, returns None.
Return the value of Spark SQL configuration property for the given key.
Return the value of Spark SQL configuration property for the given key. If the key is not set
yet, return defaultValue
in ConfigEntry.
Return the value of Spark SQL configuration property for the given key.
Return the value of Spark SQL configuration property for the given key. If the key is not set
yet, return defaultValue
. This is useful when defaultValue
in ConfigEntry is not the
desired one.
Return the string
value of Spark SQL configuration property for the given key.
Return the string
value of Spark SQL configuration property for the given key. If the key is
not set yet, return defaultValue
.
Return the value of Spark SQL configuration property for the given key.
Return the value of Spark SQL configuration property for the given key.
************************ Spark SQL Params/Hints *******************
************************ Spark SQL Params/Hints *******************
Returns the Resolver for the current configuration, which can be used to determine if two identifiers are equal.
Returns the Resolver for the current configuration, which can be used to determine if two identifiers are equal.
Set the given Spark SQL configuration property.
Set the given Spark SQL configuration property.
Set Spark SQL configuration properties.
Set Spark SQL configuration properties.
Set the given Spark SQL configuration property using a string
value.
Set the given Spark SQL configuration property using a string
value.
Only low degree of contention is expected for conf, thus NOT using ConcurrentHashMap.
Only low degree of contention is expected for conf, thus NOT using ConcurrentHashMap.
A SQLConf that can be used for local testing. This class is only here to minimize the change for ticket SPARK-19944 (moves SQLConf from sql/core to sql/catalyst). This class should eventually be removed (test cases should just create SQLConf and set values appropriately).