2014-02-26 19:11:54 +01:00
|
|
|
/*****************************************************************************
|
|
|
|
|
2016-06-21 14:21:03 +02:00
|
|
|
Copyright (c) 2005, 2016, Oracle and/or its affiliates. All Rights Reserved.
|
2019-04-25 14:01:55 +03:00
|
|
|
Copyright (c) 2019, MariaDB Corporation.
|
2014-02-26 19:11:54 +01:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify it under
|
|
|
|
the terms of the GNU General Public License as published by the Free Software
|
|
|
|
Foundation; version 2 of the License.
|
|
|
|
|
|
|
|
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 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.,
|
2019-05-11 19:25:02 +03:00
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1335 USA
|
2014-02-26 19:11:54 +01:00
|
|
|
|
|
|
|
*****************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************//**
|
|
|
|
@file include/handler0alter.h
|
|
|
|
Smart ALTER TABLE
|
|
|
|
*******************************************************/
|
|
|
|
|
MDEV-20950 Reduce size of record offsets
offset_t: this is a type which represents one record offset.
It's unsigned short int.
a lot of functions: replace ulint with offset_t
btr_pcur_restore_position_func(),
page_validate(),
row_ins_scan_sec_index_for_duplicate(),
row_upd_clust_rec_by_insert_inherit_func(),
row_vers_impl_x_locked_low(),
trx_undo_prev_version_build():
allocate record offsets on the stack instead of waiting for rec_get_offsets()
to allocate it from mem_heap_t. So, reducing memory allocations.
RECORD_OFFSET, INDEX_OFFSET:
now it's less convenient to store pointers in offset_t*
array. One pointer occupies now several offset_t. And those constant are start
indexes into array to places where to store pointer values
REC_OFFS_HEADER_SIZE: adjusted for the new reality
REC_OFFS_NORMAL_SIZE:
increase size from 100 to 300 which means less heap allocations.
And sizeof(offset_t[REC_OFFS_NORMAL_SIZE]) now is 600 bytes which
is smaller than previous 800 bytes.
REC_OFFS_SEC_INDEX_SIZE: adjusted for the new reality
rem0rec.h, rem0rec.ic, rem0rec.cc:
various arguments, return values and local variables types were changed to
fix numerous integer conversions issues.
enum field_type_t:
offset types concept was introduces which replaces old offset flags stuff.
Like in earlier version, 2 upper bits are used to store offset type.
And this enum represents those types.
REC_OFFS_SQL_NULL, REC_OFFS_MASK: removed
get_type(), set_type(), get_value(), combine():
these are convenience functions to work with offsets and it's types
rec_offs_base()[0]:
still uses an old scheme with flags REC_OFFS_COMPACT and REC_OFFS_EXTERNAL
rec_offs_base()[i]:
these have type offset_t now. Two upper bits contains type.
2019-11-04 22:30:12 +03:00
|
|
|
#include "rem0types.h"
|
|
|
|
|
2014-02-26 19:11:54 +01:00
|
|
|
/*************************************************************//**
|
|
|
|
Copies an InnoDB record to table->record[0]. */
|
|
|
|
void
|
|
|
|
innobase_rec_to_mysql(
|
|
|
|
/*==================*/
|
|
|
|
struct TABLE* table, /*!< in/out: MySQL table */
|
|
|
|
const rec_t* rec, /*!< in: record */
|
|
|
|
const dict_index_t* index, /*!< in: index */
|
2020-04-28 10:46:51 +10:00
|
|
|
const rec_offs* offsets)/*!< in: rec_get_offsets(
|
2014-02-26 19:11:54 +01:00
|
|
|
rec, index, ...) */
|
2016-06-21 14:21:03 +02:00
|
|
|
MY_ATTRIBUTE((nonnull));
|
2014-02-26 19:11:54 +01:00
|
|
|
|
|
|
|
/*************************************************************//**
|
|
|
|
Copies an InnoDB index entry to table->record[0]. */
|
|
|
|
void
|
|
|
|
innobase_fields_to_mysql(
|
|
|
|
/*=====================*/
|
|
|
|
struct TABLE* table, /*!< in/out: MySQL table */
|
|
|
|
const dict_index_t* index, /*!< in: InnoDB index */
|
|
|
|
const dfield_t* fields) /*!< in: InnoDB index fields */
|
2016-06-21 14:21:03 +02:00
|
|
|
MY_ATTRIBUTE((nonnull));
|
2014-02-26 19:11:54 +01:00
|
|
|
|
|
|
|
/*************************************************************//**
|
|
|
|
Copies an InnoDB row to table->record[0]. */
|
|
|
|
void
|
|
|
|
innobase_row_to_mysql(
|
|
|
|
/*==================*/
|
|
|
|
struct TABLE* table, /*!< in/out: MySQL table */
|
|
|
|
const dict_table_t* itab, /*!< in: InnoDB table */
|
|
|
|
const dtuple_t* row) /*!< in: InnoDB row */
|
2016-06-21 14:21:03 +02:00
|
|
|
MY_ATTRIBUTE((nonnull));
|
2014-02-26 19:11:54 +01:00
|
|
|
|
|
|
|
/** Generate the next autoinc based on a snapshot of the session
|
|
|
|
auto_increment_increment and auto_increment_offset variables. */
|
|
|
|
struct ib_sequence_t {
|
|
|
|
|
|
|
|
/**
|
2016-08-12 11:17:45 +03:00
|
|
|
@param thd the session
|
|
|
|
@param start_value the lower bound
|
|
|
|
@param max_value the upper bound (inclusive) */
|
2014-02-26 19:11:54 +01:00
|
|
|
ib_sequence_t(THD* thd, ulonglong start_value, ulonglong max_value);
|
|
|
|
|
2016-08-12 11:17:45 +03:00
|
|
|
/** Postfix increment
|
2014-02-26 19:11:54 +01:00
|
|
|
@return the value to insert */
|
|
|
|
ulonglong operator++(int) UNIV_NOTHROW;
|
|
|
|
|
|
|
|
/** Check if the autoinc "sequence" is exhausted.
|
|
|
|
@return true if the sequence is exhausted */
|
|
|
|
bool eof() const UNIV_NOTHROW
|
|
|
|
{
|
|
|
|
return(m_eof);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
@return the next value in the sequence */
|
|
|
|
ulonglong last() const UNIV_NOTHROW
|
|
|
|
{
|
|
|
|
ut_ad(m_next_value > 0);
|
|
|
|
|
|
|
|
return(m_next_value);
|
|
|
|
}
|
|
|
|
|
2019-04-25 14:01:55 +03:00
|
|
|
/** @return maximum column value
|
|
|
|
@retval 0 if not adding AUTO_INCREMENT column */
|
|
|
|
ulonglong max_value() const { return m_max_value; }
|
|
|
|
|
|
|
|
private:
|
|
|
|
/** Maximum value if adding an AUTO_INCREMENT column, else 0 */
|
|
|
|
ulonglong m_max_value;
|
2014-02-26 19:11:54 +01:00
|
|
|
|
|
|
|
/** Value of auto_increment_increment */
|
|
|
|
ulong m_increment;
|
|
|
|
|
|
|
|
/** Value of auto_increment_offset */
|
|
|
|
ulong m_offset;
|
|
|
|
|
|
|
|
/** Next value in the sequence */
|
|
|
|
ulonglong m_next_value;
|
|
|
|
|
|
|
|
/** true if no more values left in the sequence */
|
|
|
|
bool m_eof;
|
|
|
|
};
|