You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
91 lines
3.6 KiB
91 lines
3.6 KiB
5 months ago
|
#ifndef SQL_TMP_TABLE_INCLUDED
|
||
|
#define SQL_TMP_TABLE_INCLUDED
|
||
|
|
||
|
/* Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
|
||
|
|
||
|
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 also distributed 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 included with MySQL.
|
||
|
|
||
|
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 */
|
||
|
|
||
|
/**
|
||
|
@file
|
||
|
|
||
|
@brief
|
||
|
Temporary table handling functions.
|
||
|
*/
|
||
|
|
||
|
#include <stddef.h>
|
||
|
#include <sys/types.h>
|
||
|
|
||
|
#include "my_base.h" // ha_rows
|
||
|
#include "my_inttypes.h"
|
||
|
#include "sql/item.h" // Item
|
||
|
#include "sql/mem_root_array.h"
|
||
|
#include "sql/temp_table_param.h"
|
||
|
|
||
|
class Create_field;
|
||
|
class Field;
|
||
|
class KEY;
|
||
|
class SJ_TMP_TABLE;
|
||
|
class THD;
|
||
|
struct ORDER;
|
||
|
struct TABLE;
|
||
|
template <class T>
|
||
|
class List;
|
||
|
|
||
|
enum enum_internal_tmp_mem_storage_engine {
|
||
|
TMP_TABLE_MEMORY,
|
||
|
TMP_TABLE_TEMPTABLE
|
||
|
};
|
||
|
|
||
|
TABLE *create_tmp_table(THD *thd, Temp_table_param *param, List<Item> &fields,
|
||
|
ORDER *group, bool distinct, bool save_sum_fields,
|
||
|
ulonglong select_options, ha_rows rows_limit,
|
||
|
const char *table_alias);
|
||
|
bool open_tmp_table(TABLE *table);
|
||
|
TABLE *create_tmp_table_from_fields(THD *thd, List<Create_field> &field_list,
|
||
|
bool is_virtual = true,
|
||
|
ulonglong select_options = 0,
|
||
|
const char *alias = NULL);
|
||
|
bool create_ondisk_from_heap(THD *thd, TABLE *table, int error,
|
||
|
bool ignore_last_dup, bool *is_duplicate);
|
||
|
void free_tmp_table(THD *thd, TABLE *entry);
|
||
|
TABLE *create_duplicate_weedout_tmp_table(THD *thd, uint uniq_tuple_length_arg,
|
||
|
SJ_TMP_TABLE *sjtbl);
|
||
|
bool instantiate_tmp_table(THD *thd, TABLE *table);
|
||
|
Field *create_tmp_field(THD *thd, TABLE *table, Item *item, Item::Type type,
|
||
|
Func_ptr_array *copy_func, Field **from_field,
|
||
|
Field **default_field, bool group, bool modify_item,
|
||
|
bool table_cant_handle_bit_fields, bool make_copy_field,
|
||
|
bool copy_result_field = false);
|
||
|
Field *create_tmp_field_from_field(THD *thd, Field *org_field, const char *name,
|
||
|
TABLE *table, Item_field *item);
|
||
|
|
||
|
/**
|
||
|
Get the minimum of max_key_length and max_key_part_length between
|
||
|
HEAP engine and internal_tmp_disk_storage_engine.
|
||
|
*/
|
||
|
void get_max_key_and_part_length(uint *max_key_length,
|
||
|
uint *max_key_part_length,
|
||
|
uint *max_key_parts);
|
||
|
void init_cache_tmp_engine_properties();
|
||
|
void encode_innodb_position(uchar *rowid_bytes, uint length, ha_rows row_num);
|
||
|
bool reposition_innodb_cursor(TABLE *table, ha_rows row_num);
|
||
|
#endif /* SQL_TMP_TABLE_INCLUDED */
|