Commit 9318fbda authored by marko's avatar marko

branches/zip: Remove the unused function dict_index_get_type().

parent 8518fc08
...@@ -1010,14 +1010,6 @@ dict_index_set_page( ...@@ -1010,14 +1010,6 @@ dict_index_set_page(
dict_index_t* index, /* in/out: index */ dict_index_t* index, /* in/out: index */
ulint page); /* in: page number */ ulint page); /* in: page number */
/************************************************************************* /*************************************************************************
Gets the type of the index tree. */
UNIV_INLINE
ulint
dict_index_get_type(
/*================*/
/* out: type */
const dict_index_t* index); /* in: index */
/*************************************************************************
Gets the read-write lock of the index tree. */ Gets the read-write lock of the index tree. */
UNIV_INLINE UNIV_INLINE
rw_lock_t* rw_lock_t*
......
...@@ -673,21 +673,6 @@ dict_index_set_page( ...@@ -673,21 +673,6 @@ dict_index_set_page(
index->page = page; index->page = page;
} }
/*************************************************************************
Gets the type of the index tree. */
UNIV_INLINE
ulint
dict_index_get_type(
/*================*/
/* out: type */
const dict_index_t* index) /* in: index */
{
ut_ad(index);
ut_ad(index->magic_n == DICT_INDEX_MAGIC_N);
return(index->type);
}
/************************************************************************* /*************************************************************************
Gets the read-write lock of the index tree. */ Gets the read-write lock of the index tree. */
UNIV_INLINE UNIV_INLINE
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment