summaryrefslogtreecommitdiff
path: root/storage/innobase/include/dict0dict.ic
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2018-06-04 16:12:00 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2018-06-04 16:12:00 +0300
commitb50685af82508ca1cc83e1743dff527770e6e64b (patch)
treeabbbc2a2ca9f4f80b4cb0da2d775e037575204ab /storage/innobase/include/dict0dict.ic
parentcac41001864ca503a7812b7f2a3b312435fb4ec4 (diff)
parent8dc70c862b8ec115fd9a3c2b37c746ffc4f0d3cc (diff)
downloadmariadb-git-b50685af82508ca1cc83e1743dff527770e6e64b.tar.gz
Merge 10.2 into 10.3
Diffstat (limited to 'storage/innobase/include/dict0dict.ic')
-rw-r--r--storage/innobase/include/dict0dict.ic14
1 files changed, 0 insertions, 14 deletions
diff --git a/storage/innobase/include/dict0dict.ic b/storage/innobase/include/dict0dict.ic
index 4c6c45a3b1e..db1be6513b1 100644
--- a/storage/innobase/include/dict0dict.ic
+++ b/storage/innobase/include/dict0dict.ic
@@ -314,20 +314,6 @@ dict_index_is_spatial(
return ulint(UNIV_EXPECT(index->type & DICT_SPATIAL, 0));
}
-/** Check whether the index contains a virtual column
-@param[in] index index
-@return nonzero for the index has virtual column, zero for other indexes */
-UNIV_INLINE
-ulint
-dict_index_has_virtual(
- const dict_index_t* index)
-{
- ut_ad(index);
- ut_ad(index->magic_n == DICT_INDEX_MAGIC_N);
-
- return(index->type & DICT_VIRTUAL);
-}
-
/********************************************************************//**
Check whether the index is the insert buffer tree.
@return nonzero for insert buffer, zero for other indexes */