The world's most popular open source database
#include <table.h>
Collaboration diagram for st_table:

Definition at line 294 of file table.h.
| st_table::st_table | ( | ) | [inline] |
| void st_table::clear_column_bitmaps | ( | void | ) |
Definition at line 3792 of file table.cc.
References st_bitmap::bitmap, bzero, st_table_share::column_bitmap_size, column_bitmaps_set(), def_read_set, def_write_set, and s.
03793 { 03794 /* 03795 Reset column read/write usage. It's identical to: 03796 bitmap_clear_all(&table->def_read_set); 03797 bitmap_clear_all(&table->def_write_set); 03798 */ 03799 bzero((char*) def_read_set.bitmap, s->column_bitmap_size*2); 03800 column_bitmaps_set(&def_read_set, &def_write_set); 03801 }
Here is the call graph for this function:

Definition at line 425 of file table.h.
References handler::column_bitmaps_signal(), file, read_set, and write_set.
Referenced by clear_column_bitmaps(), QUICK_RANGE_SELECT::init_ror_merged_scan(), mark_columns_used_by_index(), QUICK_INDEX_MERGE_SELECT::read_keys_and_merge(), handler::read_multi_range_first(), use_all_columns(), write_record(), and QUICK_RANGE_SELECT::~QUICK_RANGE_SELECT().
00427 { 00428 read_set= read_set_arg; 00429 write_set= write_set_arg; 00430 if (file) 00431 file->column_bitmaps_signal(); 00432 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void st_table::default_column_bitmaps | ( | ) | [inline] |
Definition at line 443 of file table.h.
References def_read_set, def_write_set, read_set, and write_set.
Referenced by reopen_table(), restore_column_maps_after_mark_index(), and setup_tmp_table_column_bitmaps().
00444 { 00445 read_set= &def_read_set; 00446 write_set= &def_write_set; 00447 }
Here is the caller graph for this function:

Definition at line 2516 of file table.cc.
References FALSE, field, List< T >::push_back(), and TRUE.
Referenced by Materialized_cursor::open().
02517 { 02518 /* 02519 All Item_field's created using a direct pointer to a field 02520 are fixed in Item_field constructor. 02521 */ 02522 for (Field **ptr= field; *ptr; ptr++) 02523 { 02524 Item_field *item= new Item_field(*ptr); 02525 if (!item || item_list->push_back(item)) 02526 return TRUE; 02527 } 02528 return FALSE; 02529 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void st_table::mark_auto_increment_column | ( | void | ) |
Definition at line 3897 of file table.cc.
References bitmap_set_bit(), handler::column_bitmaps_signal(), DBUG_ASSERT, Field::field_index, file, found_next_number_field, mark_columns_used_by_index_no_reset(), st_table_share::next_number_index, st_table_share::next_number_key_offset, read_set, s, and write_set.
Referenced by mark_columns_needed_for_insert().
03898 { 03899 DBUG_ASSERT(found_next_number_field); 03900 /* 03901 We must set bit in read set as update_auto_increment() is using the 03902 store() to check overflow of auto_increment values 03903 */ 03904 bitmap_set_bit(read_set, found_next_number_field->field_index); 03905 bitmap_set_bit(write_set, found_next_number_field->field_index); 03906 if (s->next_number_key_offset) 03907 mark_columns_used_by_index_no_reset(s->next_number_index, read_set); 03908 file->column_bitmaps_signal(); 03909 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void st_table::mark_columns_needed_for_delete | ( | void | ) |
Definition at line 3930 of file table.cc.
References bitmap_set_bit(), handler::column_bitmaps_signal(), field, file, HA_PRIMARY_KEY_REQUIRED_FOR_DELETE, HA_REQUIRES_KEY_COLUMNS_FOR_DELETE, handler::ha_table_flags(), mark_columns_used_by_index_no_reset(), Table_triggers_list::mark_fields_used(), MAX_KEY, PART_KEY_FLAG, st_table_share::primary_key, read_set, s, TRG_EVENT_DELETE, triggers, and handler::use_hidden_primary_key().
Referenced by mysql_delete().
03931 { 03932 if (triggers) 03933 triggers->mark_fields_used(TRG_EVENT_DELETE); 03934 if (file->ha_table_flags() & HA_REQUIRES_KEY_COLUMNS_FOR_DELETE) 03935 { 03936 Field **reg_field; 03937 for (reg_field= field ; *reg_field ; reg_field++) 03938 { 03939 if ((*reg_field)->flags & PART_KEY_FLAG) 03940 bitmap_set_bit(read_set, (*reg_field)->field_index); 03941 } 03942 file->column_bitmaps_signal(); 03943 } 03944 if (file->ha_table_flags() & HA_PRIMARY_KEY_REQUIRED_FOR_DELETE) 03945 { 03946 /* 03947 If the handler has no cursor capabilites, we have to read either 03948 the primary key, the hidden primary key or all columns to be 03949 able to do an delete 03950 */ 03951 if (s->primary_key == MAX_KEY) 03952 file->use_hidden_primary_key(); 03953 else 03954 { 03955 mark_columns_used_by_index_no_reset(s->primary_key, read_set); 03956 file->column_bitmaps_signal(); 03957 } 03958 } 03959 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void st_table::mark_columns_needed_for_insert | ( | void | ) |
Definition at line 4023 of file table.cc.
References found_next_number_field, mark_auto_increment_column(), Table_triggers_list::mark_fields_used(), TRG_EVENT_INSERT, and triggers.
Referenced by mysql_insert(), and mysql_load().
04024 { 04025 if (triggers) 04026 { 04027 /* 04028 We don't need to mark columns which are used by ON DELETE and 04029 ON UPDATE triggers, which may be invoked in case of REPLACE or 04030 INSERT ... ON DUPLICATE KEY UPDATE, since before doing actual 04031 row replacement or update write_record() will mark all table 04032 fields as used. 04033 */ 04034 triggers->mark_fields_used(TRG_EVENT_INSERT); 04035 } 04036 if (found_next_number_field) 04037 mark_auto_increment_column(); 04038 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void st_table::mark_columns_needed_for_update | ( | void | ) |
Definition at line 3980 of file table.cc.
References bitmap_set_bit(), handler::column_bitmaps_signal(), DBUG_ENTER, DBUG_VOID_RETURN, field, file, HA_PRIMARY_KEY_REQUIRED_FOR_DELETE, HA_REQUIRES_KEY_COLUMNS_FOR_DELETE, handler::ha_table_flags(), Bitmap< 64 >::is_overlapping(), mark_columns_used_by_index_no_reset(), Table_triggers_list::mark_fields_used(), MAX_KEY, merge_keys, st_table_share::primary_key, read_set, s, TRG_EVENT_UPDATE, triggers, and handler::use_hidden_primary_key().
03981 { 03982 DBUG_ENTER("mark_columns_needed_for_update"); 03983 if (triggers) 03984 triggers->mark_fields_used(TRG_EVENT_UPDATE); 03985 if (file->ha_table_flags() & HA_REQUIRES_KEY_COLUMNS_FOR_DELETE) 03986 { 03987 /* Mark all used key columns for read */ 03988 Field **reg_field; 03989 for (reg_field= field ; *reg_field ; reg_field++) 03990 { 03991 /* Merge keys is all keys that had a column refered to in the query */ 03992 if (merge_keys.is_overlapping((*reg_field)->part_of_key)) 03993 bitmap_set_bit(read_set, (*reg_field)->field_index); 03994 } 03995 file->column_bitmaps_signal(); 03996 } 03997 if (file->ha_table_flags() & HA_PRIMARY_KEY_REQUIRED_FOR_DELETE) 03998 { 03999 /* 04000 If the handler has no cursor capabilites, we have to read either 04001 the primary key, the hidden primary key or all columns to be 04002 able to do an update 04003 */ 04004 if (s->primary_key == MAX_KEY) 04005 file->use_hidden_primary_key(); 04006 else 04007 { 04008 mark_columns_used_by_index_no_reset(s->primary_key, read_set); 04009 file->column_bitmaps_signal(); 04010 } 04011 } 04012 DBUG_VOID_RETURN; 04013 }
Here is the call graph for this function:

| void st_table::mark_columns_used_by_index | ( | uint | index | ) |
Definition at line 3838 of file table.cc.
References bitmap_clear_all, column_bitmaps_set(), DBUG_ENTER, DBUG_VOID_RETURN, handler::extra(), file, HA_EXTRA_KEYREAD, mark_columns_used_by_index_no_reset(), and tmp_set.
Referenced by QUICK_RANGE_SELECT::init_ror_merged_scan().
03839 { 03840 MY_BITMAP *bitmap= &tmp_set; 03841 DBUG_ENTER("st_table::mark_columns_used_by_index"); 03842 03843 (void) file->extra(HA_EXTRA_KEYREAD); 03844 bitmap_clear_all(bitmap); 03845 mark_columns_used_by_index_no_reset(index, bitmap); 03846 column_bitmaps_set(bitmap, bitmap); 03847 DBUG_VOID_RETURN; 03848 }
Here is the call graph for this function:

Here is the caller graph for this function:

Definition at line 3878 of file table.cc.
References bitmap_set_bit(), st_key_part_info::fieldnr, key_info, st_key::key_part, and st_key::key_parts.
Referenced by handler::get_auto_increment(), mark_auto_increment_column(), mark_columns_needed_for_delete(), mark_columns_needed_for_update(), mark_columns_used_by_index(), prepare_for_position(), and handler::read_multi_range_first().
03880 { 03881 KEY_PART_INFO *key_part= key_info[index].key_part; 03882 KEY_PART_INFO *key_part_end= (key_part + 03883 key_info[index].key_parts); 03884 for (;key_part != key_part_end; key_part++) 03885 bitmap_set_bit(bitmap, key_part->fieldnr-1); 03886 }
Here is the call graph for this function:

Here is the caller graph for this function:

| void st_table::prepare_for_position | ( | void | ) |
Definition at line 3813 of file table.cc.
References handler::column_bitmaps_signal(), DBUG_ENTER, DBUG_VOID_RETURN, file, HA_PRIMARY_KEY_IN_READ_INDEX, handler::ha_table_flags(), mark_columns_used_by_index_no_reset(), MAX_KEY, st_table_share::primary_key, read_set, and s.
Referenced by QUICK_RANGE_SELECT::init_ror_merged_scan(), QUICK_INDEX_MERGE_SELECT::read_keys_and_merge(), and register_used_fields().
03814 { 03815 DBUG_ENTER("st_table::prepare_for_position"); 03816 03817 if ((file->ha_table_flags() & HA_PRIMARY_KEY_IN_READ_INDEX) && 03818 s->primary_key < MAX_KEY) 03819 { 03820 mark_columns_used_by_index_no_reset(s->primary_key, read_set); 03821 /* signal change */ 03822 file->column_bitmaps_signal(); 03823 } 03824 DBUG_VOID_RETURN; 03825 }
Here is the call graph for this function:

Here is the caller graph for this function:

Definition at line 2546 of file table.cc.
References DBUG_ASSERT, and field.
02547 { 02548 List_iterator_fast<Item> it(*item_list); 02549 for (Field **ptr= field; *ptr; ptr++) 02550 { 02551 Item_field *item_field= (Item_field*) it++; 02552 DBUG_ASSERT(item_field != 0); 02553 item_field->reset_field(*ptr); 02554 } 02555 }
| void st_table::restore_column_maps_after_mark_index | ( | ) |
Definition at line 3862 of file table.cc.
References handler::column_bitmaps_signal(), DBUG_ENTER, DBUG_VOID_RETURN, default_column_bitmaps(), handler::extra(), file, HA_EXTRA_NO_KEYREAD, and key_read.
03863 { 03864 DBUG_ENTER("st_table::restore_column_maps_after_mark_index"); 03865 03866 key_read= 0; 03867 (void) file->extra(HA_EXTRA_NO_KEYREAD); 03868 default_column_bitmaps(); 03869 file->column_bitmaps_signal(); 03870 DBUG_VOID_RETURN; 03871 }
Here is the call graph for this function:

| void st_table::use_all_columns | ( | ) | [inline] |
Definition at line 439 of file table.h.
References st_table_share::all_set, column_bitmaps_set(), and s.
Referenced by create_myisam_from_heap(), db_show_routine_status(), get_schema_column_record(), grant_load(), handle_grant_table(), delayed_insert::handle_inserts(), my_tz_init(), mysql_alter_table(), mysql_checksum_table(), mysql_install_plugin(), mysql_uninstall_plugin(), mysqld_list_fields(), Events::open_event_table(), Log_to_csv_event_handler::open_log_table(), open_proc_table_for_read(), open_proc_table_for_update(), plugin_load(), ha_tina::repair(), replace_column_table(), replace_db_table(), replace_routine_table(), replace_table_table(), replace_user_table(), tz_load_from_open_tables(), update_user_table(), handler::use_hidden_primary_key(), and write_record().
00440 { 00441 column_bitmaps_set(&s->all_set, &s->all_set); 00442 }
Here is the call graph for this function:

Here is the caller graph for this function:

| const char* st_table::alias |
Definition at line 323 of file table.h.
Referenced by add_not_null_conds(), ha_myisam::analyze(), ha_myisam::check(), check_lock_and_start_stmt(), create_table_from_items(), find_field_in_table(), Field::init(), sp_rcontext::init_var_table(), Field::make_field(), mysql_alter_table(), mysql_delete(), mysql_ha_flush_table(), mysql_prepare_update(), mysqld_show_create(), reopen_table(), reopen_tables(), ha_myisam::repair(), Table_triggers_list::set_table(), Item_func_sp::sp_result_field(), store_create_info(), table_check_intact(), and table_is_used().
Definition at line 402 of file table.h.
Referenced by mysql_schema_table(), and Item_field::set_field().
Definition at line 400 of file table.h.
Referenced by fill_record(), read_fixed_length(), read_sep_field(), set_field_to_null_with_conversions(), and handler::update_auto_increment().
| key_part_map st_table::const_key_parts[MAX_KEY] |
Definition at line 337 of file table.h.
Referenced by make_join_statistics(), and test_if_order_by_key().
Definition at line 391 of file table.h.
Referenced by join_read_const_table(), reopen_name_locked_table(), reopen_table(), test_if_ref(), Item_field::used_tables(), and Item_equal::val_int().
Definition at line 377 of file table.h.
Referenced by handle_delayed_insert(), sp_rcontext::init_var_table(), mysql_load(), Item_func_sp::sp_result_field(), and Field_blob::store().
Definition at line 373 of file table.h.
Referenced by ha_myisam::check(), close_handle_and_leave_table_as_lock(), close_old_data_files(), close_thread_table(), create_myisam_tmp_table(), drop_locked_tables(), handler::ha_open(), init_read_record(), QUICK_RANGE_SELECT::init_ror_merged_scan(), mysql_admin_table(), open_tmp_table(), remove_table_from_cache(), reopen_table(), reopen_tables(), and wait_while_table_is_used().
Definition at line 326 of file table.h.
Referenced by clear_column_bitmaps(), default_column_bitmaps(), handler::ha_reset(), and setup_tmp_table_column_bitmaps().
Definition at line 326 of file table.h.
Referenced by clear_column_bitmaps(), default_column_bitmaps(), handler::ha_reset(), and setup_tmp_table_column_bitmaps().
Definition at line 306 of file table.h.
Referenced by Item_sum_count_distinct::add(), Item_sum_distinct::add(), add_ref_to_table_cond(), calc_used_field_length(), Item_sum_distinct::calculate_val_and_count(), handler::check_old_types(), check_quick_keys(), check_view_insertability(), compare_record(), compare_tables(), composite_key_cmp(), copy_event_to_schema_table(), Table_triggers_list::create_trigger(), db_create_event(), db_create_routine(), db_drop_events_from_table(), db_find_routine(), db_find_routine_aux(), db_update_event(), ha_tina::encode_quote(), Field::eq(), events_table_index_read_for_db(), evex_db_find_event_by_name(), evex_fill_row(), filesort(), fill_item_list(), fill_open_tables(), ha_tina::find_current_row(), find_field_in_table(), find_field_in_table_sef(), find_key_for_maxmin(), Item_func_match::fix_fields(), get_access(), get_all_tables(), get_best_group_min_max(), delayed_insert::get_local_table(), get_referential_constraints_record(), ha_archive::get_row(), get_schema_column_record(), get_schema_key_column_usage_record(), get_schema_partitions_record(), get_schema_stat_record(), get_schema_tables_record(), get_schema_views_record(), GRANT_NAME::GRANT_NAME(), GRANT_TABLE::GRANT_TABLE(), handler::ha_check_for_upgrade(), handle_grant_table(), sp_rcontext::init_var_items(), iter_schema_engines(), Event_timed::load_from_row(), Log_to_csv_event_handler::log_general(), Log_to_csv_event_handler::log_slow(), mark_columns_needed_for_delete(), mark_columns_needed_for_update(), my_tz_init(), mysql_alter_table(), mysql_checksum_table(), mysql_insert(), mysql_install_plugin(), mysql_load(), mysql_uninstall_plugin(), mysqld_list_fields(), plugin_load(), Table_triggers_list::prepare_record1_accessors(), print_field_values(), Table_triggers_list::process_triggers(), ha_archive::real_write_row(), reopen_table(), replace_column_table(), replace_db_table(), replace_routine_table(), replace_table_table(), replace_user_table(), reset_item_list(), Field_iterator_table::set(), Field_iterator_table::set_table(), sp_rcontext::set_variable(), Item_sum_count_distinct::setup(), show_plugins(), show_status_array(), sp_drop_db_routines(), store_constraints(), store_create_info(), store_key_column_usage(), store_schema_partitions_record(), store_schema_proc(), store_schema_shemata(), store_trigger(), table_check_intact(), Item_sum_distinct::unique_walk_function(), Event_timed::update_fields(), update_schema_privilege(), update_user_table(), uses_only_table_name_fields(), and ha_archive::write_row().
Definition at line 298 of file table.h.
Referenced by Item_sum_count_distinct::add(), best_access_path(), calc_used_field_length(), check_if_key_used(), check_lock_and_start_stmt(), check_quick_keys(), check_quick_select(), JOIN::cleanup(), Item_sum_count_distinct::clear(), Materialized_cursor::close(), close_handle_and_leave_table_as_lock(), Log_to_csv_event_handler::close_log_table(), close_thread_table(), column_bitmaps_set(), cost_group_min_max(), create_myisam_from_heap(), create_myisam_tmp_table(), create_sort_index(), create_table_from_items(), db_create_event(), db_create_routine(), db_drop_event(), db_drop_events_from_table(), db_drop_routine(), db_find_routine_aux(), db_show_routine_status(), db_update_event(), do_select(), drop_locked_tables(), end_send(), end_unique_update(), end_update(), end_write(), end_write_group(), events_table_index_read_for_db(), evex_db_find_event_by_name(), JOIN::exec(), subselect_indexsubquery_engine::exec(), subselect_uniquesubquery_engine::exec(), Materialized_cursor::fetch(), filesort(), fill_schema_proc(), fill_used_fields_bitmap(), find_all_keys(), find_key_for_maxmin(), Item_func_match::fix_fields(), get_best_disjunct_quick(), get_best_group_min_max(), get_best_ror_intersect(), handler::get_dup_key(), get_index_for_order(), get_index_only_read_time(), get_key_scans_params(), get_lock_data(), QUICK_ROR_UNION_SELECT::get_next(), QUICK_ROR_INTERSECT_SELECT::get_next(), get_referential_constraints_record(), get_schema_column_record(), get_schema_constraints_record(), get_schema_key_column_usage_record(), get_schema_partitions_record(), get_schema_stat_record(), get_schema_tables_record(), get_schema_tables_result(), get_sweep_read_cost(), get_topics_for_keyword(), grant_load(), GRANT_TABLE::GRANT_TABLE(), ha_create_table(), ha_create_table_from_engine(), handle_delayed_insert(), handle_grant_table(), delayed_insert::handle_inserts(), QUICK_ROR_UNION_SELECT::init(), init_read_record(), init_read_record_idx(), QUICK_ROR_INTERSECT_SELECT::init_ror_merged_scan(), QUICK_RANGE_SELECT::init_ror_merged_scan(), Item_func_match::init_search(), intern_close_table(), is_key_scan_ror(), join_ft_read_first(), join_read_always_key(), join_read_const(), join_read_const_table(), join_read_first(), join_read_key(), join_read_last(), join_read_last_key(), join_read_next_same(), join_read_prev_same(), join_read_system(), Log_to_csv_event_handler::log_general(), Log_to_csv_event_handler::log_slow(), make_join_readinfo(), make_join_statistics(), make_ror_scan(), make_select(), mark_auto_increment_column(), mark_columns_needed_for_delete(), mark_columns_needed_for_update(), mark_columns_used_by_index(), mark_used_tables_as_free_for_reuse(), modify_grant_table(), my_tz_init(), mysql_admin_table(), mysql_alter_table(), mysql_checksum_table(), mysql_delete(), mysql_derived_prepare(), mysql_discard_or_import_tablespace(), mysql_ha_open(), mysql_ha_read(), mysql_insert(), mysql_install_plugin(), mysql_load(), mysql_table_dump(), mysql_test_insert(), mysql_truncate(), mysql_uninstall_plugin(), Materialized_cursor::open(), Log_to_csv_event_handler::open_log_table(), open_tmp_table(), opt_sum_query(), Field::optimize_range(), prepare_for_position(), prepare_for_repair(), QUICK_INDEX_MERGE_SELECT::push_quick_back(), QUICK_GROUP_MIN_MAX_SELECT::QUICK_GROUP_MIN_MAX_SELECT(), QUICK_RANGE_SELECT::QUICK_RANGE_SELECT(), QUICK_ROR_INTERSECT_SELECT::QUICK_ROR_INTERSECT_SELECT(), QUICK_ROR_UNION_SELECT::QUICK_ROR_UNION_SELECT(), read_fixed_length(), QUICK_INDEX_MERGE_SELECT::read_keys_and_merge(), read_sep_field(), JOIN::reinit(), remove_dup_with_compare(), remove_dup_with_hash_index(), reopen_table(), replace_column_table(), replace_db_table(), replace_routine_table(), replace_table_table(), replace_user_table(), report_error(), QUICK_ROR_UNION_SELECT::reset(), restore_column_maps_after_mark_index(), JOIN::rollup_write_data(), ror_intersect_init(), ror_scan_selectivity(), rr_from_cache(), rr_handle_error(), safe_index_read(), safe_update_on_fly(), schema_table_store_record(), select_describe(), Item_func_group_concat::setup(), Item_sum_count_distinct::setup(), sp_drop_db_routines(), Protocol_simple::store(), store_create_info(), table_check_intact(), test_if_order_by_key(), test_if_skip_sort_order(), SQL_SELECT::test_quick_select(), ha_heap::update_create_info(), Event_timed::update_fields(), update_schema_privilege(), update_user_table(), Item_sum_count_distinct::val_int(), Item_func_match::val_real(), wait_while_table_is_used(), write_record(), QUICK_ROR_INTERSECT_SELECT::~QUICK_ROR_INTERSECT_SELECT(), QUICK_ROR_UNION_SELECT::~QUICK_ROR_UNION_SELECT(), and subselect_uniquesubquery_engine::~subselect_uniquesubquery_engine().
Definition at line 390 of file table.h.
Referenced by best_access_path(), reopen_name_locked_table(), test_if_skip_sort_order(), and SQL_SELECT::test_quick_select().
Definition at line 316 of file table.h.
Referenced by ha_heap::create(), delayed_insert::get_local_table(), get_schema_tables_record(), delayed_insert::handle_inserts(), mark_auto_increment_column(), mark_columns_needed_for_insert(), mysql_insert(), mysql_load(), and ha_archive::optimize().
Definition at line 396 of file table.h.
Referenced by filesort(), Item_func_match::fix_fields(), and make_join_statistics().
Definition at line 407 of file table.h.
Referenced by check_column_grant_in_table_ref(), check_insert_fields(), Item_field::fix_fields(), Field_iterator_table_ref::grant(), Natural_join_column::grant(), insert_fields(), mysql_derived_prepare(), mysql_prepare_update(), mysql_schema_table(), open_ltable(), st_table_list::prepare_security(), st_table_list::register_want_access(), and reopen_table().
Definition at line 322 of file table.h.
Referenced by change_to_use_tmp_fields(), end_update(), end_write(), JOIN::exec(), and setup_end_select_func().
| THD* st_table::in_use |
Definition at line 305 of file table.h.
Referenced by handler::adjust_next_insert_id_after_explicit_value(), Field::check_int(), Item_func_group_concat::cleanup(), Item_sum_count_distinct::cleanup(), Materialized_cursor::close(), close_thread_table(), create_myisam_tmp_table(), ha_myisammrg::delete_row(), ha_myisam::delete_row(), ha_heap::delete_row(), Materialized_cursor::fetch(), free_cache_entry(), ha_myisam::ft_read(), Field_time::get_date(), Field_timestamp::get_date(), get_mm_leaf(), handler::ha_release_auto_increment(), handler::ha_statistic_increment(), ha_myisammrg::index_first(), ha_myisam::index_first(), ha_heap::index_first(), ha_myisammrg::index_last(), ha_myisam::index_last(), ha_heap::index_last(), ha_myisammrg::index_next(), ha_myisam::index_next(), ha_heap::index_next(), ha_myisammrg::index_prev(), ha_myisam::index_prev(), ha_heap::index_prev(), ha_myisammrg::index_read(), ha_myisam::index_read(), ha_heap::index_read(), ha_myisammrg::index_read_idx(), ha_myisam::index_read_idx(), ha_heap::index_read_idx(), ha_myisammrg::index_read_last(), ha_myisam::index_read_last(), ha_heap::index_read_last(), QUICK_RANGE_SELECT::init_ror_merged_scan(), lock_table_name(), Materialized_cursor::Materialized_cursor(), mysql_lock_abort_for_thread(), mysql_wait_completed_table(), open_table(), push_locks_into_array(), handler::read_first_row(), remove_table_from_cache(), reopen_name_locked_table(), reopen_table(), ha_myisammrg::rnd_next(), ha_myisam::rnd_next(), ha_heap::rnd_next(), ha_myisammrg::rnd_pos(), ha_myisam::rnd_pos(), ha_heap::rnd_pos(), Item_default_value::save_in_field(), Item::save_in_field_no_warnings(), Field::set_datetime_warning(), Field_timestamp::set_time(), Field::set_warning(), Item_func_sp::sp_result_field(), Field_varstring::sql_type(), Field_string::sql_type(), Field_bit_as_char::store(), Field_bit::store(), Field_blob::store(), Field_varstring::store(), Field_string::store(), Field_datetime::store(), Field_newdate::store(), Field_date::store(), Field_year::store(), Field_timestamp::store(), Field_double::store(), Field_float::store(), Field_long::store(), Field_medium::store(), Field_short::store(), Field_tiny::store(), Field_new_decimal::store(), Field_decimal::store(), store_val_in_field(), table_is_used(), ha_heap::table_type(), handler::update_auto_increment(), ha_myisammrg::update_row(), ha_myisam::update_row(), ha_heap::update_row(), Field_timestamp::val_int(), Field_long::val_int(), Field_timestamp::val_str(), ha_myisammrg::write_row(), ha_myisam::write_row(), and ha_heap::write_row().
Definition at line 311 of file table.h.
Referenced by Item_insert_value::fix_fields(), mysql_test_insert(), mysql_test_insert_select(), st_table_list::set_insert_values(), and write_record().
Definition at line 313 of file table.h.
Referenced by QUICK_ROR_INTERSECT_SELECT::add_info_string(), QUICK_RANGE_SELECT::add_info_string(), add_key_part(), QUICK_ROR_INTERSECT_SELECT::add_keys_and_lengths(), QUICK_INDEX_MERGE_SELECT::add_keys_and_lengths(), QUICK_RANGE_SELECT::add_keys_and_lengths(), add_ref_to_table_cond(), best_access_path(), check_if_key_used(), check_key_in_view(), check_quick_keys(), check_quick_select(), compare_tables(), ha_archive::create(), ha_heap::create(), create_ref_for_key(), db_find_routine_aux(), QUICK_RANGE_SELECT::dbug_dump(), end_update(), events_table_index_read_for_db(), evex_db_find_event_by_name(), fill_used_fields_bitmap(), find_key_for_maxmin(), find_shortest_key(), Item_func_match::fix_index(), handler::get_auto_increment(), ha_myisam::get_auto_increment(), get_best_covering_ror_intersect(), get_best_group_min_max(), get_index_for_order(), get_index_only_read_time(), get_key_scans_params(), get_quick_select(), get_quick_select_for_ref(), get_schema_constraints_record(), get_schema_key_column_usage_record(), get_schema_stat_record(), GRANT_TABLE::GRANT_TABLE(), handler::ha_check_for_upgrade(), handle_grant_table(), ha_myisammrg::index_type(), ha_myisam::index_type(), ha_myisammrg::info(), ha_myisam::info(), is_key_scan_ror(), key_cmp_if_same(), key_unpack(), last_uniq_key(), list_contains_unique_index(), make_ror_scan(), mark_columns_used_by_index_no_reset(), mysql_alter_table(), mysql_ha_read(), mysql_uninstall_plugin(), ha_myisam::open(), part_of_refkey(), subselect_indexsubquery_engine::print(), subselect_uniquesubquery_engine::print(), handler::print_error(), handler::print_keydup_error(), print_ror_scans_arr(), print_sel_tree(), QUICK_RANGE_SELECT::QUICK_RANGE_SELECT(), QUICK_SELECT_DESC::QUICK_SELECT_DESC(), QUICK_SELECT_DESC::range_reads_after_key(), handler::read_range_first(), ha_heap::records_in_range(), reopen_table(), replace_column_table(), replace_db_table(), replace_table_table(), replace_user_table(), ror_intersect_add(), ror_scan_selectivity(), ha_heap::set_keys_for_scanning(), sp_drop_db_routines(), store_create_info(), test_if_order_by_key(), test_if_subkey(), SQL_SELECT::test_quick_select(), QUICK_RANGE_SELECT::unique_key_range(), ha_heap::update_key_stats(), update_user_table(), and write_record().
Definition at line 392 of file table.h.
Referenced by close_thread_table(), create_sort_index(), find_key_for_maxmin(), handler::ha_reset(), join_read_const_table(), join_read_first(), join_read_last(), make_join_readinfo(), opt_sum_query(), restore_column_maps_after_mark_index(), and test_if_skip_sort_order().
Definition at line 312 of file table.h.
Referenced by add_key_field(), add_key_part(), find_key_for_maxmin(), Item_func_match::fix_index(), get_index_for_order(), reopen_name_locked_table(), reopen_table(), test_if_skip_sort_order(), and SQL_SELECT::test_quick_select().
Definition at line 369 of file table.h.
Referenced by mysql_lock_have_duplicate(), and mysql_lock_remove().
Definition at line 368 of file table.h.
Referenced by mysql_lock_have_duplicate(), and mysql_lock_remove().
Definition at line 367 of file table.h.
Referenced by mysql_lock_have_duplicate(), and mysql_lock_remove().
Definition at line 394 of file table.h.
Referenced by Log_to_csv_event_handler::close_log_table(), and Log_to_csv_event_handler::open_log_table().
Definition at line 365 of file table.h.
Referenced by add_ft_keys(), add_key_field(), add_key_fields_for_nj(), best_access_path(), subselect_engine::calc_const_tables(), eq_ref_table(), JOIN::exec(), find_best(), Item_ref::fix_fields(), get_best_combination(), get_mm_tree(), get_sort_by_table(), greedy_search(), init_read_record(), insert_fields(), join_tab_cmp(), join_tab_cmp_straight(), make_join_statistics(), mark_select_range_as_dependent(), matching_cond(), maxmin_in_range(), mysql_delete(), opt_sum_query(), optimize_straight_join(), remove_const(), simplify_joins(), SQL_SELECT::test_quick_select(), update_const_equal_items(), and Item_field::used_tables().
Definition at line 384 of file table.h.
Referenced by add_key_field(), add_not_null_conds(), calc_used_field_length(), create_table_from_items(), eq_ref_table(), get_mm_leaf(), join_read_const_table(), Item_ident_for_show::make_field(), Field::make_field(), Field::maybe_null(), remove_eq_conds(), reopen_name_locked_table(), reopen_table(), Item_func_sp::sp_result_field(), and test_if_ref().
Definition at line 406 of file table.h.
Referenced by Table_triggers_list::change_table_name_in_triggers(), Table_triggers_list::check_n_load(), Materialized_cursor::close(), close_handle_and_leave_table_as_lock(), create_myisam_from_heap(), create_myisam_tmp_table(), Table_triggers_list::create_trigger(), handler::ha_open(), mysql_create_or_drop_trigger(), mysql_open_cursor(), and Table_triggers_list::prepare_record1_accessors().
Definition at line 312 of file table.h.
Referenced by insert_fields(), mark_columns_needed_for_update(), mark_common_columns(), and update_field_dependencies().
| struct st_table* st_table::next |
Definition at line 303 of file table.h.
Referenced by abort_locked_tables(), close_data_tables(), close_old_data_files(), close_temporary_table(), close_temporary_tables(), close_thread_table(), close_thread_tables(), drop_locked_tables(), find_temporary_table(), free_cache_entry(), locked_named_table(), mark_used_tables_as_free_for_reuse(), mysql_derived_prepare(), mysql_ha_close(), mysql_ha_flush(), mysql_schema_table(), open_table(), print_cached_tables(), relink_unused(), reopen_name_locked_table(), reopen_table(), reopen_tables(), and table_is_used().
Definition at line 315 of file table.h.
Referenced by fill_record(), handler::get_auto_increment(), ha_myisam::get_auto_increment(), delayed_insert::handle_inserts(), mysql_insert(), mysql_load(), read_fixed_length(), read_sep_field(), Copy_field::set(), set_field_to_null_with_conversions(), handler::update_auto_increment(), write_record(), ha_archive::write_row(), ha_myisammrg::write_row(), ha_myisam::write_row(), and ha_heap::write_row().
Definition at line 392 of file table.h.
Referenced by join_read_const_table(), join_read_first(), join_read_last(), and make_join_readinfo().
Definition at line 391 of file table.h.
Referenced by create_myisam_from_heap(), Item_func_group_concat::setup(), and Item_sum_count_distinct::setup().
Definition at line 389 of file table.h.
Referenced by create_table_from_items(), subselect_indexsubquery_engine::exec(), subselect_uniquesubquery_engine::exec(), flush_cached_records(), get_schema_tables_result(), Field::is_null(), join_read_const(), join_read_const_table(), join_read_key(), join_read_system(), make_simple_join(), Sensitive_cursor::open(), reopen_name_locked_table(), reopen_table(), sub_select(), and Item_func_match::val_real().
| struct st_table* st_table::open_next |
| struct st_table ** st_table::open_prev |
Definition at line 321 of file table.h.
Referenced by ha_myisam::assign_to_keycache(), check_interleaving_with_nj(), get_key_map_from_key_list(), make_join_statistics(), make_outerjoin_info(), mysql_admin_table(), mysql_checksum_table(), ha_myisam::preload_keys(), restore_prev_nj_state(), schema_table_store_record(), and setup_tables().
| struct st_table * st_table::prev |
Definition at line 303 of file table.h.
Referenced by close_temporary_table(), close_thread_table(), free_cache_entry(), open_table(), print_cached_tables(), relink_unused(), and reopen_table().
Definition at line 328 of file table.h.
Referenced by lock_tables(), mark_real_tables_as_free_for_reuse(), mark_used_tables_as_free_for_reuse(), mysql_ha_read(), and open_table().
Definition at line 350 of file table.h.
Referenced by best_access_path(), check_quick_select(), get_best_covering_ror_intersect(), get_best_ror_intersect(), make_join_statistics(), and SQL_SELECT::test_quick_select().
| uint st_table::quick_key_parts[MAX_KEY] |
Definition at line 312 of file table.h.
Referenced by best_access_path(), check_quick_select(), make_join_statistics(), and mysql_delete().
| uint st_table::quick_n_ranges[MAX_KEY] |
| ha_rows st_table::quick_rows[MAX_KEY] |
Definition at line 334 of file table.h.
Referenced by best_access_path(), check_quick_select(), make_ror_scan(), ror_intersect_add(), and ror_scan_selectivity().
Definition at line 327 of file table.h.
Referenced by calc_used_field_length(), column_bitmaps_set(), column_bitmaps_set_no_signal(), handler::column_bitmaps_signal(), default_column_bitmaps(), ha_tina::encode_quote(), fill_used_fields_bitmap(), find_all_keys(), ha_tina::find_current_row(), find_field_in_table_ref(), Item_field::fix_fields(), handler::get_auto_increment(), get_best_group_min_max(), ha_archive::get_row(), init_fields(), QUICK_RANGE_SELECT::init_ror_merged_scan(), insert_fields(), key_unpack(), mark_auto_increment_column(), mark_columns_needed_for_delete(), mark_columns_needed_for_update(), mark_common_columns(), Table_triggers_list::mark_fields_used(), mysql_ha_read(), prepare_for_position(), print_key(), print_quick(), QUICK_RANGE_SELECT::QUICK_RANGE_SELECT(), QUICK_INDEX_MERGE_SELECT::read_keys_and_merge(), handler::read_multi_range_first(), Item_field::register_field_in_read_map(), register_used_fields(), Protocol_simple::store(), store_create_info(), update_field_dependencies(), and write_record().
| byte* st_table::record[2] |
Definition at line 308 of file table.h.
Referenced by Item_func_group_concat::add(), Item_sum_count_distinct::add(), Field::clone(), ha_heap::create(), create_field::create_field(), create_myisam_from_heap(), create_myisam_tmp_table(), create_tmp_table(), db_create_event(), db_create_routine(), db_drop_event(), db_drop_events_from_table(), db_drop_routine(), db_find_routine_aux(), db_show_routine_status(), db_update_event(), dump_leaf_key(), end_unique_update(), end_update(), end_write(), end_write_group(), events_table_index_read_for_db(), evex_db_find_event_by_name(), subselect_indexsubquery_engine::exec(), subselect_uniquesubquery_engine::exec(), Materialized_cursor::fetch(), fill_schema_proc(), Item_insert_value::fix_fields(), ha_myisam::ft_init_ext(), handler::get_auto_increment(), ha_myisam::get_auto_increment(), delayed_insert::get_local_table(), QUICK_ROR_INTERSECT_SELECT::get_next(), get_topics_for_keyword(), grant_load(), GRANT_TABLE::GRANT_TABLE(), handler::ha_update_row(), handle_grant_table(), delayed_insert::handle_inserts(), init_read_record(), init_read_record_idx(), QUICK_ROR_INTERSECT_SELECT::init_ror_merged_scan(), Field::is_null_in_record(), join_ft_read_first(), join_ft_read_next(), join_read_always_key(), join_read_const(), join_read_first(), join_read_key(), join_read_last(), join_read_last_key(), join_read_next_same(), join_read_prev_same(), join_read_system(), key_cmp_if_same(), key_unpack(), Log_to_csv_event_handler::log_general(), Log_to_csv_event_handler::log_slow(), modify_grant_table(), my_tz_init(), mysql_checksum_table(), mysql_delete(), mysql_ha_read(), mysql_insert(), mysql_install_plugin(), mysql_uninstall_plugin(), Field::offset(), opt_sum_query(), Table_triggers_list::prepare_record1_accessors(), QUICK_GROUP_MIN_MAX_SELECT::QUICK_GROUP_MIN_MAX_SELECT(), QUICK_RANGE_SELECT::QUICK_RANGE_SELECT(), QUICK_ROR_INTERSECT_SELECT::QUICK_ROR_INTERSECT_SELECT(), QUICK_ROR_UNION_SELECT::QUICK_ROR_UNION_SELECT(), handler::read_range_first(), handler::read_range_next(), remove_dup_with_compare(), remove_dup_with_hash_index(), replace_column_table(), replace_db_table(), replace_routine_table(), replace_table_table(), replace_user_table(), JOIN::rollup_write_data(), safe_index_read(), schema_table_store_record(), Field::set_default(), sp_drop_db_routines(), Event_timed::update_fields(), update_schema_privilege(), update_user_table(), Item_func_match::val_real(), write_delayed(), write_record(), ha_myisammrg::write_row(), ha_myisam::write_row(), and ha_heap::write_row().
Definition at line 405 of file table.h.
Referenced by add_key_field(), add_not_null_conds(), ha_myisam::check_if_locking_is_allowed(), handler::check_if_log_table_locking_is_allowed(), check_lock_and_start_stmt(), create_table_from_items(), evaluate_join_record(), JOIN::exec(), get_quick_record_count(), init_read_record(), join_read_const_table(), join_read_next_same(), join_read_next_same_or_null(), join_read_prev_same(), make_join_statistics(), Sensitive_cursor::open(), open_ltable(), open_proc_table_for_read(), part_of_refkey(), push_locks_into_array(), reopen_table(), and update_ref_and_keys().
Definition at line 297 of file table.h.
Referenced by abort_locked_tables(), Item_func_group_concat::add(), Item_sum_count_distinct::add(), add_key_part(), ha_myisam::analyze(), ha_myisammrg::append_create_info(), ha_myisam::assign_to_keycache(), ha_myisam::backup(), best_access_path(), calc_used_field_length(), ha_tina::check(), ha_archive::check(), ha_myisam::check(), ha_myisam::check_and_repair(), check_column_grant_in_table_ref(), ha_myisam::check_if_incompatible_data(), check_if_key_used(), ha_myisam::check_if_locking_is_allowed(), handler::check_if_log_table_locking_is_allowed(), check_insert_fields(), check_key_in_view(), handler::check_old_types(), check_quick_select(), check_table_access(), check_view_insertability(), clear_column_bitmaps(), Field::clone(), close_data_tables(), close_handle_and_leave_table_as_lock(), close_old_data_files(), close_temporary(), close_thread_table(), Field_datetime::cmp(), Field_date::cmp(), Field_timestamp::cmp(), Field_double::cmp(), Field_float::cmp(), Field_long::cmp(), Field_short::cmp(), compare_record(), compare_tables(), composite_key_cmp(), ha_archive::create(), ha_heap::create(), create_field::create_field(), create_myisam_from_heap(), create_myisam_tmp_table(), sp_head::create_result_field(), create_sort_index(), create_table_from_items(), create_tmp_field_for_schema(), create_tmp_field_from_field(), create_tmp_field_from_item(), create_tmp_table(), Table_triggers_list::create_trigger(), db_create_routine(), db_find_routine(), Field_iterator_table_ref::db_name(), Natural_join_column::db_name(), ha_heap::delete_all_rows(), ha_heap::delete_row(), drop_locked_tables(), dump_leaf_key(), end_write(), ha_myisam::external_lock(), Field::fill_cache_field(), fill_used_fields_bitmap(), ha_tina::find_current_row(), find_field_in_table(), find_field_in_table_sef(), find_handler(), find_key_for_maxmin(), find_shortest_key(), find_table_in_list(), find_temporary_table(), Item_trigger_field::fix_fields(), Item_func_match::fix_index(), handler::get_auto_increment(), ha_myisam::get_auto_increment(), get_best_covering_ror_intersect(), get_best_disjunct_quick(), get_best_group_min_max(), get_best_ror_intersect(), Field_timestamp::get_date(), get_index_for_order(), get_key_map_from_key_list(), get_key_scans_params(), Field_blob::get_length(), delayed_insert::get_local_table(), Field_iterator_table_ref::get_or_create_column_ref(), ha_archive::get_row(), get_schema_constraints_record(), get_schema_key_column_usage_record(), get_schema_stat_record(), get_schema_tables_record(), get_sweep_read_cost(), Field_timestamp::get_timestamp(), get_topics_for_keyword(), group_concat_key_cmp_with_distinct(), group_concat_key_cmp_with_order(), handler::ha_check(), handler::ha_check_for_upgrade(), handler::ha_open(), handler::ha_reset(), handle_grant_table(), delayed_insert::handle_inserts(), ha_archive::index_read_idx(), ha_archive::info(), ha_myisammrg::info(), ha_myisam::info(), init_read_record(), QUICK_RANGE_SELECT::init_ror_merged_scan(), init_rr_cache(), insert_fields(), is_key_scan_ror(), MYSQL_BIN_LOG::is_table_mapped(), Item_func_sp::Item_func_sp(), join_read_system(), list_contains_unique_index(), Event_timed::load_from_row(), lock_table_name(), Field::make_field(), make_join_statistics(), make_ror_scan(), Item::make_string_field(), mark_auto_increment_column(), mark_columns_needed_for_delete(), mark_columns_needed_for_update(), mysql_admin_table(), mysql_alter_table(), mysql_checksum_table(), mysql_create_like_table(), mysql_derived_prepare(), mysql_ha_flush_table(), mysql_ha_read(), mysql_insert(), mysql_lock_have_duplicate(), mysql_schema_table(), mysql_truncate(), mysql_wait_completed_table(), mysqld_dump_create_info(), Field_string::new_field(), QUICK_GROUP_MIN_MAX_SELECT::next_min_in_range(), ha_myisammrg::open(), ha_myisam::open(), open_proc_table_for_read(), open_tmp_table(), ha_archive::optimize(), Field_blob::pack_length(), ha_myisam::preload_keys(), prepare_for_position(), prepare_for_repair(), Table_triggers_list::prepare_record1_accessors(), subselect_indexsubquery_engine::print(), subselect_uniquesubquery_engine::print(), print_plan(), Table_triggers_list::process_triggers(), push_locks_into_array(), QUICK_INDEX_MERGE_SELECT::push_quick_back(), QUICK_RANGE_SELECT::QUICK_RANGE_SELECT(), ha_archive::real_write_row(), remove_dup_with_compare(), remove_table_from_cache(), rename_temporary_table(), reopen_name_locked_table(), reopen_table(), reopen_tables(), ha_tina::repair(), ha_myisam::repair(), replace_db_table(), replace_user_table(), report_error(), QUICK_RANGE_SELECT::reset(), ha_myisam::restore(), ror_intersect_init(), rr_from_cache(), safe_update_on_fly(), Field::set_default(), Item_field::set_field(), Field_iterator_table_ref::set_field_iterator(), st_table_list::set_insert_values(), ha_heap::set_keys_for_scanning(), Field_timestamp::set_time(), Item_func_group_concat::setup(), Item_sum_count_distinct::setup(), Item_sum_distinct::setup(), setup_end_select_func(), setup_tmp_table_column_bitmaps(), Item_func_sp::sp_result_field(), ha_myisam::start_bulk_insert(), Field_datetime::store(), Field_date::store(), Field_timestamp::store(), Field_double::store(), Field_float::store(), Field_long::store(), Field_short::store(), store_create_info(), store_key::store_key(), store_key_options(), Field_blob::store_length(), Field_datetime::store_time(), Field_enum::store_type(), table_check_intact(), table_is_used(), Field_iterator_table_ref::table_name(), test_if_skip_sort_order(), test_if_subkey(), SQL_SELECT::test_quick_select(), tmp_use_all_columns(), tmpkeyval(), Field_string::type(), unique_table(), handler::update_auto_increment(), update_create_info_from_table(), update_frm_version(), ha_heap::update_key_stats(), use_all_columns(), Field_enum::val_int(), Field_datetime::val_int(), Field_date::val_int(), Field_timestamp::val_int(), Field_double::val_int(), Field_float::val_int(), Field_long::val_int(), Field_short::val_int(), Field_date::val_real(), Field_double::val_real(), Field_float::val_real(), Field_long::val_real(), Field_short::val_real(), Field_timestamp::val_str(), wait_while_table_is_used(), write_delayed(), write_record(), and ha_archive::write_row().
Definition at line 408 of file table.h.
Referenced by create_sort_index(), filesort(), filesort_free_buffers(), free_io_cache(), init_read_record(), make_select(), mysql_delete(), reopen_table(), rr_unpack_from_buffer(), and rr_unpack_from_tempfile().
Definition at line 372 of file table.h.
Referenced by create_sort_index(), subselect_indexsubquery_engine::exec(), subselect_uniquesubquery_engine::exec(), ha_myisam::ft_read(), ha_myisammrg::index_first(), ha_myisam::index_first(), ha_heap::index_first(), ha_myisammrg::index_last(), ha_myisam::index_last(), ha_heap::index_last(), ha_myisammrg::index_next(), ha_myisam::index_next(), ha_heap::index_next(), ha_myisammrg::index_prev(), ha_myisam::index_prev(), ha_heap::index_prev(), ha_myisammrg::index_read(), ha_myisam::index_read(), ha_heap::index_read(), ha_myisammrg::index_read_idx(), ha_myisam::index_read_idx(), ha_heap::index_read_idx(), ha_myisammrg::index_read_last(), ha_myisam::index_read_last(), ha_heap::index_read_last(), init_read_record(), init_read_record_idx(), join_read_const(), join_read_const_table(), join_read_first(), join_read_key(), join_read_last(), join_read_prev_same(), join_read_system(), make_join_readinfo(), make_simple_join(), reopen_name_locked_table(), reopen_table(), report_error(), ha_myisammrg::rnd_next(), ha_myisam::rnd_next(), ha_heap::rnd_next(), ha_myisammrg::rnd_pos(), ha_myisam::rnd_pos(), and ha_heap::rnd_pos().
Definition at line 370 of file table.h.
Referenced by compare_fields_by_table_order(), get_best_combination(), get_sort_by_table(), reopen_name_locked_table(), reopen_table(), and sort_keyuse().
Definition at line 317 of file table.h.
Referenced by check_if_key_used(), check_insert_fields(), check_update_fields(), create_field::create_field(), create_table_from_items(), Field_timestamp::get_auto_set_type(), delayed_insert::get_local_table(), get_schema_column_record(), mysql_load(), Field_timestamp::set_default(), store_create_info(), ha_tina::update_row(), ha_myisammrg::update_row(), ha_myisam::update_row(), ha_heap::update_row(), ha_tina::write_row(), ha_archive::write_row(), ha_myisammrg::write_row(), ha_myisam::write_row(), and ha_heap::write_row().
Definition at line 364 of file table.h.
Referenced by check_insert_fields(), check_update_fields(), db_update_event(), delayed_insert::handle_inserts(), mysql_load(), Event_timed::update_fields(), ha_tina::update_row(), ha_myisammrg::update_row(), ha_myisam::update_row(), ha_heap::update_row(), write_delayed(), write_record(), ha_tina::write_row(), ha_archive::write_row(), ha_myisammrg::write_row(), ha_myisam::write_row(), and ha_heap::write_row().
Definition at line 326 of file table.h.
Referenced by find_all_keys(), mark_columns_used_by_index(), QUICK_INDEX_MERGE_SELECT::read_keys_and_merge(), and setup_tmp_table_column_bitmaps().
Definition at line 320 of file table.h.
Referenced by Table_triggers_list::check_n_load(), get_schema_triggers_record(), delayed_insert::handle_inserts(), intern_close_table(), mark_columns_needed_for_delete(), mark_columns_needed_for_insert(), mark_columns_needed_for_update(), mysql_create_or_drop_trigger(), mysql_delete(), mysql_insert(), mysql_load(), read_fixed_length(), read_sep_field(), reopen_table(), safe_update_on_fly(), Table_triggers_list::set_table(), Item_trigger_field::setup_field(), sp_cache_routines_and_add_tables_for_triggers(), and write_record().
Definition at line 370 of file table.h.
Referenced by Item_field::fix_fields(), insert_fields(), reopen_name_locked_table(), reopen_table(), and update_field_dependencies().
Definition at line 312 of file table.h.
Referenced by best_access_path(), Item_field::fix_fields(), get_best_group_min_max(), get_key_scans_params(), insert_fields(), join_read_const_table(), join_read_first(), join_read_last(), make_join_readinfo(), mark_common_columns(), mysql_delete(), prepare_simple_select(), reopen_name_locked_table(), reopen_table(), test_if_skip_sort_order(), SQL_SELECT::test_quick_select(), and update_field_dependencies().
Definition at line 327 of file table.h.
Referenced by check_insert_fields(), check_update_fields(), column_bitmaps_set(), column_bitmaps_set_no_signal(), handler::column_bitmaps_signal(), compare_record(), store_key_item::copy(), store_key_field::copy(), cp_buffer_from_ref(), default_column_bitmaps(), fill_used_fields_bitmap(), find_all_keys(), ha_tina::find_current_row(), find_field_in_table_ref(), Item_field::fix_fields(), init_fields(), key_restore(), mark_auto_increment_column(), Table_triggers_list::mark_fields_used(), mysql_ha_read(), mysql_load(), print_key(), print_quick(), QUICK_RANGE_SELECT::QUICK_RANGE_SELECT(), QUICK_INDEX_MERGE_SELECT::read_keys_and_merge(), handler::read_multi_range_first(), Ndb_item::save_in_field(), Item::save_in_field_no_warnings(), store_val_in_field(), update_field_dependencies(), and write_record().
1.4.7

