1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
|
/* Copyright (c) 2016, 2025, Oracle and/or its affiliates.
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License, version 2.0,
as published by the Free Software Foundation.
This program is designed to work with certain software (including
but not limited to OpenSSL) that is licensed under separate terms,
as designated in a particular file or component or in included license
documentation. The authors of MySQL hereby grant you an additional
permission to link the program and your derivative works with the
separately licensed software that they have either included with
the program or referenced in the documentation.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License, version 2.0, for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA */
#include "sql/dd_sql_view.h"
#include <string.h>
#include <sys/types.h>
#include <set>
#include <vector>
#include "lex_string.h"
#include "m_ctype.h" // my_casedn_str
#include "my_dbug.h"
#include "my_inttypes.h"
#include "my_sqlcommand.h"
#include "my_sys.h"
#include "mysql/components/services/log_builtins.h"
#include "mysqld_error.h"
#include "sql/auth/auth_common.h"
#include "sql/dd/cache/dictionary_client.h" // dd::cache::Dictionary_client
#include "sql/dd/dd.h" // dd::get_dictionary
#include "sql/dd/dd_view.h" // dd::update_view_status
#include "sql/dd/dictionary.h" // is_dd_schema_name
#include "sql/dd/object_id.h"
#include "sql/dd/string_type.h"
#include "sql/dd/types/schema.h"
#include "sql/dd/types/view.h"
#include "sql/debug_sync.h"
#include "sql/derror.h" // ER_THD
#include "sql/error_handler.h" // Internal_error_handler
#include "sql/handler.h" // HA_LEX_CREATE_TMP_TABLE
#include "sql/mdl.h"
#include "sql/mysqld.h" // lower_case_table_names
#include "sql/set_var.h"
#include "sql/sp_head.h" // sp_name
#include "sql/sql_alter.h" // Alter_info
#include "sql/sql_base.h" // open_tables
#include "sql/sql_class.h"
#include "sql/sql_const.h"
#include "sql/sql_db.h" // check_schema_readonly
#include "sql/sql_error.h"
#include "sql/sql_lex.h" // LEX
#include "sql/sql_view.h" // mysql_register_view
#include "sql/strfunc.h"
#include "sql/system_variables.h"
#include "sql/table.h" // Table_ref
#include "sql/thd_raii.h"
#include "sql/transaction.h"
#include "thr_lock.h"
namespace dd {
class View_routine;
class View_table;
} // namespace dd
/**
RAII class to set the context for View_metadata_updater.
*/
class View_metadata_updater_context {
public:
View_metadata_updater_context(THD *thd) : m_thd(thd) {
// Save sql mode and set sql_mode to 0 in view metadata update context.
m_saved_sql_mode = thd->variables.sql_mode;
m_thd->variables.sql_mode = 0;
// Save current lex and create temporary lex object.
m_saved_lex = m_thd->lex;
m_thd->lex = new (m_thd->mem_root) st_lex_local;
lex_start(m_thd);
m_thd->lex->sql_command = SQLCOM_SHOW_FIELDS;
// Backup open tables state.
m_open_tables_state_backup.set_open_tables_state(m_thd);
m_thd->reset_open_tables_state();
m_thd->state_flags |= (Open_tables_state::BACKUPS_AVAIL);
}
~View_metadata_updater_context() {
// Close all the tables which are opened till now.
close_thread_tables(m_thd);
// Restore sql mode.
m_thd->variables.sql_mode = m_saved_sql_mode;
// Restore open tables state.
m_thd->set_open_tables_state(&m_open_tables_state_backup);
// Restore lex.
m_thd->lex->cleanup(true);
m_thd->lex->destroy();
lex_end(m_thd->lex);
delete static_cast<st_lex_local *>(m_thd->lex);
m_thd->lex = m_saved_lex;
// While opening views, there is chance of hitting deadlock error. Returning
// error in this case and resetting transaction_rollback_request here.
m_thd->transaction_rollback_request = false;
}
private:
// Thread handle
THD *m_thd;
// sql mode
sql_mode_t m_saved_sql_mode;
// LEX object.
LEX *m_saved_lex;
// Open_tables_backup
Open_tables_backup m_open_tables_state_backup;
};
/**
A error handler to convert all the errors except deadlock, lock wait
timeout and stack overrun to ER_VIEW_INVALID while updating views metadata.
Even a warning ER_NO_SUCH_USER generated for non-existing user is handled with
the error handler.
*/
class View_metadata_updater_error_handler final
: public Internal_error_handler {
public:
bool handle_condition(THD *, uint sql_errno, const char *,
Sql_condition::enum_severity_level *,
const char *msg) override {
switch (sql_errno) {
case ER_LOCK_WAIT_TIMEOUT:
case ER_LOCK_DEADLOCK:
case ER_STACK_OVERRUN_NEED_MORE:
if (m_log_error)
LogEvent()
.type(LOG_TYPE_ERROR)
.subsys(LOG_SUBSYSTEM_TAG)
.prio(ERROR_LEVEL)
.errcode(ER_ERROR_INFO_FROM_DA)
.verbatim(msg);
break;
case ER_NO_SUCH_USER:
m_sql_errno = ER_NO_SUCH_USER;
break;
default:
m_sql_errno = ER_VIEW_INVALID;
break;
}
return is_view_error_handled();
}
bool is_view_invalid() const { return m_sql_errno == ER_VIEW_INVALID; }
bool is_view_error_handled() const {
/*
Other errors apart from ER_LOCK_DEADLOCK and ER_LOCK_WAIT_TIMEOUT are
handled as ER_VIEW_INVALID. Warning ER_NO_SUCH_USER is generated but
m_sql_errno is not set to ER_VIEW_INVALID.
*/
return m_sql_errno == ER_NO_SUCH_USER || m_sql_errno == ER_VIEW_INVALID;
}
public:
View_metadata_updater_error_handler() {
m_log_error = (error_handler_hook == my_message_stderr);
/*
When error_handler_hook is set to my_message_stderr (e.g, during server
startup) error handler is not invoked. To invoke this error handler,
switching error_handler_hook to my_message_sql() here. my_message_sql()
invokes this error handler and flag m_log_error makes sure that errors are
logged to error log file.
*/
m_old_error_handler_hook = error_handler_hook;
error_handler_hook = my_message_sql;
}
~View_metadata_updater_error_handler() override {
error_handler_hook = m_old_error_handler_hook;
}
private:
ErrorHandlerFunctionPointer m_old_error_handler_hook;
private:
uint m_sql_errno = 0;
bool m_log_error = false;
};
Uncommitted_tables_guard::~Uncommitted_tables_guard() {
for (const Table_ref *table : m_uncommitted_tables) {
tdc_remove_table(m_thd, TDC_RT_REMOVE_ALL, table->get_db_name(),
table->get_table_name(), false);
}
}
/**
Prepare Table_ref object for views referencing Base Table/ View/ Stored
routine "db.tbl_or_sf_name".
@tparam T Type of object (View_table/View_routine) to fetch
view names from.
@param thd Current thread.
@param db Database name.
@param tbl_or_sf_name Base table/ View/ Stored function name.
@param skip_same_db Indicates whether it is OK to skip
views belonging to the same database
as table (as they will be dropped anyway).
@param mem_root Memory root for allocation of temporary
objects which will be cleared after
processing this table/view/routine.
@param[out] views Table_ref objects for views.
@retval false Success.
@retval true Failure.
*/
template <typename T>
static bool prepare_view_tables_list(THD *thd, const char *db,
const char *tbl_or_sf_name,
bool skip_same_db, MEM_ROOT *mem_root,
std::vector<Table_ref *> *views) {
DBUG_TRACE;
std::vector<dd::Object_id> view_ids;
std::set<dd::Object_id> prepared_view_ids;
// Fetch all views using db.tbl_or_sf_name (Base table/ View/ Stored function)
if (thd->dd_client()->fetch_referencing_views_object_id<T>(db, tbl_or_sf_name,
&view_ids))
return true;
for (uint idx = 0; idx < view_ids.size(); idx++) {
dd::cache::Dictionary_client::Auto_releaser releaser(thd->dd_client());
dd::String_type view_name;
dd::String_type schema_name;
// Get schema name and view name from the object id of the view.
{
std::unique_ptr<dd::View> view;
// We need to use READ_UNCOMMITTED here as the view could be changed
// by the same statement (e.g. RENAME TABLE).
if (thd->dd_client()->acquire_uncached_uncommitted(view_ids.at(idx),
&view))
return true;
if (!view) continue;
std::unique_ptr<dd::Schema> schema;
if (thd->dd_client()->acquire_uncached_uncommitted(view->schema_id(),
&schema))
return true;
if (!schema) continue;
view_name = view->name();
schema_name = schema->name();
}
if (skip_same_db) {
/*
DROP DATABASE acquires exclusive metadata lock on database being
dropped. So we have guarantee that dependent view belonging to
the same database won't be moved into other database using
RENAME TABLE or doing DROP/CREATE. Hence it is safe to skip
view belonging to the database being dropped even if we don't
have any lock on it yet.
*/
assert(thd->mdl_context.owns_equal_or_stronger_lock(MDL_key::SCHEMA, db,
"", MDL_EXCLUSIVE));
if (my_strcasecmp(table_alias_charset, db, schema_name.c_str()) == 0)
continue;
}
// If Table_ref object is already prepared for view name then skip it.
if (prepared_view_ids.find(view_ids.at(idx)) == prepared_view_ids.end()) {
// Prepare Table_ref object for the view and push_back
char *db_name =
strmake_root(mem_root, schema_name.c_str(), schema_name.length());
if (db_name == nullptr) return true;
char *vw_name =
strmake_root(mem_root, view_name.c_str(), view_name.length());
if (vw_name == nullptr) return true;
/*
With l_c_t_n == 2, the original lettercase is stored in the DD, so we
need to convert to lowercase to make sure we always lock with the same
lettercase. Note that there is an exception for information schema
view names, where the convention is to use capital letters, as stored
in the DD.
*/
if (lower_case_table_names == 2) {
my_casedn_str(system_charset_info, db_name);
if (!is_infoschema_db(db_name))
my_casedn_str(system_charset_info, vw_name);
}
auto vw = new (mem_root)
Table_ref(db_name, schema_name.length(), vw_name, view_name.length(),
TL_IGNORE, MDL_EXCLUSIVE);
if (vw == nullptr) return true;
views->push_back(vw);
prepared_view_ids.insert(view_ids.at(idx));
// Fetch all views using schema_name.view_name
if (thd->dd_client()->fetch_referencing_views_object_id<dd::View_table>(
schema_name.c_str(), view_name.c_str(), &view_ids))
return true;
}
}
return false;
}
/**
Helper method to mark all views state as invalid.
If operation is drop operation then view referencing it becomes invalid.
This method is called to mark state of all the referencing views as invalid
in such case.
@tparam T Type of object (View_table/View_routine)
to fetch view names from.
@param thd Current thread.
@param db Database name.
@param tbl_or_sf_name Base table/ View/ Stored function name.
@param views_list Table_ref objects of the referencing
views.
@param skip_same_db Indicates whether it is OK to skip
views belonging to the same database
as table (as they will be dropped
anyway).
@param commit_dd_changes Indicates whether changes to DD need
to be committed.
@param mem_root Memory root for allocation of temporary
objects which will be cleared after
processing referenced table/view/routine.
@retval false Success.
@retval true Failure.
*/
template <typename T>
static bool mark_all_views_invalid(THD *thd, const char *db,
const char *tbl_or_sf_name,
const std::vector<Table_ref *> *views_list,
bool skip_same_db, bool commit_dd_changes,
MEM_ROOT *mem_root) {
DBUG_TRACE;
assert(!views_list->empty());
// Acquire lock on all the views.
MDL_request_list mdl_requests;
for (auto view : *views_list) {
MDL_request *schema_request = new (mem_root) MDL_request;
;
MDL_REQUEST_INIT(schema_request, MDL_key::SCHEMA, view->db, "",
MDL_INTENTION_EXCLUSIVE, MDL_STATEMENT);
mdl_requests.push_front(schema_request);
mdl_requests.push_front(&view->mdl_request);
}
if (thd->mdl_context.acquire_locks(&mdl_requests,
thd->variables.lock_wait_timeout))
return true;
// Check schema read only for all views.
for (auto view : *views_list) {
if (check_schema_readonly(thd, view->db)) return true;
}
/*
In the time gap of listing referencing views and acquiring MDL lock on them
if any view definition is updated or dropped then it should not be
considered for state update.
Hence preparing updated list of view tables after acquiring the lock.
*/
std::vector<Table_ref *> updated_views_list;
if (prepare_view_tables_list<T>(thd, db, tbl_or_sf_name, skip_same_db,
mem_root, &updated_views_list))
return true;
if (updated_views_list.empty()) return false;
// Update state of the views as invalid.
for (auto view : *views_list) {
// Update status of the view if it is listed in the updated_views_list.
bool update_status = false;
for (auto vw : updated_views_list) {
if (!strcmp(view->get_db_name(), vw->get_db_name()) &&
!strcmp(view->get_table_name(), vw->get_table_name())) {
update_status = true;
break;
}
}
// Update Table.options.view_valid as false(invalid).
if (update_status &&
dd::update_view_status(thd, view->get_db_name(), view->get_table_name(),
false, commit_dd_changes))
return true;
}
return false;
}
/**
Helper method to
- Mark view as invalid if DDL operation leaves the view in
invalid state.
- Open all the views from the Table_ref vector and
recreates the view metadata.
@param thd Thread handle.
@param views Table_ref objects of the views.
@param commit_dd_changes Indicates whether changes to DD need
to be committed.
@param[in,out] uncommitted_tables Helper class to store list of views
which shares need to be removed from
TDC if we fail to commit changes to
DD. Only used if commit_dd_changes
is false.
@retval false Success.
@retval true Failure.
*/
static bool open_views_and_update_metadata(
THD *thd, const std::vector<Table_ref *> *views, bool commit_dd_changes,
Uncommitted_tables_guard *uncommitted_tables) {
DBUG_TRACE;
if (!commit_dd_changes) {
/*
If we don't plan to commit changes to the data-dictionary in this
function we need to keep locks on views to be updated until the
statement end. Because of this we need to acquire them before
View_metadata_updater_context takes effect.
*/
for (auto view : *views) {
MDL_request view_request, schema_request;
MDL_REQUEST_INIT(&schema_request, MDL_key::SCHEMA, view->db, "",
MDL_INTENTION_EXCLUSIVE, MDL_STATEMENT);
if (thd->mdl_context.acquire_lock(&schema_request,
thd->variables.lock_wait_timeout))
return true;
MDL_REQUEST_INIT_BY_KEY(&view_request, &view->mdl_request.key,
MDL_EXCLUSIVE, MDL_STATEMENT);
if (thd->mdl_context.acquire_lock(&view_request,
thd->variables.lock_wait_timeout))
return true;
}
}
// Check schema read only for all views.
for (auto view : *views) {
if (check_schema_readonly(thd, view->db)) return true;
}
for (auto view : *views) {
View_metadata_updater_context vw_metadata_update_context(thd);
View_metadata_updater_error_handler error_handler;
thd->push_internal_handler(&error_handler);
DBUG_EXECUTE_IF("enable_stack_overrun_simulation",
{ DBUG_SET("+d,simulate_stack_overrun"); });
// This needs to be after View_metadata_updater_context so that
// objects are released before metadata locks are dropped.
dd::cache::Dictionary_client::Auto_releaser releaser(thd->dd_client());
/*
Open view.
Do not open tables which are not already in Table Cache in SE,
as this might mean that, for example, this table is in the
process of being ALTERed (by the thread which called our
function), so its definition which we are going to use for
opening is not committed/usable with SE.
*/
uint counter = 0;
DML_prelocking_strategy prelocking_strategy;
view->query_block = thd->lex->query_block;
/*
open_tables() will normally switch the current memory allocation context
from the execution context to the prepared statement context, if
such context is active. However, open_views_and_update_metadata() should
be done only as part of a single execution, and will be fully cleaned up
as part of that execution.
The following code forces the preparation code in open_tables() to
be performed on the execution mem_root, regardless of the current
embedding memory allocation context.
*/
MEM_ROOT *saved_arena_mem_root = thd->stmt_arena->mem_root;
thd->stmt_arena->mem_root = thd->mem_root;
if (open_tables(thd, &view, &counter, MYSQL_OPEN_NO_NEW_TABLE_IN_SE,
&prelocking_strategy)) {
thd->stmt_arena->mem_root = saved_arena_mem_root;
thd->pop_internal_handler();
if (error_handler.is_view_invalid()) {
if (view->mdl_request.ticket != nullptr) {
// Update view status in tables.options.view_valid.
if (dd::update_view_status(thd, view->get_db_name(),
view->get_table_name(), false,
commit_dd_changes))
return true;
}
} else if (error_handler.is_view_error_handled() == false) {
// ER_STACK_OVERRUN_NEED_MORE, ER_LOCK_DEADLOCK or
// ER_LOCK_WAIT_TIMEOUT.
DBUG_EXECUTE_IF("enable_stack_overrun_simulation",
{ DBUG_SET("-d,simulate_stack_overrun"); });
return true;
}
continue;
}
thd->stmt_arena->mem_root = saved_arena_mem_root;
if (view->is_view() == false) {
// In between listing views and locking(opening), if view is dropped and
// created as table then skip it.
thd->pop_internal_handler();
continue;
}
/* Prepare select to resolve all fields */
LEX *view_lex = view->view_query();
LEX *org_lex = thd->lex;
thd->lex = view_lex;
view_lex->context_analysis_only |= CONTEXT_ANALYSIS_ONLY_VIEW;
if (view_lex->unit->prepare(thd, nullptr, nullptr, 0, 0)) {
thd->lex = org_lex;
thd->pop_internal_handler();
// Please refer comments in the view open error handling block above.
if (error_handler.is_view_invalid()) {
// Update view status in tables.options.view_valid.
if (dd::update_view_status(thd, view->get_db_name(),
view->get_table_name(), false,
commit_dd_changes))
return true;
} else if (error_handler.is_view_error_handled() == false) {
// ER_STACK_OVERRUN_NEED_MORE, ER_LOCK_DEADLOCK or
// ER_LOCK_WAIT_TIMEOUT.
return true;
}
continue;
}
thd->pop_internal_handler();
/*
If we are not going commit changes immediately we need to ensure
that entries for uncommitted views are removed from TDC on error/
rollback. Add view which we about to update to the helper class
for TDC invalidation.
*/
if (!commit_dd_changes) uncommitted_tables->add_table(view);
// Prepare view query from the Item-tree built using original query.
const CHARSET_INFO *view_client_cs;
resolve_charset(view->view_client_cs_name.str, system_charset_info,
&view_client_cs);
char view_query_buff[4096];
String view_query(view_query_buff, sizeof(view_query_buff), view_client_cs);
view_query.length(0);
if (thd->lex->unit->is_mergeable() &&
view->algorithm != VIEW_ALGORITHM_TEMPTABLE) {
for (ORDER *order = thd->lex->query_block->order_list.first; order;
order = order->next)
order->used_alias = false; /// @see Item::print_for_order()
}
Sql_mode_parse_guard parse_guard(thd);
thd->lex->unit->print(
thd, &view_query,
static_cast<enum_query_type>(QT_TO_ARGUMENT_CHARSET |
QT_HIDE_ROLLUP_FUNCTIONS));
if (lex_string_strmake(thd->mem_root, &view->select_stmt, view_query.ptr(),
view_query.length()))
return true;
// Update view metadata in the data-dictionary tables.
view->updatable_view = is_updatable_view(thd, view);
dd::View *new_view = nullptr;
if (thd->dd_client()->acquire_for_modification(view->db, view->table_name,
&new_view))
return true;
assert(new_view != nullptr);
bool res = dd::update_view(thd, new_view, view);
if (commit_dd_changes) {
Implicit_substatement_state_guard substatement_guard(thd);
if (res) {
trans_rollback_stmt(thd);
// Full rollback in case we have THD::transaction_rollback_request.
trans_rollback(thd);
} else
res = trans_commit_stmt(thd) || trans_commit(thd);
}
if (res) {
thd->lex = org_lex;
return true;
}
tdc_remove_table(thd, TDC_RT_REMOVE_ALL, view->get_db_name(),
view->get_table_name(), false);
thd->lex = org_lex;
}
DEBUG_SYNC(thd, "after_updating_view_metadata");
return false;
}
/**
Helper method to check if view metadata update is required for the DDL
operation.
@param thd Thread handle.
@param db Database name.
@param name Base table/ View/ Stored routine name.
@retval true if view metadata update is required.
@retval false if view metadata update is NOT required.
*/
static bool is_view_metadata_update_needed(THD *thd, const char *db,
const char *name) {
DBUG_TRACE;
/*
View metadata update is needed if table is not a temporary or dictionary
table.
*/
auto is_non_dictionary_or_temp_table = [=]() {
bool is_tmp_table =
(thd->lex->sql_command == SQLCOM_CREATE_TABLE)
? (thd->lex->create_info->options & HA_LEX_CREATE_TMP_TABLE)
: (find_temporary_table(thd, db, name) != nullptr);
return (!is_tmp_table && !dd::get_dictionary()->is_dd_table_name(db, name));
};
bool retval = false;
switch (thd->lex->sql_command) {
case SQLCOM_CREATE_TABLE:
retval = is_non_dictionary_or_temp_table();
break;
case SQLCOM_ALTER_TABLE: {
assert(thd->lex->alter_info);
// Alter operations which affects view column metadata.
const uint alter_operations =
(Alter_info::ALTER_ADD_COLUMN | Alter_info::ALTER_DROP_COLUMN |
Alter_info::ALTER_CHANGE_COLUMN | Alter_info::ALTER_RENAME |
Alter_info::ALTER_OPTIONS | Alter_info::ALTER_CHANGE_COLUMN_DEFAULT);
retval = is_non_dictionary_or_temp_table() &&
(thd->lex->alter_info->flags & alter_operations);
break;
}
case SQLCOM_DROP_TABLE:
case SQLCOM_RENAME_TABLE:
case SQLCOM_DROP_DB:
retval = is_non_dictionary_or_temp_table();
break;
case SQLCOM_CREATE_VIEW:
case SQLCOM_DROP_VIEW:
case SQLCOM_CREATE_SPFUNCTION:
case SQLCOM_DROP_FUNCTION:
case SQLCOM_INSTALL_PLUGIN:
case SQLCOM_UNINSTALL_PLUGIN:
retval = true;
break;
default:
break;
}
return retval;
}
/**
Helper method to update referencing view's metadata.
@tparam T Type of object (View_table/View_routine)
to fetch referencing view names.
@param thd Current thread.
@param db Database name.
@param tbl_or_sf_name Base table/ View/ Stored function name.
@param commit_dd_changes Indicates whether changes to DD need
to be committed.
@param[in,out] uncommitted_tables Helper class to store list of views
which shares need to be removed from
TDC if we fail to commit changes to
DD. Only used if commit_dd_changes
is false.
@retval false Success.
@retval true Failure.
*/
template <typename T>
static bool update_view_metadata(THD *thd, const char *db,
const char *tbl_or_sf_name,
bool commit_dd_changes,
Uncommitted_tables_guard *uncommitted_tables) {
if (is_view_metadata_update_needed(thd, db, tbl_or_sf_name)) {
// Prepare list of all views referencing the db.table_name.
std::vector<Table_ref *> views;
if (prepare_view_tables_list<T>(thd, db, tbl_or_sf_name, false,
thd->mem_root, &views))
return true;
if (views.empty()) return false;
bool is_drop_operation = (thd->lex->sql_command == SQLCOM_DROP_TABLE ||
thd->lex->sql_command == SQLCOM_DROP_VIEW ||
thd->lex->sql_command == SQLCOM_DROP_FUNCTION ||
thd->lex->sql_command == SQLCOM_DROP_DB ||
thd->lex->sql_command == SQLCOM_UNINSTALL_PLUGIN);
// If operation is drop operation then view referencing it becomes invalid.
// Hence mark all view as invalid.
if (is_drop_operation)
return mark_all_views_invalid<T>(thd, db, tbl_or_sf_name, &views, false,
commit_dd_changes, thd->mem_root);
/*
Open views and update views metadata.
Note that these updates will be done atomically with the main part of
DDL statement only if main part DDL statement itself is atomic (i.e.
storage engine involved supports atomic DDL).
Otherwise, there is a possibility of things going out of sync in fatal
error or crash scenarios. We will consider handling this case atomically
as part of WL#9446.
*/
if (open_views_and_update_metadata(thd, &views, commit_dd_changes,
uncommitted_tables))
return true;
}
return false;
}
static bool update_referencing_views_metadata(
THD *thd, const char *db, const char *table_name, const char *new_db,
const char *new_table_name, bool commit_dd_changes,
Uncommitted_tables_guard *uncommitted_tables) {
DBUG_TRACE;
// Update metadata for view's referencing table.
if (is_view_metadata_update_needed(thd, db, table_name)) {
// Prepare list of all views referencing the table.
if (update_view_metadata<dd::View_table>(
thd, db, table_name, commit_dd_changes, uncommitted_tables))
return true;
// Open views and update views metadata.
if (new_db != nullptr && new_table_name != nullptr &&
update_view_metadata<dd::View_table>(
thd, new_db, new_table_name, commit_dd_changes, uncommitted_tables))
return true;
}
return false;
}
bool update_referencing_views_metadata(
THD *thd, const Table_ref *table, const char *new_db,
const char *new_table_name, bool commit_dd_changes,
Uncommitted_tables_guard *uncommitted_tables) {
DBUG_TRACE;
assert(table != nullptr);
bool error = update_referencing_views_metadata(
thd, table->get_db_name(), table->get_table_name(), new_db,
new_table_name, commit_dd_changes, uncommitted_tables);
return error;
}
bool update_referencing_views_metadata(
THD *thd, const Table_ref *table, bool commit_dd_changes,
Uncommitted_tables_guard *uncommitted_tables) {
return update_referencing_views_metadata(
thd, table, nullptr, nullptr, commit_dd_changes, uncommitted_tables);
}
bool update_referencing_views_metadata(
THD *thd, const char *db_name, const char *table_name,
bool commit_dd_changes, Uncommitted_tables_guard *uncommitted_tables) {
DBUG_TRACE;
assert(db_name && table_name);
bool error = update_referencing_views_metadata(
thd, db_name, table_name, nullptr, nullptr, commit_dd_changes,
uncommitted_tables);
return error;
}
bool update_referencing_views_metadata(THD *thd, const sp_name *spname) {
DBUG_TRACE;
assert(spname);
/*
Updates to view metadata for DDL on stored routines does not include
any changes to non-atomic SE. Hence transaction is not committed in
the update_view_metadata().
*/
Uncommitted_tables_guard uncommitted_tables(thd);
bool error = update_view_metadata<dd::View_routine>(
thd, spname->m_db.str, spname->m_name.str, false, &uncommitted_tables);
return error;
}
/**
Helper method to mark referencing views as invalid.
@tparam T Type of object (View_table/View_routine)
to fetch referencing view names.
@param thd Current thread.
@param db Database name.
@param tbl_or_sf_name Base table/ View/ Stored function name.
@param skip_same_db Indicates whether it is OK to skip
views belonging to the same database
as table (as they will be dropped
anyway).
@param commit_dd_changes Indicates whether changes to DD need
to be committed.
@param mem_root Memory root for allocation of temporary
objects which will be cleared after
each call to this function.
@retval false Success.
@retval true Failure.
*/
template <typename T>
static bool mark_referencing_views_invalid(THD *thd, const char *db,
const char *tbl_or_sf_name,
bool skip_same_db,
bool commit_dd_changes,
MEM_ROOT *mem_root) {
std::vector<Table_ref *> views;
if (prepare_view_tables_list<T>(thd, db, tbl_or_sf_name, skip_same_db,
mem_root, &views))
return true;
if (views.empty()) return false;
DEBUG_SYNC(thd, "after_preparing_view_tables_list");
return mark_all_views_invalid<T>(thd, db, tbl_or_sf_name, &views,
skip_same_db, commit_dd_changes, mem_root);
}
bool mark_referencing_views_invalid(THD *thd, const Table_ref *table,
bool skip_same_db, bool commit_dd_changes,
MEM_ROOT *mem_root) {
DBUG_TRACE;
const char *db_name = table->get_db_name();
const char *table_name = table->get_table_name();
// Don't mark referencing view invalid if we drop dictionary table.
if (dd::get_dictionary()->is_dd_table_name(db_name, table_name)) return false;
return mark_referencing_views_invalid<dd::View_table>(
thd, db_name, table_name, skip_same_db, commit_dd_changes, mem_root);
}
bool mark_referencing_views_invalid(THD *thd, const sp_name *spname,
MEM_ROOT *mem_root) {
/*
DROP DATABASE always drops routines atomically so we don't need to commit
transaction here. Also since DROP DATABASE drops routines views are dropped
there is no point in using skip-views-in-the-same-db optimization here.
*/
return mark_referencing_views_invalid<dd::View_routine>(
thd, spname->m_db.str, spname->m_name.str, false, false, mem_root);
}
std::string push_view_warning_or_error(THD *thd, const char *db,
const char *view_name) {
// Report error for "SHOW FIELDS/DESCRIBE" operations.
if (thd->lex->sql_command == SQLCOM_SHOW_FIELDS)
my_error(ER_VIEW_INVALID, MYF(0), db, view_name);
else
// Push invalid view warning.
push_warning_printf(thd, Sql_condition::SL_WARNING, ER_VIEW_INVALID,
ER_THD(thd, ER_VIEW_INVALID), db, view_name);
/*
We can probably fetch the error message string from DA. The problem
is, the DA may not contain the condition if max_error_count is zero.
Even if max_error_count is non-zero, we have to fetch the last sql
condition from QA. Instead (as this is error handling code) to keep it
simple, we just prepare the error/warning string.
*/
char err_message[MYSQL_ERRMSG_SIZE];
sprintf(err_message, ER_THD(thd, ER_VIEW_INVALID), db, view_name);
return std::string(err_message);
}
|