diff options
Diffstat (limited to 'innobase/include/data0data.h')
-rw-r--r-- | innobase/include/data0data.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/innobase/include/data0data.h b/innobase/include/data0data.h index c19d7ea5552..e0fb06e5018 100644 --- a/innobase/include/data0data.h +++ b/innobase/include/data0data.h @@ -123,7 +123,7 @@ dfield_datas_are_binary_equal( dfield_t* field2);/* in: field */ /************************************************************************* Tests if dfield data length and content is equal to the given. */ -UNIV_INLINE + ibool dfield_data_is_binary_equal( /*========================*/ @@ -279,6 +279,14 @@ dtuple_check_typed( /* out: TRUE if ok */ dtuple_t* tuple); /* in: tuple */ /************************************************************** +Checks that a data tuple is typed. */ + +ibool +dtuple_check_typed_no_assert( +/*=========================*/ + /* out: TRUE if ok */ + dtuple_t* tuple); /* in: tuple */ +/************************************************************** Validates the consistency of a tuple which must be complete, i.e, all fields must have been set. */ |