diff options
author | unknown <marko@hundin.mysql.fi> | 2004-12-29 12:09:23 +0200 |
---|---|---|
committer | unknown <marko@hundin.mysql.fi> | 2004-12-29 12:09:23 +0200 |
commit | 44728324f0abe3e327fc2095a99e647b1c44dd8d (patch) | |
tree | 731c3470a5161bf46ef2e8824387f2707ac13bc1 /innobase/include/dict0dict.h | |
parent | 59b274eab8ff97461f7c88f9f0e347a35deb9842 (diff) | |
download | mariadb-git-44728324f0abe3e327fc2095a99e647b1c44dd8d.tar.gz |
InnoDB: Remove dependency on rem0rec.ic from dict0dict.ic (Bug #7464)
innobase/dict/dict0dict.c:
Make dict_is_mixed_table_rec() a non-inlined function.
innobase/include/dict0dict.h:
Make dict_is_mixed_table_rec() a non-inlined function.
Remove dict_index_rec_get_sys_col().
innobase/include/dict0dict.ic:
Make dict_is_mixed_table_rec() a non-inlined function.
Remove dict_index_rec_get_sys_col().
innobase/trx/trx0rec.c:
Replace the two calls to the removed
function dict_index_rec_get_sys_col() with equivalent code.
Diffstat (limited to 'innobase/include/dict0dict.h')
-rw-r--r-- | innobase/include/dict0dict.h | 15 |
1 files changed, 1 insertions, 14 deletions
diff --git a/innobase/include/dict0dict.h b/innobase/include/dict0dict.h index a2399a81ca9..eaf5b06b2a9 100644 --- a/innobase/include/dict0dict.h +++ b/innobase/include/dict0dict.h @@ -657,19 +657,6 @@ dict_index_copy_types( dtuple_t* tuple, /* in: data tuple */ dict_index_t* index, /* in: index */ ulint n_fields); /* in: number of field types to copy */ -/************************************************************************ -Gets the value of a system column in a clustered index record. The clustered -index must contain the system column: if the index is unique, row id is -not contained there! */ -UNIV_INLINE -dulint -dict_index_rec_get_sys_col( -/*=======================*/ - /* out: system column value */ - dict_index_t* index, /* in: clustered index describing the record */ - const ulint* offsets,/* in: offsets returned by rec_get_offsets() */ - ulint type, /* in: column type: DATA_ROLL_PTR, ... */ - rec_t* rec); /* in: record */ /************************************************************************* Gets the index tree where the index is stored. */ UNIV_INLINE @@ -731,7 +718,7 @@ dict_tree_find_index_for_tuple( dtuple_t* tuple); /* in: tuple for which to find index */ /*********************************************************************** Checks if a table which is a mixed cluster member owns a record. */ -UNIV_INLINE + ibool dict_is_mixed_table_rec( /*====================*/ |