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 isDEFINER.
default_max_bytes_in_join
Maximum size of right-side table if limit is required butmax_bytes_in_join is not set.
default_normal_view_sql_security
Allows to set defaultSQL SECURITY option while creating a normal view. More about SQL security.
The default value is INVOKER.
default_table_engine
Default table engine to use whenENGINE is not set in a CREATE statement.
Possible values:
- a string representing any valid table engine name
SharedMergeTree.
Example
Query:
Engine will use the Log table engine:
Query:
default_temporary_table_engine
Same as default_table_engine but for temporary tables. In this example, any new temporary table that does not specify anEngine will use the Log table engine:
Query:
default_view_definer
Allows to set defaultDEFINER option while creating a view. More about SQL security.
The default value is CURRENT_USER.