mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Fixes during review of new pushed code
Removed duplicate usage of TMP_TABLE_FORCE_MYISAM by making 'options' longlong
This commit is contained in:
@ -39,12 +39,11 @@ void unireg_init(ulong options)
|
||||
#endif
|
||||
|
||||
VOID(strmov(reg_ext,".frm"));
|
||||
specialflag=SPECIAL_SAME_DB_NAME;
|
||||
specialflag=SPECIAL_SAME_DB_NAME | options; /* Set options from argv */
|
||||
/* Make a tab of powers of 10 */
|
||||
for (i=0,nr=1.0; i < array_elements(log_10) ; i++)
|
||||
{ /* It's used by filesort... */
|
||||
log_10[i]= nr ; nr*= 10.0;
|
||||
}
|
||||
specialflag|=options; /* Set options from argv */
|
||||
DBUG_VOID_RETURN;
|
||||
}
|
||||
|
Reference in New Issue
Block a user