mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
data0data.c Small changes to eliminate some asserts in the debug version
data0type.c Small changes to eliminate some asserts in the debug version data0type.ic Small changes to eliminate some asserts in the debug version innobase/data/data0data.c: Small changes to eliminate some asserts in the debug version innobase/data/data0type.c: Small changes to eliminate some asserts in the debug version innobase/include/data0type.ic: Small changes to eliminate some asserts in the debug version
This commit is contained in:
@ -25,7 +25,7 @@ dtype_validate(
|
||||
dtype_t* type) /* in: type struct to validate */
|
||||
{
|
||||
ut_a(type);
|
||||
ut_a((type->mtype >= DATA_VARCHAR) && (type->mtype <= DATA_SYS));
|
||||
ut_a((type->mtype >= DATA_VARCHAR) && (type->mtype <= DATA_MYSQL));
|
||||
|
||||
if (type->mtype == DATA_SYS) {
|
||||
ut_a(type->prtype >= DATA_ROW_ID);
|
||||
|
Reference in New Issue
Block a user