mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
Cleaned up SSL documentation
Fixes for embedded server Made key_cache more configurable Fixed that one can change key blocksize in MyISAM A lot of optimizations to make MyISAM slightly faster
This commit is contained in:
@@ -1197,13 +1197,19 @@ longlong Item_cond_or::val_int()
|
||||
|
||||
longlong Item_func_isnull::val_int()
|
||||
{
|
||||
(void) args[0]->val();
|
||||
if (internal_result_type == REAL_RESULT)
|
||||
(void) args[0]->val();
|
||||
else
|
||||
(void) args[0]->val_int();
|
||||
return (args[0]->null_value) ? 1 : 0;
|
||||
}
|
||||
|
||||
longlong Item_func_isnotnull::val_int()
|
||||
{
|
||||
(void) args[0]->val();
|
||||
if (internal_result_type == REAL_RESULT)
|
||||
(void) args[0]->val();
|
||||
else
|
||||
(void) args[0]->val_int();
|
||||
return !(args[0]->null_value) ? 1 : 0;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user