mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
sql_updatable_view_key replaced with updatable_views_with_limit
now default behaviour do not prevent any updates of view. Also updating VIEWs of queries without LIMIT clause will not be checked at all (there will not be even warning) (changes according to discussion on last dev-conf) mysql-test/r/view.result: sql_updatable_view_key replaced with updatable_views_with_limit, default behaviour changed mysql-test/t/view.test: sql_updatable_view_key replaced with updatable_views_with_limit, default behaviour changed sql/mysqld.cc: sql_updatable_view_key replaced with updatable_views_with_limit, default behaviour changed sql/set_var.cc: sql_updatable_view_key replaced with updatable_views_with_limit, default behaviour changed sql/sql_class.h: sql_updatable_view_key replaced with updatable_views_with_limit, default behaviour changed sql/sql_view.cc: sql_updatable_view_key replaced with updatable_views_with_limit, default behaviour changed sql/sql_view.h: sql_updatable_view_key replaced with updatable_views_with_limit, default behaviour changed
This commit is contained in:
@ -408,7 +408,7 @@ struct system_variables
|
||||
/* Determines which non-standard SQL behaviour should be enabled */
|
||||
ulong sql_mode;
|
||||
/* check of key presence in updatable view */
|
||||
ulong sql_updatable_view_key;
|
||||
ulong updatable_views_with_limit;
|
||||
ulong default_week_format;
|
||||
ulong max_seeks_for_key;
|
||||
ulong range_alloc_block_size;
|
||||
|
Reference in New Issue
Block a user