Check if the database with the specified name exists. This will check the list of hive databases in the current session to see if the database exists.
Arguments
- sc
A
spark_connection
.- name
character(1)
. The name of the database to set the current database to.
Examples
if (FALSE) {
sc <- sparklyr::spark_connect(master = "local")
database_exists(sc = sc, name = "default")
database_exists(sc = sc, name = "fake_database")
}