pyflink.table.environment_settings.EnvironmentSettings.Builder.with_built_in_database_name#
- Builder.with_built_in_database_name(built_in_database_name: str) pyflink.table.environment_settings.EnvironmentSettings.Builder #
Specifies the name of the default database in the initial catalog to be created when instantiating a
TableEnvironment
.This database is an in-memory database that will be used to store all temporary objects (e.g. from
create_temporary_view()
orcreate_temporary_system_function()
) that cannot be persisted because they have no serializable representation.It will also be the initial value for the current catalog which can be altered via
use_catalog()
.Default: “default_database”.
- Parameters
built_in_database_name – The specified built-in database name.
- Returns
This object.