mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
bddb5a0cca
in *.h files, so that the function signatures in the *.h and *.c files fully match each other. ut_dulint_sort(): Add a UNIV_INTERN qualifier also to the function definition.
25 lines
737 B
C
25 lines
737 B
C
/******************************************************
|
|
Smart ALTER TABLE
|
|
|
|
(c) 2005-2007 Innobase Oy
|
|
*******************************************************/
|
|
|
|
/*****************************************************************
|
|
Copies an InnoDB record to table->record[0]. */
|
|
UNIV_INTERN
|
|
void
|
|
innobase_rec_to_mysql(
|
|
/*==================*/
|
|
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(
|
|
rec, index, ...) */
|
|
|
|
/*****************************************************************
|
|
Resets table->record[0]. */
|
|
UNIV_INTERN
|
|
void
|
|
innobase_rec_reset(
|
|
/*===============*/
|
|
TABLE* table); /* in/out: MySQL table */
|