Skip to main content
These settings are available in system.settings and are autogenerated from source.

default_materialized_view_sql_security

Allows to set a default value for SQL SECURITY option when creating a materialized view. More about SQL security. The default value is DEFINER.

default_max_bytes_in_join

Maximum size of right-side table if limit is required but max_bytes_in_join is not set.

default_normal_view_sql_security

Allows to set default SQL SECURITY option while creating a normal view. More about SQL security. The default value is INVOKER.

default_table_engine

Default table engine to use when ENGINE is not set in a CREATE statement. Possible values:
  • a string representing any valid table engine name
Cloud default value: SharedMergeTree. Example Query:
Result:
In this example, any new table that does not specify an Engine will use the Log table engine: Query:
Result:

default_temporary_table_engine

Same as default_table_engine but for temporary tables. In this example, any new temporary table that does not specify an Engine will use the Log table engine: Query:
Result:

default_view_definer

Allows to set default DEFINER option while creating a view. More about SQL security. The default value is CURRENT_USER.
Last modified on July 22, 2026