summaryrefslogtreecommitdiff
path: root/storage/innobase/include/handler0alter.h
diff options
context:
space:
mode:
Diffstat (limited to 'storage/innobase/include/handler0alter.h')
-rw-r--r--storage/innobase/include/handler0alter.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/storage/innobase/include/handler0alter.h b/storage/innobase/include/handler0alter.h
index ca71edb42fc..2fdcedc5bb6 100644
--- a/storage/innobase/include/handler0alter.h
+++ b/storage/innobase/include/handler0alter.h
@@ -22,22 +22,22 @@ this program; if not, write to the Free Software Foundation, Inc.,
Smart ALTER TABLE
*******************************************************/
+#include "rem0types.h"
+
/*************************************************************//**
Copies an InnoDB record to table->record[0]. */
-UNIV_INTERN
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 */
- const ulint* offsets)/*!< in: rec_get_offsets(
+ const offset_t* offsets)/*!< in: rec_get_offsets(
rec, index, ...) */
MY_ATTRIBUTE((nonnull));
/*************************************************************//**
Copies an InnoDB index entry to table->record[0]. */
-UNIV_INTERN
void
innobase_fields_to_mysql(
/*=====================*/
@@ -48,7 +48,6 @@ innobase_fields_to_mysql(
/*************************************************************//**
Copies an InnoDB row to table->record[0]. */
-UNIV_INTERN
void
innobase_row_to_mysql(
/*==================*/
@@ -59,7 +58,6 @@ innobase_row_to_mysql(
/*************************************************************//**
Resets table->record[0]. */
-UNIV_INTERN
void
innobase_rec_reset(
/*===============*/
@@ -71,13 +69,12 @@ auto_increment_increment and auto_increment_offset variables. */
struct ib_sequence_t {
/**
- @param thd - the session
- @param start_value - the lower bound
- @param max_value - the upper bound (inclusive) */
+ @param thd the session
+ @param start_value the lower bound
+ @param max_value the upper bound (inclusive) */
ib_sequence_t(THD* thd, ulonglong start_value, ulonglong max_value);
- /**
- Postfix increment
+ /** Postfix increment
@return the value to insert */
ulonglong operator++(int) UNIV_NOTHROW;