Commit ff2db4eb authored by unknown's avatar unknown

Merge lgrimmer@work.mysql.com:/home/bk/mysql-4.0

into mysql.com:/space/my/mysql-4.0
parents 06170db6 37c9d272
...@@ -48,8 +48,6 @@ TYPELIB myisam_recover_typelib= {array_elements(myisam_recover_names)-1,"", ...@@ -48,8 +48,6 @@ TYPELIB myisam_recover_typelib= {array_elements(myisam_recover_names)-1,"",
static void mi_check_print_msg(MI_CHECK *param, const char* msg_type, static void mi_check_print_msg(MI_CHECK *param, const char* msg_type,
const char *fmt, va_list args) const char *fmt, va_list args)
{ {
DBUG_ENTER("mi_check_print_msg");
THD* thd = (THD*)param->thd; THD* thd = (THD*)param->thd;
String* packet = &thd->packet; String* packet = &thd->packet;
uint length; uint length;
...@@ -66,12 +64,12 @@ static void mi_check_print_msg(MI_CHECK *param, const char* msg_type, ...@@ -66,12 +64,12 @@ static void mi_check_print_msg(MI_CHECK *param, const char* msg_type,
if (thd->net.vio == 0) if (thd->net.vio == 0)
{ {
sql_print_error(msgbuf); sql_print_error(msgbuf);
DBUG_VOID_RETURN; return;
} }
if (param->testflag & (T_CREATE_MISSING_KEYS | T_SAFE_REPAIR | T_AUTO_REPAIR)) if (param->testflag & (T_CREATE_MISSING_KEYS | T_SAFE_REPAIR | T_AUTO_REPAIR))
{ {
my_message(ER_NOT_KEYFILE,msgbuf,MYF(MY_WME)); my_message(ER_NOT_KEYFILE,msgbuf,MYF(MY_WME));
DBUG_VOID_RETURN; return;
} }
length=(uint) (strxmov(name, param->db_name,".",param->table_name,NullS) - length=(uint) (strxmov(name, param->db_name,".",param->table_name,NullS) -
name); name);
...@@ -83,46 +81,37 @@ static void mi_check_print_msg(MI_CHECK *param, const char* msg_type, ...@@ -83,46 +81,37 @@ static void mi_check_print_msg(MI_CHECK *param, const char* msg_type,
if (my_net_write(&thd->net, (char*)thd->packet.ptr(), thd->packet.length())) if (my_net_write(&thd->net, (char*)thd->packet.ptr(), thd->packet.length()))
sql_print_error("Failed on my_net_write, writing to stderr instead: %s\n", sql_print_error("Failed on my_net_write, writing to stderr instead: %s\n",
msgbuf); msgbuf);
DBUG_VOID_RETURN; return;
} }
extern "C" { extern "C" {
void mi_check_print_error(MI_CHECK *param, const char *fmt,...) void mi_check_print_error(MI_CHECK *param, const char *fmt,...)
{ {
DBUG_ENTER("mi_check_print_error");
param->error_printed|=1; param->error_printed|=1;
param->out_flag|= O_DATA_LOST; param->out_flag|= O_DATA_LOST;
va_list args; va_list args;
va_start(args, fmt); va_start(args, fmt);
mi_check_print_msg(param, "error", fmt, args); mi_check_print_msg(param, "error", fmt, args);
va_end(args); va_end(args);
DBUG_VOID_RETURN;
} }
void mi_check_print_info(MI_CHECK *param, const char *fmt,...) void mi_check_print_info(MI_CHECK *param, const char *fmt,...)
{ {
va_list args; va_list args;
DBUG_ENTER("mi_check_print_info");
va_start(args, fmt); va_start(args, fmt);
mi_check_print_msg(param, "info", fmt, args); mi_check_print_msg(param, "info", fmt, args);
va_end(args); va_end(args);
DBUG_VOID_RETURN;
} }
void mi_check_print_warning(MI_CHECK *param, const char *fmt,...) void mi_check_print_warning(MI_CHECK *param, const char *fmt,...)
{ {
DBUG_ENTER("mi_check_print_warning");
param->warning_printed=1; param->warning_printed=1;
param->out_flag|= O_DATA_LOST; param->out_flag|= O_DATA_LOST;
va_list args; va_list args;
va_start(args, fmt); va_start(args, fmt);
mi_check_print_msg(param, "warning", fmt, args); mi_check_print_msg(param, "warning", fmt, args);
va_end(args); va_end(args);
DBUG_VOID_RETURN;
} }
} }
...@@ -133,18 +122,15 @@ const char **ha_myisam::bas_ext() const ...@@ -133,18 +122,15 @@ const char **ha_myisam::bas_ext() const
const char *ha_myisam::index_type(uint key_number) const char *ha_myisam::index_type(uint key_number)
{ {
DBUG_ENTER("*ha_myisam::index_type"); return ((table->key_info[key_number].flags & HA_FULLTEXT) ?
DBUG_RETURN(((table->key_info[key_number].flags & HA_FULLTEXT) ?
"FULLTEXT" : "FULLTEXT" :
"BTREE")); "BTREE");
} }
int ha_myisam::net_read_dump(NET* net) int ha_myisam::net_read_dump(NET* net)
{ {
int data_fd = file->dfile; int data_fd = file->dfile;
int error = 0; int error = 0;
DBUG_ENTER("ha_myisam::net_read_dump");
my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME)); my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME));
for (;;) for (;;)
...@@ -167,14 +153,12 @@ int ha_myisam::net_read_dump(NET* net) ...@@ -167,14 +153,12 @@ int ha_myisam::net_read_dump(NET* net)
} }
err: err:
DBUG_RETURN(error); return error;
} }
int ha_myisam::dump(THD* thd, int fd) int ha_myisam::dump(THD* thd, int fd)
{ {
DBUG_ENTER("ha_myisam::dump");
MYISAM_SHARE* share = file->s; MYISAM_SHARE* share = file->s;
NET* net = &thd->net; NET* net = &thd->net;
uint blocksize = share->blocksize; uint blocksize = share->blocksize;
...@@ -182,7 +166,7 @@ int ha_myisam::dump(THD* thd, int fd) ...@@ -182,7 +166,7 @@ int ha_myisam::dump(THD* thd, int fd)
int data_fd = file->dfile; int data_fd = file->dfile;
byte * buf = (byte*) my_malloc(blocksize, MYF(MY_WME)); byte * buf = (byte*) my_malloc(blocksize, MYF(MY_WME));
if (!buf) if (!buf)
DBUG_RETURN(ENOMEM); return ENOMEM;
int error = 0; int error = 0;
my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME)); my_seek(data_fd, 0L, MY_SEEK_SET, MYF(MY_WME));
...@@ -222,17 +206,15 @@ int ha_myisam::dump(THD* thd, int fd) ...@@ -222,17 +206,15 @@ int ha_myisam::dump(THD* thd, int fd)
err: err:
my_free((gptr) buf, MYF(0)); my_free((gptr) buf, MYF(0));
DBUG_RETURN(error); return error;
} }
/* Name is here without an extension */ /* Name is here without an extension */
int ha_myisam::open(const char *name, int mode, uint test_if_locked) int ha_myisam::open(const char *name, int mode, uint test_if_locked)
{ {
DBUG_ENTER("ha_myisam::open");
if (!(file=mi_open(name, mode, test_if_locked))) if (!(file=mi_open(name, mode, test_if_locked)))
DBUG_RETURN((my_errno ? my_errno : -1)); return (my_errno ? my_errno : -1);
if (test_if_locked & (HA_OPEN_IGNORE_IF_LOCKED | HA_OPEN_TMP_TABLE)) if (test_if_locked & (HA_OPEN_IGNORE_IF_LOCKED | HA_OPEN_TMP_TABLE))
VOID(mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0)); VOID(mi_extra(file, HA_EXTRA_NO_WAIT_LOCK, 0));
...@@ -241,22 +223,18 @@ int ha_myisam::open(const char *name, int mode, uint test_if_locked) ...@@ -241,22 +223,18 @@ int ha_myisam::open(const char *name, int mode, uint test_if_locked)
VOID(mi_extra(file, HA_EXTRA_WAIT_LOCK, 0)); VOID(mi_extra(file, HA_EXTRA_WAIT_LOCK, 0));
if (!table->db_record_offset) if (!table->db_record_offset)
int_table_flags|=HA_REC_NOT_IN_SEQ; int_table_flags|=HA_REC_NOT_IN_SEQ;
DBUG_RETURN((0)); return (0);
} }
int ha_myisam::close(void) int ha_myisam::close(void)
{ {
MI_INFO *tmp=file; MI_INFO *tmp=file;
DBUG_ENTER("ha_myisam::close");
file=0; file=0;
DBUG_RETURN(mi_close(tmp)); return mi_close(tmp);
} }
int ha_myisam::write_row(byte * buf) int ha_myisam::write_row(byte * buf)
{ {
DBUG_ENTER("ha_myisam::write_row");
statistic_increment(ha_write_count,&LOCK_status); statistic_increment(ha_write_count,&LOCK_status);
/* If we have a timestamp column, update it to the current time */ /* If we have a timestamp column, update it to the current time */
...@@ -270,14 +248,12 @@ int ha_myisam::write_row(byte * buf) ...@@ -270,14 +248,12 @@ int ha_myisam::write_row(byte * buf)
*/ */
if (table->next_number_field && buf == table->record[0]) if (table->next_number_field && buf == table->record[0])
update_auto_increment(); update_auto_increment();
DBUG_RETURN(mi_write(file,buf)); return mi_write(file,buf);
} }
int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt) int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt)
{ {
DBUG_ENTER("ha_myisam::check"); if (!file) return HA_ADMIN_INTERNAL_ERROR;
if (!file) DBUG_RETURN(HA_ADMIN_INTERNAL_ERROR);
int error; int error;
MI_CHECK param; MI_CHECK param;
MYISAM_SHARE* share = file->s; MYISAM_SHARE* share = file->s;
...@@ -302,7 +278,7 @@ int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt) ...@@ -302,7 +278,7 @@ int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt)
share->state.open_count == 0) || share->state.open_count == 0) ||
((param.testflag & T_FAST) && (share->state.open_count == ((param.testflag & T_FAST) && (share->state.open_count ==
(uint) (share->global_changed ? 1 : 0))))) (uint) (share->global_changed ? 1 : 0)))))
DBUG_RETURN(HA_ADMIN_ALREADY_DONE); return HA_ADMIN_ALREADY_DONE;
error = chk_status(&param, file); // Not fatal error = chk_status(&param, file); // Not fatal
error = chk_size(&param, file); error = chk_size(&param, file);
...@@ -355,7 +331,7 @@ int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt) ...@@ -355,7 +331,7 @@ int ha_myisam::check(THD* thd, HA_CHECK_OPT* check_opt)
} }
thd->proc_info=old_proc_info; thd->proc_info=old_proc_info;
DBUG_RETURN(error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK); return error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK;
} }
...@@ -369,8 +345,6 @@ int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt) ...@@ -369,8 +345,6 @@ int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt)
{ {
int error=0; int error=0;
MI_CHECK param; MI_CHECK param;
DBUG_ENTER("ha_myisam::analyze");
MYISAM_SHARE* share = file->s; MYISAM_SHARE* share = file->s;
myisamchk_init(&param); myisamchk_init(&param);
...@@ -383,7 +357,7 @@ int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt) ...@@ -383,7 +357,7 @@ int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt)
param.using_global_keycache = 1; param.using_global_keycache = 1;
if (!(share->state.changed & STATE_NOT_ANALYZED)) if (!(share->state.changed & STATE_NOT_ANALYZED))
DBUG_RETURN(HA_ADMIN_ALREADY_DONE); return HA_ADMIN_ALREADY_DONE;
error = chk_key(&param, file); error = chk_key(&param, file);
if (!error) if (!error)
...@@ -394,7 +368,7 @@ int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt) ...@@ -394,7 +368,7 @@ int ha_myisam::analyze(THD *thd, HA_CHECK_OPT* check_opt)
} }
else if (!mi_is_crashed(file)) else if (!mi_is_crashed(file))
mi_mark_crashed(file); mi_mark_crashed(file);
DBUG_RETURN(error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK); return error ? HA_ADMIN_CORRUPT : HA_ADMIN_OK;
} }
...@@ -406,7 +380,7 @@ int ha_myisam::restore(THD* thd, HA_CHECK_OPT *check_opt) ...@@ -406,7 +380,7 @@ int ha_myisam::restore(THD* thd, HA_CHECK_OPT *check_opt)
char* table_name = table->real_name; char* table_name = table->real_name;
int error; int error;
const char* errmsg; const char* errmsg;
DBUG_ENTER("ha_myisam::restore"); DBUG_ENTER("restore");
if (fn_format_relative_to_data_home(src_path, table_name, backup_dir, if (fn_format_relative_to_data_home(src_path, table_name, backup_dir,
MI_NAME_DEXT)) MI_NAME_DEXT))
...@@ -425,15 +399,17 @@ int ha_myisam::restore(THD* thd, HA_CHECK_OPT *check_opt) ...@@ -425,15 +399,17 @@ int ha_myisam::restore(THD* thd, HA_CHECK_OPT *check_opt)
DBUG_RETURN(repair(thd, &tmp_check_opt)); DBUG_RETURN(repair(thd, &tmp_check_opt));
err: err:
MI_CHECK param; {
myisamchk_init(&param); MI_CHECK param;
param.thd = thd; myisamchk_init(&param);
param.op_name = (char*)"restore"; param.thd = thd;
param.db_name = table->table_cache_key; param.op_name = (char*)"restore";
param.table_name = table->table_name; param.db_name = table->table_cache_key;
param.testflag = 0; param.table_name = table->table_name;
mi_check_print_error(&param,errmsg, my_errno); param.testflag = 0;
DBUG_RETURN(error); mi_check_print_error(&param,errmsg, my_errno);
DBUG_RETURN(error);
}
} }
...@@ -484,15 +460,17 @@ int ha_myisam::backup(THD* thd, HA_CHECK_OPT *check_opt) ...@@ -484,15 +460,17 @@ int ha_myisam::backup(THD* thd, HA_CHECK_OPT *check_opt)
DBUG_RETURN(HA_ADMIN_OK); DBUG_RETURN(HA_ADMIN_OK);
err: err:
MI_CHECK param; {
myisamchk_init(&param); MI_CHECK param;
param.thd = thd; myisamchk_init(&param);
param.op_name = (char*)"backup"; param.thd = thd;
param.db_name = table->table_cache_key; param.op_name = (char*)"backup";
param.table_name = table->table_name; param.db_name = table->table_cache_key;
param.testflag = 0; param.table_name = table->table_name;
mi_check_print_error(&param,errmsg, my_errno); param.testflag = 0;
DBUG_RETURN(error); mi_check_print_error(&param,errmsg, my_errno);
DBUG_RETURN(error);
}
} }
...@@ -501,9 +479,8 @@ int ha_myisam::repair(THD* thd, HA_CHECK_OPT *check_opt) ...@@ -501,9 +479,8 @@ int ha_myisam::repair(THD* thd, HA_CHECK_OPT *check_opt)
int error; int error;
MI_CHECK param; MI_CHECK param;
ha_rows start_records; ha_rows start_records;
DBUG_ENTER("ha_myisam::repair");
if (!file) DBUG_RETURN(HA_ADMIN_INTERNAL_ERROR); if (!file) return HA_ADMIN_INTERNAL_ERROR;
myisamchk_init(&param); myisamchk_init(&param);
param.thd = thd; param.thd = thd;
...@@ -543,14 +520,12 @@ int ha_myisam::repair(THD* thd, HA_CHECK_OPT *check_opt) ...@@ -543,14 +520,12 @@ int ha_myisam::repair(THD* thd, HA_CHECK_OPT *check_opt)
llstr(start_records, llbuff2), llstr(start_records, llbuff2),
table->path); table->path);
} }
DBUG_RETURN(error); return error;
} }
int ha_myisam::optimize(THD* thd, HA_CHECK_OPT *check_opt) int ha_myisam::optimize(THD* thd, HA_CHECK_OPT *check_opt)
{ {
DBUG_ENTER("ha_myisam::optimize"); if (!file) return HA_ADMIN_INTERNAL_ERROR;
if (!file) DBUG_RETURN(HA_ADMIN_INTERNAL_ERROR);
MI_CHECK param; MI_CHECK param;
myisamchk_init(&param); myisamchk_init(&param);
...@@ -559,7 +534,7 @@ int ha_myisam::optimize(THD* thd, HA_CHECK_OPT *check_opt) ...@@ -559,7 +534,7 @@ int ha_myisam::optimize(THD* thd, HA_CHECK_OPT *check_opt)
param.testflag = (check_opt->flags | T_SILENT | T_FORCE_CREATE | param.testflag = (check_opt->flags | T_SILENT | T_FORCE_CREATE |
T_REP_BY_SORT | T_STATISTICS | T_SORT_INDEX); T_REP_BY_SORT | T_STATISTICS | T_SORT_INDEX);
param.sort_buffer_length= check_opt->sort_buffer_size; param.sort_buffer_length= check_opt->sort_buffer_size;
DBUG_RETURN(repair(thd,param,1)); return repair(thd,param,1);
} }
...@@ -694,8 +669,6 @@ int ha_myisam::repair(THD *thd, MI_CHECK &param, bool optimize) ...@@ -694,8 +669,6 @@ int ha_myisam::repair(THD *thd, MI_CHECK &param, bool optimize)
void ha_myisam::deactivate_non_unique_index(ha_rows rows) void ha_myisam::deactivate_non_unique_index(ha_rows rows)
{ {
DBUG_ENTER("ha_myisam::deactivate_non_unique_index");
MYISAM_SHARE* share = file->s; MYISAM_SHARE* share = file->s;
if (share->state.key_map == ((ulonglong) 1L << share->base.keys)-1) if (share->state.key_map == ((ulonglong) 1L << share->base.keys)-1)
{ {
...@@ -717,7 +690,6 @@ void ha_myisam::deactivate_non_unique_index(ha_rows rows) ...@@ -717,7 +690,6 @@ void ha_myisam::deactivate_non_unique_index(ha_rows rows)
} }
else else
enable_activate_all_index=0; enable_activate_all_index=0;
DBUG_VOID_RETURN;
} }
...@@ -726,7 +698,7 @@ bool ha_myisam::activate_all_index(THD *thd) ...@@ -726,7 +698,7 @@ bool ha_myisam::activate_all_index(THD *thd)
int error=0; int error=0;
MI_CHECK param; MI_CHECK param;
MYISAM_SHARE* share = file->s; MYISAM_SHARE* share = file->s;
DBUG_ENTER("ha_myisam::activate_all_index"); DBUG_ENTER("activate_all_index");
mi_extra(file, HA_EXTRA_BULK_INSERT_END, 0); mi_extra(file, HA_EXTRA_BULK_INSERT_END, 0);
table->bulk_insert= 0; table->bulk_insert= 0;
...@@ -780,165 +752,131 @@ bool ha_myisam::check_and_repair(THD *thd) ...@@ -780,165 +752,131 @@ bool ha_myisam::check_and_repair(THD *thd)
bool ha_myisam::is_crashed() const bool ha_myisam::is_crashed() const
{ {
DBUG_ENTER("ha_myisam::is_crashed"); return (file->s->state.changed & STATE_CRASHED ||
(my_disable_locking && file->s->state.open_count));
DBUG_RETURN((file->s->state.changed & STATE_CRASHED ||
(my_disable_locking && file->s->state.open_count)));
} }
int ha_myisam::update_row(const byte * old_data, byte * new_data) int ha_myisam::update_row(const byte * old_data, byte * new_data)
{ {
DBUG_ENTER("ha_myisam::update_row");
statistic_increment(ha_update_count,&LOCK_status); statistic_increment(ha_update_count,&LOCK_status);
if (table->time_stamp) if (table->time_stamp)
update_timestamp(new_data+table->time_stamp-1); update_timestamp(new_data+table->time_stamp-1);
DBUG_RETURN(mi_update(file,old_data,new_data)); return mi_update(file,old_data,new_data);
} }
int ha_myisam::delete_row(const byte * buf) int ha_myisam::delete_row(const byte * buf)
{ {
DBUG_ENTER("ha_myisam::delete_row");
statistic_increment(ha_delete_count,&LOCK_status); statistic_increment(ha_delete_count,&LOCK_status);
DBUG_RETURN(mi_delete(file,buf)); return mi_delete(file,buf);
} }
int ha_myisam::index_read(byte * buf, const byte * key, int ha_myisam::index_read(byte * buf, const byte * key,
uint key_len, enum ha_rkey_function find_flag) uint key_len, enum ha_rkey_function find_flag)
{ {
DBUG_ENTER("ha_myisam::index_read");
statistic_increment(ha_read_key_count,&LOCK_status); statistic_increment(ha_read_key_count,&LOCK_status);
int error=mi_rkey(file,buf,active_index, key, key_len, find_flag); int error=mi_rkey(file,buf,active_index, key, key_len, find_flag);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::index_read_idx(byte * buf, uint index, const byte * key, int ha_myisam::index_read_idx(byte * buf, uint index, const byte * key,
uint key_len, enum ha_rkey_function find_flag) uint key_len, enum ha_rkey_function find_flag)
{ {
DBUG_ENTER("ha_myisam::index_read_idx");
statistic_increment(ha_read_key_count,&LOCK_status); statistic_increment(ha_read_key_count,&LOCK_status);
int error=mi_rkey(file,buf,index, key, key_len, find_flag); int error=mi_rkey(file,buf,index, key, key_len, find_flag);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::index_read_last(byte * buf, const byte * key, uint key_len) int ha_myisam::index_read_last(byte * buf, const byte * key, uint key_len)
{ {
DBUG_ENTER("ha_myisam::index_read_last");
statistic_increment(ha_read_key_count,&LOCK_status); statistic_increment(ha_read_key_count,&LOCK_status);
int error=mi_rkey(file,buf,active_index, key, key_len, HA_READ_PREFIX_LAST); int error=mi_rkey(file,buf,active_index, key, key_len, HA_READ_PREFIX_LAST);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::index_next(byte * buf) int ha_myisam::index_next(byte * buf)
{ {
DBUG_ENTER("ha_myisam::index_next");
statistic_increment(ha_read_next_count,&LOCK_status); statistic_increment(ha_read_next_count,&LOCK_status);
int error=mi_rnext(file,buf,active_index); int error=mi_rnext(file,buf,active_index);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::index_prev(byte * buf) int ha_myisam::index_prev(byte * buf)
{ {
DBUG_ENTER("ha_myisam::index_prev");
statistic_increment(ha_read_prev_count,&LOCK_status); statistic_increment(ha_read_prev_count,&LOCK_status);
int error=mi_rprev(file,buf, active_index); int error=mi_rprev(file,buf, active_index);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::index_first(byte * buf) int ha_myisam::index_first(byte * buf)
{ {
DBUG_ENTER("ha_myisam::index_first");
statistic_increment(ha_read_first_count,&LOCK_status); statistic_increment(ha_read_first_count,&LOCK_status);
int error=mi_rfirst(file, buf, active_index); int error=mi_rfirst(file, buf, active_index);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::index_last(byte * buf) int ha_myisam::index_last(byte * buf)
{ {
DBUG_ENTER("ha_myisam::index_last");
statistic_increment(ha_read_last_count,&LOCK_status); statistic_increment(ha_read_last_count,&LOCK_status);
int error=mi_rlast(file, buf, active_index); int error=mi_rlast(file, buf, active_index);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::index_next_same(byte * buf, int ha_myisam::index_next_same(byte * buf,
const byte *key __attribute__((unused)), const byte *key __attribute__((unused)),
uint length __attribute__((unused))) uint length __attribute__((unused)))
{ {
DBUG_ENTER("ha_myisam::index_next_same");
statistic_increment(ha_read_next_count,&LOCK_status); statistic_increment(ha_read_next_count,&LOCK_status);
int error=mi_rnext_same(file,buf); int error=mi_rnext_same(file,buf);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::rnd_init(bool scan) int ha_myisam::rnd_init(bool scan)
{ {
DBUG_ENTER("ha_myisam::rnd_init");
if (scan) if (scan)
DBUG_RETURN(mi_scan_init(file)); return mi_scan_init(file);
DBUG_RETURN(mi_extra(file, HA_EXTRA_RESET, 0)); return mi_extra(file, HA_EXTRA_RESET, 0);
} }
int ha_myisam::rnd_next(byte *buf) int ha_myisam::rnd_next(byte *buf)
{ {
DBUG_ENTER("ha_myisam::rnd_next");
statistic_increment(ha_read_rnd_next_count,&LOCK_status); statistic_increment(ha_read_rnd_next_count,&LOCK_status);
int error=mi_scan(file, buf); int error=mi_scan(file, buf);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisam::restart_rnd_next(byte *buf, byte *pos) int ha_myisam::restart_rnd_next(byte *buf, byte *pos)
{ {
DBUG_ENTER("ha_myisam::restart_rnd_next"); return rnd_pos(buf,pos);
DBUG_RETURN(rnd_pos(buf,pos));
} }
int ha_myisam::rnd_pos(byte * buf, byte *pos) int ha_myisam::rnd_pos(byte * buf, byte *pos)
{ {
DBUG_ENTER("ha_myisam::rnd_pos");
statistic_increment(ha_read_rnd_count,&LOCK_status); statistic_increment(ha_read_rnd_count,&LOCK_status);
int error=mi_rrnd(file, buf, ha_get_ptr(pos,ref_length)); int error=mi_rrnd(file, buf, ha_get_ptr(pos,ref_length));
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
void ha_myisam::position(const byte* record) void ha_myisam::position(const byte* record)
{ {
my_off_t position=mi_position(file); my_off_t position=mi_position(file);
DBUG_ENTER("ha_myisam::position");
ha_store_ptr(ref, ref_length, position); ha_store_ptr(ref, ref_length, position);
DBUG_VOID_RETURN;
} }
void ha_myisam::info(uint flag) void ha_myisam::info(uint flag)
{ {
MI_ISAMINFO info; MI_ISAMINFO info;
char name_buff[FN_REFLEN]; char name_buff[FN_REFLEN];
DBUG_ENTER("ha_myisam::info");
(void) mi_status(file,&info,flag); (void) mi_status(file,&info,flag);
if (flag & HA_STATUS_VARIABLE) if (flag & HA_STATUS_VARIABLE)
...@@ -992,17 +930,14 @@ void ha_myisam::info(uint flag) ...@@ -992,17 +930,14 @@ void ha_myisam::info(uint flag)
update_time = info.update_time; update_time = info.update_time;
if (flag & HA_STATUS_AUTO) if (flag & HA_STATUS_AUTO)
auto_increment_value= info.auto_increment; auto_increment_value= info.auto_increment;
DBUG_VOID_RETURN;
} }
int ha_myisam::extra(enum ha_extra_function operation) int ha_myisam::extra(enum ha_extra_function operation)
{ {
DBUG_ENTER("ha_myisam::extra");
if ((specialflag & SPECIAL_SAFE_MODE) && operation == HA_EXTRA_KEYREAD) if ((specialflag & SPECIAL_SAFE_MODE) && operation == HA_EXTRA_KEYREAD)
DBUG_RETURN(0); return 0;
DBUG_RETURN(mi_extra(file, operation, 0)); return mi_extra(file, operation, 0);
} }
...@@ -1010,44 +945,34 @@ int ha_myisam::extra(enum ha_extra_function operation) ...@@ -1010,44 +945,34 @@ int ha_myisam::extra(enum ha_extra_function operation)
int ha_myisam::extra_opt(enum ha_extra_function operation, ulong cache_size) int ha_myisam::extra_opt(enum ha_extra_function operation, ulong cache_size)
{ {
DBUG_ENTER("ha_myisam::extra_opt");
if ((specialflag & SPECIAL_SAFE_MODE) & if ((specialflag & SPECIAL_SAFE_MODE) &
(operation == HA_EXTRA_WRITE_CACHE || (operation == HA_EXTRA_WRITE_CACHE ||
operation == HA_EXTRA_BULK_INSERT_BEGIN)) operation == HA_EXTRA_BULK_INSERT_BEGIN))
DBUG_RETURN(0); return 0;
DBUG_RETURN(mi_extra(file, operation, (void*) &cache_size)); return mi_extra(file, operation, (void*) &cache_size);
} }
int ha_myisam::reset(void) int ha_myisam::reset(void)
{ {
DBUG_ENTER("ha_myisam::reset"); return mi_extra(file, HA_EXTRA_RESET, 0);
DBUG_RETURN(mi_extra(file, HA_EXTRA_RESET, 0));
} }
int ha_myisam::delete_all_rows() int ha_myisam::delete_all_rows()
{ {
DBUG_ENTER("ha_myisam::delete_all_rows"); return mi_delete_all_rows(file);
DBUG_RETURN(mi_delete_all_rows(file));
} }
int ha_myisam::delete_table(const char *name) int ha_myisam::delete_table(const char *name)
{ {
DBUG_ENTER("ha_myisam::delete_table"); return mi_delete_table(name);
DBUG_RETURN(mi_delete_table(name));
} }
int ha_myisam::external_lock(THD *thd, int lock_type) int ha_myisam::external_lock(THD *thd, int lock_type)
{ {
DBUG_ENTER("ha_myisam::external_lock");
if (!table->tmp_table) if (!table->tmp_table)
DBUG_RETURN(mi_lock_database(file,lock_type)); return mi_lock_database(file,lock_type);
DBUG_RETURN(0); return 0;
} }
...@@ -1055,18 +980,14 @@ THR_LOCK_DATA **ha_myisam::store_lock(THD *thd, ...@@ -1055,18 +980,14 @@ THR_LOCK_DATA **ha_myisam::store_lock(THD *thd,
THR_LOCK_DATA **to, THR_LOCK_DATA **to,
enum thr_lock_type lock_type) enum thr_lock_type lock_type)
{ {
DBUG_ENTER("**ha_myisam::store_lock");
if (lock_type != TL_IGNORE && file->lock.type == TL_UNLOCK) if (lock_type != TL_IGNORE && file->lock.type == TL_UNLOCK)
file->lock.type=lock_type; file->lock.type=lock_type;
*to++= &file->lock; *to++= &file->lock;
DBUG_RETURN(to); return to;
} }
void ha_myisam::update_create_info(HA_CREATE_INFO *create_info) void ha_myisam::update_create_info(HA_CREATE_INFO *create_info)
{ {
DBUG_ENTER("ha_myisam::update_create_info");
table->file->info(HA_STATUS_AUTO | HA_STATUS_CONST); table->file->info(HA_STATUS_AUTO | HA_STATUS_CONST);
if (!(create_info->used_fields & HA_CREATE_USED_AUTO)) if (!(create_info->used_fields & HA_CREATE_USED_AUTO))
{ {
...@@ -1080,7 +1001,6 @@ void ha_myisam::update_create_info(HA_CREATE_INFO *create_info) ...@@ -1080,7 +1001,6 @@ void ha_myisam::update_create_info(HA_CREATE_INFO *create_info)
} }
create_info->data_file_name=data_file_name; create_info->data_file_name=data_file_name;
create_info->index_file_name=index_file_name; create_info->index_file_name=index_file_name;
DBUG_VOID_RETURN;
} }
...@@ -1276,20 +1196,16 @@ int ha_myisam::create(const char *name, register TABLE *table_arg, ...@@ -1276,20 +1196,16 @@ int ha_myisam::create(const char *name, register TABLE *table_arg,
int ha_myisam::rename_table(const char * from, const char * to) int ha_myisam::rename_table(const char * from, const char * to)
{ {
DBUG_ENTER("ha_myisam::rename_table"); return mi_rename(from,to);
DBUG_RETURN(mi_rename(from,to));
} }
longlong ha_myisam::get_auto_increment() longlong ha_myisam::get_auto_increment()
{ {
DBUG_ENTER("ha_myisam::get_auto_increment");
if (!table->next_number_key_offset) if (!table->next_number_key_offset)
{ // Autoincrement at key-start { // Autoincrement at key-start
ha_myisam::info(HA_STATUS_AUTO); ha_myisam::info(HA_STATUS_AUTO);
DBUG_RETURN(auto_increment_value); return auto_increment_value;
} }
if (table->bulk_insert) if (table->bulk_insert)
...@@ -1310,7 +1226,7 @@ longlong ha_myisam::get_auto_increment() ...@@ -1310,7 +1226,7 @@ longlong ha_myisam::get_auto_increment()
nr=(longlong) nr=(longlong)
table->next_number_field->val_int_offset(table->rec_buff_length)+1; table->next_number_field->val_int_offset(table->rec_buff_length)+1;
extra(HA_EXTRA_NO_KEYREAD); extra(HA_EXTRA_NO_KEYREAD);
DBUG_RETURN(nr); return nr;
} }
...@@ -1320,28 +1236,25 @@ ha_rows ha_myisam::records_in_range(int inx, ...@@ -1320,28 +1236,25 @@ ha_rows ha_myisam::records_in_range(int inx,
const byte *end_key,uint end_key_len, const byte *end_key,uint end_key_len,
enum ha_rkey_function end_search_flag) enum ha_rkey_function end_search_flag)
{ {
DBUG_ENTER("ha_myisam::records_in_range"); return (ha_rows) mi_records_in_range(file,
DBUG_RETURN((ha_rows) mi_records_in_range(file,
inx, inx,
start_key,start_key_len, start_key,start_key_len,
start_search_flag, start_search_flag,
end_key,end_key_len, end_key,end_key_len,
end_search_flag)); end_search_flag);
} }
int ha_myisam::ft_read(byte * buf) int ha_myisam::ft_read(byte * buf)
{ {
int error; int error;
DBUG_ENTER("ha_myisam::ft_read");
if (!ft_handler) if (!ft_handler)
DBUG_RETURN(-1); return -1;
thread_safe_increment(ha_read_next_count,&LOCK_status); // why ? thread_safe_increment(ha_read_next_count,&LOCK_status); // why ?
error=ft_handler->please->read_next(ft_handler,(char*) buf); error=ft_handler->please->read_next(ft_handler,(char*) buf);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
...@@ -38,14 +38,12 @@ const char **ha_myisammrg::bas_ext() const ...@@ -38,14 +38,12 @@ const char **ha_myisammrg::bas_ext() const
int ha_myisammrg::open(const char *name, int mode, uint test_if_locked) int ha_myisammrg::open(const char *name, int mode, uint test_if_locked)
{ {
char name_buff[FN_REFLEN]; char name_buff[FN_REFLEN];
DBUG_ENTER("ha_myisammrg::open");
DBUG_PRINT("info", ("ha_myisammrg::open")); DBUG_PRINT("info", ("ha_myisammrg::open"));
if (!(file=myrg_open(fn_format(name_buff,name,"","",2 | 4), mode, if (!(file=myrg_open(fn_format(name_buff,name,"","",2 | 4), mode,
test_if_locked))) test_if_locked)))
{ {
DBUG_PRINT("info", ("ha_myisammrg::open exit %d", my_errno)); DBUG_PRINT("info", ("ha_myisammrg::open exit %d", my_errno));
DBUG_RETURN((my_errno ? my_errno : -1)); return (my_errno ? my_errno : -1);
} }
DBUG_PRINT("info", ("ha_myisammrg::open myrg_extrafunc...")) DBUG_PRINT("info", ("ha_myisammrg::open myrg_extrafunc..."))
myrg_extrafunc(file, query_cache_invalidate_by_MyISAM_filename_ref); myrg_extrafunc(file, query_cache_invalidate_by_MyISAM_filename_ref);
...@@ -67,165 +65,132 @@ int ha_myisammrg::open(const char *name, int mode, uint test_if_locked) ...@@ -67,165 +65,132 @@ int ha_myisammrg::open(const char *name, int mode, uint test_if_locked)
if (table->crashed) if (table->crashed)
goto err; goto err;
#endif #endif
DBUG_RETURN((0)); return (0);
err: err:
myrg_close(file); myrg_close(file);
file=0; file=0;
DBUG_RETURN((my_errno= HA_ERR_WRONG_TABLE_DEF)); return (my_errno= HA_ERR_WRONG_TABLE_DEF);
} }
int ha_myisammrg::close(void) int ha_myisammrg::close(void)
{ {
DBUG_ENTER("ha_myisammrg::close"); return myrg_close(file);
DBUG_RETURN(myrg_close(file));
} }
int ha_myisammrg::write_row(byte * buf) int ha_myisammrg::write_row(byte * buf)
{ {
DBUG_ENTER("ha_myisammrg::write_row");
statistic_increment(ha_write_count,&LOCK_status); statistic_increment(ha_write_count,&LOCK_status);
if (table->time_stamp) if (table->time_stamp)
update_timestamp(buf+table->time_stamp-1); update_timestamp(buf+table->time_stamp-1);
if (table->next_number_field && buf == table->record[0]) if (table->next_number_field && buf == table->record[0])
update_auto_increment(); update_auto_increment();
DBUG_RETURN(myrg_write(file,buf)); return myrg_write(file,buf);
} }
int ha_myisammrg::update_row(const byte * old_data, byte * new_data) int ha_myisammrg::update_row(const byte * old_data, byte * new_data)
{ {
DBUG_ENTER("ha_myisammrg::update_row");
statistic_increment(ha_update_count,&LOCK_status); statistic_increment(ha_update_count,&LOCK_status);
if (table->time_stamp) if (table->time_stamp)
update_timestamp(new_data+table->time_stamp-1); update_timestamp(new_data+table->time_stamp-1);
DBUG_RETURN(myrg_update(file,old_data,new_data)); return myrg_update(file,old_data,new_data);
} }
int ha_myisammrg::delete_row(const byte * buf) int ha_myisammrg::delete_row(const byte * buf)
{ {
DBUG_ENTER("ha_myisammrg::delete_row");
statistic_increment(ha_delete_count,&LOCK_status); statistic_increment(ha_delete_count,&LOCK_status);
DBUG_RETURN(myrg_delete(file,buf)); return myrg_delete(file,buf);
} }
int ha_myisammrg::index_read(byte * buf, const byte * key, int ha_myisammrg::index_read(byte * buf, const byte * key,
uint key_len, enum ha_rkey_function find_flag) uint key_len, enum ha_rkey_function find_flag)
{ {
DBUG_ENTER("ha_myisammrg::index_read");
statistic_increment(ha_read_key_count,&LOCK_status); statistic_increment(ha_read_key_count,&LOCK_status);
int error=myrg_rkey(file,buf,active_index, key, key_len, find_flag); int error=myrg_rkey(file,buf,active_index, key, key_len, find_flag);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisammrg::index_read_idx(byte * buf, uint index, const byte * key, int ha_myisammrg::index_read_idx(byte * buf, uint index, const byte * key,
uint key_len, enum ha_rkey_function find_flag) uint key_len, enum ha_rkey_function find_flag)
{ {
DBUG_ENTER("ha_myisammrg::index_read_idx");
statistic_increment(ha_read_key_count,&LOCK_status); statistic_increment(ha_read_key_count,&LOCK_status);
int error=myrg_rkey(file,buf,index, key, key_len, find_flag); int error=myrg_rkey(file,buf,index, key, key_len, find_flag);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisammrg::index_read_last(byte * buf, const byte * key, uint key_len) int ha_myisammrg::index_read_last(byte * buf, const byte * key, uint key_len)
{ {
DBUG_ENTER("ha_myisammrg::index_read_last");
statistic_increment(ha_read_key_count,&LOCK_status); statistic_increment(ha_read_key_count,&LOCK_status);
int error=myrg_rkey(file,buf,active_index, key, key_len, int error=myrg_rkey(file,buf,active_index, key, key_len,
HA_READ_PREFIX_LAST); HA_READ_PREFIX_LAST);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisammrg::index_next(byte * buf) int ha_myisammrg::index_next(byte * buf)
{ {
DBUG_ENTER("ha_myisammrg::index_next");
statistic_increment(ha_read_next_count,&LOCK_status); statistic_increment(ha_read_next_count,&LOCK_status);
int error=myrg_rnext(file,buf,active_index); int error=myrg_rnext(file,buf,active_index);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisammrg::index_prev(byte * buf) int ha_myisammrg::index_prev(byte * buf)
{ {
DBUG_ENTER("ha_myisammrg::index_prev");
statistic_increment(ha_read_prev_count,&LOCK_status); statistic_increment(ha_read_prev_count,&LOCK_status);
int error=myrg_rprev(file,buf, active_index); int error=myrg_rprev(file,buf, active_index);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisammrg::index_first(byte * buf) int ha_myisammrg::index_first(byte * buf)
{ {
DBUG_ENTER("ha_myisammrg::index_first");
statistic_increment(ha_read_first_count,&LOCK_status); statistic_increment(ha_read_first_count,&LOCK_status);
int error=myrg_rfirst(file, buf, active_index); int error=myrg_rfirst(file, buf, active_index);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisammrg::index_last(byte * buf) int ha_myisammrg::index_last(byte * buf)
{ {
DBUG_ENTER("ha_myisammrg::index_last");
statistic_increment(ha_read_last_count,&LOCK_status); statistic_increment(ha_read_last_count,&LOCK_status);
int error=myrg_rlast(file, buf, active_index); int error=myrg_rlast(file, buf, active_index);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisammrg::rnd_init(bool scan) int ha_myisammrg::rnd_init(bool scan)
{ {
DBUG_ENTER("ha_myisammrg::rnd_init"); return myrg_extra(file,HA_EXTRA_RESET,0);
DBUG_RETURN(myrg_extra(file,HA_EXTRA_RESET,0));
} }
int ha_myisammrg::rnd_next(byte *buf) int ha_myisammrg::rnd_next(byte *buf)
{ {
DBUG_ENTER("ha_myisammrg::rnd_next");
statistic_increment(ha_read_rnd_next_count,&LOCK_status); statistic_increment(ha_read_rnd_next_count,&LOCK_status);
int error=myrg_rrnd(file, buf, HA_OFFSET_ERROR); int error=myrg_rrnd(file, buf, HA_OFFSET_ERROR);
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
int ha_myisammrg::rnd_pos(byte * buf, byte *pos) int ha_myisammrg::rnd_pos(byte * buf, byte *pos)
{ {
DBUG_ENTER("ha_myisammrg::rnd_pos");
statistic_increment(ha_read_rnd_count,&LOCK_status); statistic_increment(ha_read_rnd_count,&LOCK_status);
int error=myrg_rrnd(file, buf, ha_get_ptr(pos,ref_length)); int error=myrg_rrnd(file, buf, ha_get_ptr(pos,ref_length));
table->status=error ? STATUS_NOT_FOUND: 0; table->status=error ? STATUS_NOT_FOUND: 0;
DBUG_RETURN(error); return error;
} }
void ha_myisammrg::position(const byte *record) void ha_myisammrg::position(const byte *record)
{ {
ulonglong position= myrg_position(file); ulonglong position= myrg_position(file);
DBUG_ENTER("ha_myisammrg::position");
ha_store_ptr(ref, ref_length, (my_off_t) position); ha_store_ptr(ref, ref_length, (my_off_t) position);
DBUG_VOID_RETURN;
} }
void ha_myisammrg::info(uint flag) void ha_myisammrg::info(uint flag)
{ {
MYMERGE_INFO info; MYMERGE_INFO info;
DBUG_ENTER("ha_myisammrg::info");
(void) myrg_status(file,&info,flag); (void) myrg_status(file,&info,flag);
/* /*
The following fails if one has not compiled MySQL with -DBIG_TABLES The following fails if one has not compiled MySQL with -DBIG_TABLES
...@@ -251,20 +216,17 @@ void ha_myisammrg::info(uint flag) ...@@ -251,20 +216,17 @@ void ha_myisammrg::info(uint flag)
#else #else
ref_length=4; // Can't be > than my_off_t ref_length=4; // Can't be > than my_off_t
#endif #endif
DBUG_VOID_RETURN;
} }
int ha_myisammrg::extra(enum ha_extra_function operation) int ha_myisammrg::extra(enum ha_extra_function operation)
{ {
DBUG_ENTER("ha_myisammrg::extra");
/* As this is just a mapping, we don't have to force the underlying /* As this is just a mapping, we don't have to force the underlying
tables to be closed */ tables to be closed */
if (operation == HA_EXTRA_FORCE_REOPEN || if (operation == HA_EXTRA_FORCE_REOPEN ||
operation == HA_EXTRA_PREPARE_FOR_DELETE) operation == HA_EXTRA_PREPARE_FOR_DELETE)
DBUG_RETURN(0); return 0;
DBUG_RETURN(myrg_extra(file,operation,0)); return myrg_extra(file,operation,0);
} }
...@@ -272,35 +234,27 @@ int ha_myisammrg::extra(enum ha_extra_function operation) ...@@ -272,35 +234,27 @@ int ha_myisammrg::extra(enum ha_extra_function operation)
int ha_myisammrg::extra_opt(enum ha_extra_function operation, ulong cache_size) int ha_myisammrg::extra_opt(enum ha_extra_function operation, ulong cache_size)
{ {
DBUG_ENTER("ha_myisammrg::extra_opt");
if ((specialflag & SPECIAL_SAFE_MODE) & if ((specialflag & SPECIAL_SAFE_MODE) &
(operation == HA_EXTRA_WRITE_CACHE || (operation == HA_EXTRA_WRITE_CACHE ||
operation == HA_EXTRA_BULK_INSERT_BEGIN)) operation == HA_EXTRA_BULK_INSERT_BEGIN))
DBUG_RETURN(0); return 0;
DBUG_RETURN(myrg_extra(file, operation, (void*) &cache_size)); return myrg_extra(file, operation, (void*) &cache_size);
} }
int ha_myisammrg::reset(void) int ha_myisammrg::reset(void)
{ {
DBUG_ENTER("ha_myisammrg::reset"); return myrg_extra(file,HA_EXTRA_RESET,0);
DBUG_RETURN(myrg_extra(file,HA_EXTRA_RESET,0));
} }
int ha_myisammrg::external_lock(THD *thd, int lock_type) int ha_myisammrg::external_lock(THD *thd, int lock_type)
{ {
DBUG_ENTER("ha_myisammrg::external_lock"); return myrg_lock_database(file,lock_type);
DBUG_RETURN(myrg_lock_database(file,lock_type));
} }
uint ha_myisammrg::lock_count(void) const uint ha_myisammrg::lock_count(void) const
{ {
DBUG_ENTER("ha_myisammrg::lock_count"); return file->tables;
DBUG_RETURN(file->tables);
} }
...@@ -309,7 +263,6 @@ THR_LOCK_DATA **ha_myisammrg::store_lock(THD *thd, ...@@ -309,7 +263,6 @@ THR_LOCK_DATA **ha_myisammrg::store_lock(THD *thd,
enum thr_lock_type lock_type) enum thr_lock_type lock_type)
{ {
MYRG_TABLE *open_table; MYRG_TABLE *open_table;
DBUG_ENTER("**ha_myisammrg::store_lock");
for (open_table=file->open_tables ; for (open_table=file->open_tables ;
open_table != file->end_table ; open_table != file->end_table ;
...@@ -319,14 +272,13 @@ THR_LOCK_DATA **ha_myisammrg::store_lock(THD *thd, ...@@ -319,14 +272,13 @@ THR_LOCK_DATA **ha_myisammrg::store_lock(THD *thd,
if (lock_type != TL_IGNORE && open_table->table->lock.type == TL_UNLOCK) if (lock_type != TL_IGNORE && open_table->table->lock.type == TL_UNLOCK)
open_table->table->lock.type=lock_type; open_table->table->lock.type=lock_type;
} }
DBUG_RETURN(to); return to;
} }
void ha_myisammrg::update_create_info(HA_CREATE_INFO *create_info) void ha_myisammrg::update_create_info(HA_CREATE_INFO *create_info)
{ {
DBUG_ENTER("ha_myisammrg::update_create_info");
// [phi] auto_increment stuff is missing (but currently not needed) // [phi] auto_increment stuff is missing (but currently not needed)
DBUG_ENTER("ha_myisammrg::update_create_info");
if (!(create_info->used_fields & HA_CREATE_USED_UNION)) if (!(create_info->used_fields & HA_CREATE_USED_UNION))
{ {
MYRG_TABLE *open_table; MYRG_TABLE *open_table;
...@@ -407,8 +359,6 @@ int ha_myisammrg::create(const char *name, register TABLE *form, ...@@ -407,8 +359,6 @@ int ha_myisammrg::create(const char *name, register TABLE *form,
void ha_myisammrg::append_create_info(String *packet) void ha_myisammrg::append_create_info(String *packet)
{ {
char buff[FN_REFLEN]; char buff[FN_REFLEN];
DBUG_ENTER("ha_myisammrg::append_create_info");
if (file->merge_insert_method != MERGE_INSERT_DISABLED) if (file->merge_insert_method != MERGE_INSERT_DISABLED)
{ {
packet->append(" INSERT_METHOD=",15); packet->append(" INSERT_METHOD=",15);
...@@ -428,5 +378,4 @@ void ha_myisammrg::append_create_info(String *packet) ...@@ -428,5 +378,4 @@ void ha_myisammrg::append_create_info(String *packet)
packet->append(buff,(uint) strlen(buff)); packet->append(buff,(uint) strlen(buff));
} }
packet->append(')'); packet->append(')');
DBUG_VOID_RETURN;
} }
...@@ -72,16 +72,14 @@ TYPELIB tx_isolation_typelib= {array_elements(tx_isolation_names)-1,"", ...@@ -72,16 +72,14 @@ TYPELIB tx_isolation_typelib= {array_elements(tx_isolation_names)-1,"",
enum db_type ha_checktype(enum db_type database_type) enum db_type ha_checktype(enum db_type database_type)
{ {
DBUG_ENTER("ha_checktype");
switch (database_type) { switch (database_type) {
#ifdef HAVE_BERKELEY_DB #ifdef HAVE_BERKELEY_DB
case DB_TYPE_BERKELEY_DB: case DB_TYPE_BERKELEY_DB:
DBUG_RETURN((berkeley_skip ? DB_TYPE_MYISAM : database_type)); return(berkeley_skip ? DB_TYPE_MYISAM : database_type);
#endif #endif
#ifdef HAVE_INNOBASE_DB #ifdef HAVE_INNOBASE_DB
case DB_TYPE_INNODB: case DB_TYPE_INNODB:
DBUG_RETURN((innodb_skip ? DB_TYPE_MYISAM : database_type)); return(innodb_skip ? DB_TYPE_MYISAM : database_type);
#endif #endif
#ifndef NO_HASH #ifndef NO_HASH
case DB_TYPE_HASH: case DB_TYPE_HASH:
...@@ -93,57 +91,52 @@ enum db_type ha_checktype(enum db_type database_type) ...@@ -93,57 +91,52 @@ enum db_type ha_checktype(enum db_type database_type)
case DB_TYPE_HEAP: case DB_TYPE_HEAP:
case DB_TYPE_MYISAM: case DB_TYPE_MYISAM:
case DB_TYPE_MRG_MYISAM: case DB_TYPE_MRG_MYISAM:
DBUG_RETURN((database_type)); /* Database exists on system */ return (database_type); /* Database exists on system */
default: default:
break; break;
} }
DBUG_RETURN((DB_TYPE_MYISAM)); /* Use this as default */ return(DB_TYPE_MYISAM); /* Use this as default */
} /* ha_checktype */ } /* ha_checktype */
handler *get_new_handler(TABLE *table, enum db_type db_type) handler *get_new_handler(TABLE *table, enum db_type db_type)
{ {
DBUG_ENTER("*get_new_handler");
switch (db_type) { switch (db_type) {
#ifndef NO_HASH #ifndef NO_HASH
DBUG_RETURN(new ha_hash(table)); return new ha_hash(table);
#endif #endif
#ifdef HAVE_ISAM #ifdef HAVE_ISAM
case DB_TYPE_MRG_ISAM: case DB_TYPE_MRG_ISAM:
DBUG_RETURN(new ha_isammrg(table)); return new ha_isammrg(table);
case DB_TYPE_ISAM: case DB_TYPE_ISAM:
DBUG_RETURN(new ha_isam(table)); return new ha_isam(table);
#endif #endif
#ifdef HAVE_BERKELEY_DB #ifdef HAVE_BERKELEY_DB
case DB_TYPE_BERKELEY_DB: case DB_TYPE_BERKELEY_DB:
DBUG_RETURN(new ha_berkeley(table)); return new ha_berkeley(table);
#endif #endif
#ifdef HAVE_INNOBASE_DB #ifdef HAVE_INNOBASE_DB
case DB_TYPE_INNODB: case DB_TYPE_INNODB:
DBUG_RETURN(new ha_innobase(table)); return new ha_innobase(table);
#endif #endif
case DB_TYPE_HEAP: case DB_TYPE_HEAP:
DBUG_RETURN(new ha_heap(table)); return new ha_heap(table);
case DB_TYPE_MYISAM: case DB_TYPE_MYISAM:
default: // should never happen default: // should never happen
DBUG_RETURN(new ha_myisam(table)); return new ha_myisam(table);
case DB_TYPE_MRG_MYISAM: case DB_TYPE_MRG_MYISAM:
DBUG_RETURN(new ha_myisammrg(table)); return new ha_myisammrg(table);
} }
DBUG_RETURN(NULL); // impossible
} }
int ha_init() int ha_init()
{ {
DBUG_ENTER("ha_init");
#ifdef HAVE_BERKELEY_DB #ifdef HAVE_BERKELEY_DB
if (!berkeley_skip) if (!berkeley_skip)
{ {
int error; int error;
if ((error=berkeley_init())) if ((error=berkeley_init()))
DBUG_RETURN(error); return error;
if (!berkeley_skip) // If we couldn't use handler if (!berkeley_skip) // If we couldn't use handler
opt_using_transactions=1; opt_using_transactions=1;
else else
...@@ -154,14 +147,14 @@ int ha_init() ...@@ -154,14 +147,14 @@ int ha_init()
if (!innodb_skip) if (!innodb_skip)
{ {
if (innobase_init()) if (innobase_init())
DBUG_RETURN(-1); return -1;
if (!innodb_skip) // If we couldn't use handler if (!innodb_skip) // If we couldn't use handler
opt_using_transactions=1; opt_using_transactions=1;
else else
have_innodb=SHOW_OPTION_DISABLED; have_innodb=SHOW_OPTION_DISABLED;
} }
#endif #endif
DBUG_RETURN(0); return 0;
} }
/* close, flush or restart databases */ /* close, flush or restart databases */
...@@ -170,8 +163,6 @@ int ha_init() ...@@ -170,8 +163,6 @@ int ha_init()
int ha_panic(enum ha_panic_function flag) int ha_panic(enum ha_panic_function flag)
{ {
int error=0; int error=0;
DBUG_ENTER("ha_panic");
#ifndef NO_HASH #ifndef NO_HASH
error|=h_panic(flag); /* fix hash */ error|=h_panic(flag); /* fix hash */
#endif #endif
...@@ -190,29 +181,23 @@ int ha_panic(enum ha_panic_function flag) ...@@ -190,29 +181,23 @@ int ha_panic(enum ha_panic_function flag)
if (!innodb_skip) if (!innodb_skip)
error|=innobase_end(); error|=innobase_end();
#endif #endif
DBUG_RETURN(error); return error;
} /* ha_panic */ } /* ha_panic */
void ha_drop_database(char* path) void ha_drop_database(char* path)
{ {
DBUG_ENTER("ha_drop_database");
#ifdef HAVE_INNOBASE_DB #ifdef HAVE_INNOBASE_DB
if (!innodb_skip) if (!innodb_skip)
innobase_drop_database(path); innobase_drop_database(path);
#endif #endif
DBUG_VOID_RETURN;
} }
void ha_close_connection(THD* thd) void ha_close_connection(THD* thd)
{ {
DBUG_ENTER("ha_close_connection");
#ifdef HAVE_INNOBASE_DB #ifdef HAVE_INNOBASE_DB
if (!innodb_skip) if (!innodb_skip)
innobase_close_connection(thd); innobase_close_connection(thd);
#endif #endif
DBUG_VOID_RETURN;
} }
/* /*
...@@ -262,8 +247,6 @@ int ha_report_binlog_offset_and_commit(THD *thd, ...@@ -262,8 +247,6 @@ int ha_report_binlog_offset_and_commit(THD *thd,
my_off_t end_offset) my_off_t end_offset)
{ {
int error= 0; int error= 0;
DBUG_ENTER("ha_report_binlog_offset_and_commit");
#ifdef HAVE_INNOBASE_DB #ifdef HAVE_INNOBASE_DB
THD_TRANS *trans; THD_TRANS *trans;
trans = &thd->transaction.all; trans = &thd->transaction.all;
...@@ -280,7 +263,7 @@ int ha_report_binlog_offset_and_commit(THD *thd, ...@@ -280,7 +263,7 @@ int ha_report_binlog_offset_and_commit(THD *thd,
trans->innodb_active_trans=0; trans->innodb_active_trans=0;
} }
#endif #endif
DBUG_RETURN(error); return error;
} }
int ha_commit_trans(THD *thd, THD_TRANS* trans) int ha_commit_trans(THD *thd, THD_TRANS* trans)
...@@ -398,8 +381,6 @@ int ha_rollback_trans(THD *thd, THD_TRANS *trans) ...@@ -398,8 +381,6 @@ int ha_rollback_trans(THD *thd, THD_TRANS *trans)
bool ha_flush_logs() bool ha_flush_logs()
{ {
bool result=0; bool result=0;
DBUG_ENTER("ha_flush_logs");
#ifdef HAVE_BERKELEY_DB #ifdef HAVE_BERKELEY_DB
if (!berkeley_skip && berkeley_flush_logs()) if (!berkeley_skip && berkeley_flush_logs())
result=1; result=1;
...@@ -408,7 +389,7 @@ bool ha_flush_logs() ...@@ -408,7 +389,7 @@ bool ha_flush_logs()
if (!innodb_skip && innobase_flush_logs()) if (!innodb_skip && innobase_flush_logs())
result=1; result=1;
#endif #endif
DBUG_RETURN(result); return result;
} }
/* /*
...@@ -419,19 +400,15 @@ bool ha_flush_logs() ...@@ -419,19 +400,15 @@ bool ha_flush_logs()
int ha_delete_table(enum db_type table_type, const char *path) int ha_delete_table(enum db_type table_type, const char *path)
{ {
handler *file=get_new_handler((TABLE*) 0, table_type); handler *file=get_new_handler((TABLE*) 0, table_type);
DBUG_ENTER("ha_delete_table");
if (!file) if (!file)
DBUG_RETURN(ENOENT); return ENOENT;
int error=file->delete_table(path); int error=file->delete_table(path);
delete file; delete file;
DBUG_RETURN(error); return error;
} }
void ha_store_ptr(byte *buff, uint pack_length, my_off_t pos) void ha_store_ptr(byte *buff, uint pack_length, my_off_t pos)
{ {
DBUG_ENTER("ha_store_ptr");
switch (pack_length) { switch (pack_length) {
#if SIZEOF_OFF_T > 4 #if SIZEOF_OFF_T > 4
case 8: mi_int8store(buff,pos); break; case 8: mi_int8store(buff,pos); break;
...@@ -444,14 +421,12 @@ void ha_store_ptr(byte *buff, uint pack_length, my_off_t pos) ...@@ -444,14 +421,12 @@ void ha_store_ptr(byte *buff, uint pack_length, my_off_t pos)
case 2: mi_int2store(buff,(uint) pos); break; case 2: mi_int2store(buff,(uint) pos); break;
case 1: buff[0]= (uchar) pos; break; case 1: buff[0]= (uchar) pos; break;
} }
DBUG_VOID_RETURN; return;
} }
my_off_t ha_get_ptr(byte *ptr, uint pack_length) my_off_t ha_get_ptr(byte *ptr, uint pack_length)
{ {
my_off_t pos; my_off_t pos;
DBUG_ENTER("ha_get_ptr");
switch (pack_length) { switch (pack_length) {
#if SIZEOF_OFF_T > 4 #if SIZEOF_OFF_T > 4
case 8: case 8:
...@@ -483,7 +458,7 @@ my_off_t ha_get_ptr(byte *ptr, uint pack_length) ...@@ -483,7 +458,7 @@ my_off_t ha_get_ptr(byte *ptr, uint pack_length)
pos=0; // Impossible pos=0; // Impossible
break; break;
} }
DBUG_RETURN(pos); return pos;
} }
/**************************************************************************** /****************************************************************************
...@@ -537,44 +512,32 @@ int handler::ha_open(const char *name, int mode, int test_if_locked) ...@@ -537,44 +512,32 @@ int handler::ha_open(const char *name, int mode, int test_if_locked)
int handler::check(THD* thd, HA_CHECK_OPT* check_opt) int handler::check(THD* thd, HA_CHECK_OPT* check_opt)
{ {
DBUG_ENTER("handler::check"); return HA_ADMIN_NOT_IMPLEMENTED;
DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
} }
int handler::backup(THD* thd, HA_CHECK_OPT* check_opt) int handler::backup(THD* thd, HA_CHECK_OPT* check_opt)
{ {
DBUG_ENTER("handler::backup"); return HA_ADMIN_NOT_IMPLEMENTED;
DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
} }
int handler::restore(THD* thd, HA_CHECK_OPT* check_opt) int handler::restore(THD* thd, HA_CHECK_OPT* check_opt)
{ {
DBUG_ENTER("handler::restore"); return HA_ADMIN_NOT_IMPLEMENTED;
DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
} }
int handler::repair(THD* thd, HA_CHECK_OPT* check_opt) int handler::repair(THD* thd, HA_CHECK_OPT* check_opt)
{ {
DBUG_ENTER("handler::repair"); return HA_ADMIN_NOT_IMPLEMENTED;
DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
} }
int handler::optimize(THD* thd, HA_CHECK_OPT* check_opt) int handler::optimize(THD* thd, HA_CHECK_OPT* check_opt)
{ {
DBUG_ENTER("handler::optimize"); return HA_ADMIN_NOT_IMPLEMENTED;
DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
} }
int handler::analyze(THD* thd, HA_CHECK_OPT* check_opt) int handler::analyze(THD* thd, HA_CHECK_OPT* check_opt)
{ {
DBUG_ENTER("handler::analyze"); return HA_ADMIN_NOT_IMPLEMENTED;
DBUG_RETURN(HA_ADMIN_NOT_IMPLEMENTED);
} }
/* /*
...@@ -619,9 +582,7 @@ int handler::read_first_row(byte * buf, uint primary_key) ...@@ -619,9 +582,7 @@ int handler::read_first_row(byte * buf, uint primary_key)
int handler::restart_rnd_next(byte *buf, byte *pos) int handler::restart_rnd_next(byte *buf, byte *pos)
{ {
DBUG_ENTER("handler::restart_rnd_next"); return HA_ERR_WRONG_COMMAND;
DBUG_RETURN(HA_ERR_WRONG_COMMAND);
} }
...@@ -630,8 +591,6 @@ int handler::restart_rnd_next(byte *buf, byte *pos) ...@@ -630,8 +591,6 @@ int handler::restart_rnd_next(byte *buf, byte *pos)
void handler::update_timestamp(byte *record) void handler::update_timestamp(byte *record)
{ {
long skr= (long) current_thd->query_start(); long skr= (long) current_thd->query_start();
DBUG_ENTER("handler::update_timestamp");
#ifdef WORDS_BIGENDIAN #ifdef WORDS_BIGENDIAN
if (table->db_low_byte_first) if (table->db_low_byte_first)
{ {
...@@ -640,7 +599,7 @@ void handler::update_timestamp(byte *record) ...@@ -640,7 +599,7 @@ void handler::update_timestamp(byte *record)
else else
#endif #endif
longstore(record,skr); longstore(record,skr);
DBUG_VOID_RETURN; return;
} }
/* /*
...@@ -674,7 +633,6 @@ longlong handler::get_auto_increment() ...@@ -674,7 +633,6 @@ longlong handler::get_auto_increment()
{ {
longlong nr; longlong nr;
int error; int error;
DBUG_ENTER("handler::get_auto_increment");
(void) extra(HA_EXTRA_KEYREAD); (void) extra(HA_EXTRA_KEYREAD);
index_init(table->next_number_index); index_init(table->next_number_index);
...@@ -698,7 +656,7 @@ longlong handler::get_auto_increment() ...@@ -698,7 +656,7 @@ longlong handler::get_auto_increment()
val_int_offset(table->rec_buff_length)+1; val_int_offset(table->rec_buff_length)+1;
index_end(); index_end();
(void) extra(HA_EXTRA_NO_KEYREAD); (void) extra(HA_EXTRA_NO_KEYREAD);
DBUG_RETURN(nr); return nr;
} }
/* Print error that we got from handler function */ /* Print error that we got from handler function */
...@@ -820,8 +778,6 @@ uint handler::get_dup_key(int error) ...@@ -820,8 +778,6 @@ uint handler::get_dup_key(int error)
int handler::delete_table(const char *name) int handler::delete_table(const char *name)
{ {
int error=0; int error=0;
DBUG_ENTER("handler::delete_table");
for (const char **ext=bas_ext(); *ext ; ext++) for (const char **ext=bas_ext(); *ext ; ext++)
{ {
if (delete_file(name,*ext,2)) if (delete_file(name,*ext,2))
...@@ -830,7 +786,7 @@ int handler::delete_table(const char *name) ...@@ -830,7 +786,7 @@ int handler::delete_table(const char *name)
break; break;
} }
} }
DBUG_RETURN(error); return error;
} }
...@@ -851,16 +807,14 @@ int handler::rename_table(const char * from, const char * to) ...@@ -851,16 +807,14 @@ int handler::rename_table(const char * from, const char * to)
int ha_recovery_logging(THD *thd, bool on) int ha_recovery_logging(THD *thd, bool on)
{ {
int error=0; int error=0;
DBUG_ENTER("ha_recovery_logging");
DBUG_ENTER("ha_recovery_logging");
DBUG_RETURN(error); DBUG_RETURN(error);
} }
int handler::index_next_same(byte *buf, const byte *key, uint keylen) int handler::index_next_same(byte *buf, const byte *key, uint keylen)
{ {
int error; int error;
DBUG_ENTER("handler::index_next_same");
if (!(error=index_next(buf))) if (!(error=index_next(buf)))
{ {
if (key_cmp(table, key, active_index, keylen)) if (key_cmp(table, key, active_index, keylen))
...@@ -869,7 +823,7 @@ int handler::index_next_same(byte *buf, const byte *key, uint keylen) ...@@ -869,7 +823,7 @@ int handler::index_next_same(byte *buf, const byte *key, uint keylen)
error=HA_ERR_END_OF_FILE; error=HA_ERR_END_OF_FILE;
} }
} }
DBUG_RETURN(error); return error;
} }
...@@ -882,9 +836,7 @@ int handler::index_next_same(byte *buf, const byte *key, uint keylen) ...@@ -882,9 +836,7 @@ int handler::index_next_same(byte *buf, const byte *key, uint keylen)
int handler::delete_all_rows() int handler::delete_all_rows()
{ {
DBUG_ENTER("handler::delete_all_rows"); return (my_errno=HA_ERR_WRONG_COMMAND);
DBUG_RETURN((my_errno=HA_ERR_WRONG_COMMAND));
} }
/**************************************************************************** /****************************************************************************
...@@ -930,37 +882,26 @@ int ha_create_table(const char *name, HA_CREATE_INFO *create_info, ...@@ -930,37 +882,26 @@ int ha_create_table(const char *name, HA_CREATE_INFO *create_info,
void ha_key_cache(void) void ha_key_cache(void)
{ {
DBUG_ENTER("ha_key_cache");
if (keybuff_size) if (keybuff_size)
(void) init_key_cache(keybuff_size); (void) init_key_cache(keybuff_size);
DBUG_VOID_RETURN;
} }
void ha_resize_key_cache(void) void ha_resize_key_cache(void)
{ {
DBUG_ENTER("ha_resize_key_cache");
(void) resize_key_cache(keybuff_size); (void) resize_key_cache(keybuff_size);
DBUG_VOID_RETURN;
} }
static int NEAR_F delete_file(const char *name,const char *ext,int extflag) static int NEAR_F delete_file(const char *name,const char *ext,int extflag)
{ {
char buff[FN_REFLEN]; char buff[FN_REFLEN];
DBUG_ENTER("delete_file");
VOID(fn_format(buff,name,"",ext,extflag | 4)); VOID(fn_format(buff,name,"",ext,extflag | 4));
DBUG_RETURN((my_delete_with_symlink(buff,MYF(MY_WME)))); return(my_delete_with_symlink(buff,MYF(MY_WME)));
} }
void st_ha_check_opt::init() void st_ha_check_opt::init()
{ {
DBUG_ENTER("st_ha_check_opt::init");
flags= sql_flags= 0; flags= sql_flags= 0;
sort_buffer_size = current_thd->variables.myisam_sort_buff_size; sort_buffer_size = current_thd->variables.myisam_sort_buff_size;
DBUG_VOID_RETURN;
} }
...@@ -100,8 +100,6 @@ class SEL_ARG :public Sql_alloc ...@@ -100,8 +100,6 @@ class SEL_ARG :public Sql_alloc
{ // Get overlapping range { // Get overlapping range
char *new_min,*new_max; char *new_min,*new_max;
uint8 flag_min,flag_max; uint8 flag_min,flag_max;
DBUG_ENTER("*clone_and");
if (cmp_min_to_min(arg) >= 0) if (cmp_min_to_min(arg) >= 0)
{ {
new_min=min_value; flag_min=min_flag; new_min=min_value; flag_min=min_flag;
...@@ -118,83 +116,64 @@ class SEL_ARG :public Sql_alloc ...@@ -118,83 +116,64 @@ class SEL_ARG :public Sql_alloc
{ {
new_max=arg->max_value; flag_max=arg->max_flag; new_max=arg->max_value; flag_max=arg->max_flag;
} }
DBUG_RETURN(new SEL_ARG(field, part, new_min, new_max, flag_min, flag_max, return new SEL_ARG(field, part, new_min, new_max, flag_min, flag_max,
test(maybe_flag && arg->maybe_flag))); test(maybe_flag && arg->maybe_flag));
} }
SEL_ARG *clone_first(SEL_ARG *arg) SEL_ARG *clone_first(SEL_ARG *arg)
{ // min <= X < arg->min { // min <= X < arg->min
DBUG_ENTER("*clone_first"); return new SEL_ARG(field,part, min_value, arg->min_value,
DBUG_RETURN(new SEL_ARG(field,part, min_value, arg->min_value,
min_flag, arg->min_flag & NEAR_MIN ? 0 : NEAR_MAX, min_flag, arg->min_flag & NEAR_MIN ? 0 : NEAR_MAX,
maybe_flag | arg->maybe_flag)); maybe_flag | arg->maybe_flag);
} }
SEL_ARG *clone_last(SEL_ARG *arg) SEL_ARG *clone_last(SEL_ARG *arg)
{ // min <= X <= key_max { // min <= X <= key_max
DBUG_ENTER("*clone_last"); return new SEL_ARG(field, part, min_value, arg->max_value,
min_flag, arg->max_flag, maybe_flag | arg->maybe_flag);
DBUG_RETURN(new SEL_ARG(field, part, min_value, arg->max_value,
min_flag, arg->max_flag, maybe_flag | arg->maybe_flag));
} }
SEL_ARG *clone(SEL_ARG *new_parent,SEL_ARG **next); SEL_ARG *clone(SEL_ARG *new_parent,SEL_ARG **next);
bool copy_min(SEL_ARG* arg) bool copy_min(SEL_ARG* arg)
{ // Get overlapping range { // Get overlapping range
DBUG_ENTER("copy_min");
if (cmp_min_to_min(arg) > 0) if (cmp_min_to_min(arg) > 0)
{ {
min_value=arg->min_value; min_flag=arg->min_flag; min_value=arg->min_value; min_flag=arg->min_flag;
if ((max_flag & (NO_MAX_RANGE | NO_MIN_RANGE)) == if ((max_flag & (NO_MAX_RANGE | NO_MIN_RANGE)) ==
(NO_MAX_RANGE | NO_MIN_RANGE)) (NO_MAX_RANGE | NO_MIN_RANGE))
DBUG_RETURN(1); // Full range return 1; // Full range
} }
maybe_flag|=arg->maybe_flag; maybe_flag|=arg->maybe_flag;
DBUG_RETURN(0); return 0;
} }
bool copy_max(SEL_ARG* arg) bool copy_max(SEL_ARG* arg)
{ // Get overlapping range { // Get overlapping range
DBUG_ENTER("copy_max");
if (cmp_max_to_max(arg) <= 0) if (cmp_max_to_max(arg) <= 0)
{ {
max_value=arg->max_value; max_flag=arg->max_flag; max_value=arg->max_value; max_flag=arg->max_flag;
if ((max_flag & (NO_MAX_RANGE | NO_MIN_RANGE)) == if ((max_flag & (NO_MAX_RANGE | NO_MIN_RANGE)) ==
(NO_MAX_RANGE | NO_MIN_RANGE)) (NO_MAX_RANGE | NO_MIN_RANGE))
DBUG_RETURN(1); // Full range return 1; // Full range
} }
maybe_flag|=arg->maybe_flag; maybe_flag|=arg->maybe_flag;
DBUG_RETURN(0); return 0;
} }
void copy_min_to_min(SEL_ARG *arg) void copy_min_to_min(SEL_ARG *arg)
{ {
DBUG_ENTER("copy_min_to_min");
min_value=arg->min_value; min_flag=arg->min_flag; min_value=arg->min_value; min_flag=arg->min_flag;
DBUG_VOID_RETURN;
} }
void copy_min_to_max(SEL_ARG *arg) void copy_min_to_max(SEL_ARG *arg)
{ {
DBUG_ENTER("copy_min_to_max");
max_value=arg->min_value; max_value=arg->min_value;
max_flag=arg->min_flag & NEAR_MIN ? 0 : NEAR_MAX; max_flag=arg->min_flag & NEAR_MIN ? 0 : NEAR_MAX;
DBUG_VOID_RETURN;
} }
void copy_max_to_min(SEL_ARG *arg) void copy_max_to_min(SEL_ARG *arg)
{ {
DBUG_ENTER("copy_max_to_min");
min_value=arg->max_value; min_value=arg->max_value;
min_flag=arg->max_flag & NEAR_MAX ? 0 : NEAR_MIN; min_flag=arg->max_flag & NEAR_MAX ? 0 : NEAR_MIN;
DBUG_VOID_RETURN;
} }
void store(uint length,char **min_key,uint min_key_flag, void store(uint length,char **min_key,uint min_key_flag,
char **max_key, uint max_key_flag) char **max_key, uint max_key_flag)
{ {
DBUG_ENTER("store");
if (!(min_flag & NO_MIN_RANGE) && if (!(min_flag & NO_MIN_RANGE) &&
!(min_key_flag & (NO_MIN_RANGE | NEAR_MIN))) !(min_key_flag & (NO_MIN_RANGE | NEAR_MIN)))
{ {
...@@ -219,14 +198,11 @@ class SEL_ARG :public Sql_alloc ...@@ -219,14 +198,11 @@ class SEL_ARG :public Sql_alloc
memcpy(*max_key,max_value,length+(int) maybe_null); memcpy(*max_key,max_value,length+(int) maybe_null);
(*max_key)+= length+(int) maybe_null; (*max_key)+= length+(int) maybe_null;
} }
DBUG_VOID_RETURN;
} }
void store_min_key(KEY_PART *key,char **range_key, uint *range_key_flag) void store_min_key(KEY_PART *key,char **range_key, uint *range_key_flag)
{ {
SEL_ARG *key_tree= first(); SEL_ARG *key_tree= first();
DBUG_ENTER("store_min_key");
key_tree->store(key[key_tree->part].part_length, key_tree->store(key[key_tree->part].part_length,
range_key,*range_key_flag,range_key,NO_MAX_RANGE); range_key,*range_key_flag,range_key,NO_MAX_RANGE);
*range_key_flag|= key_tree->min_flag; *range_key_flag|= key_tree->min_flag;
...@@ -235,14 +211,11 @@ class SEL_ARG :public Sql_alloc ...@@ -235,14 +211,11 @@ class SEL_ARG :public Sql_alloc
!(*range_key_flag & (NO_MIN_RANGE | NEAR_MIN)) && !(*range_key_flag & (NO_MIN_RANGE | NEAR_MIN)) &&
key_tree->next_key_part->type == SEL_ARG::KEY_RANGE) key_tree->next_key_part->type == SEL_ARG::KEY_RANGE)
key_tree->next_key_part->store_min_key(key,range_key, range_key_flag); key_tree->next_key_part->store_min_key(key,range_key, range_key_flag);
DBUG_VOID_RETURN;
} }
void store_max_key(KEY_PART *key,char **range_key, uint *range_key_flag) void store_max_key(KEY_PART *key,char **range_key, uint *range_key_flag)
{ {
SEL_ARG *key_tree= last(); SEL_ARG *key_tree= last();
DBUG_ENTER("store_max_key");
key_tree->store(key[key_tree->part].part_length, key_tree->store(key[key_tree->part].part_length,
range_key, NO_MIN_RANGE, range_key,*range_key_flag); range_key, NO_MIN_RANGE, range_key,*range_key_flag);
(*range_key_flag)|= key_tree->max_flag; (*range_key_flag)|= key_tree->max_flag;
...@@ -251,7 +224,6 @@ class SEL_ARG :public Sql_alloc ...@@ -251,7 +224,6 @@ class SEL_ARG :public Sql_alloc
!(*range_key_flag & (NO_MAX_RANGE | NEAR_MAX)) && !(*range_key_flag & (NO_MAX_RANGE | NEAR_MAX)) &&
key_tree->next_key_part->type == SEL_ARG::KEY_RANGE) key_tree->next_key_part->type == SEL_ARG::KEY_RANGE)
key_tree->next_key_part->store_max_key(key,range_key, range_key_flag); key_tree->next_key_part->store_max_key(key,range_key, range_key_flag);
DBUG_VOID_RETURN;
} }
SEL_ARG *insert(SEL_ARG *key); SEL_ARG *insert(SEL_ARG *key);
...@@ -272,8 +244,6 @@ class SEL_ARG :public Sql_alloc ...@@ -272,8 +244,6 @@ class SEL_ARG :public Sql_alloc
} }
void increment_use_count(long count) void increment_use_count(long count)
{ {
DBUG_ENTER("increment_use_count");
if (next_key_part) if (next_key_part)
{ {
next_key_part->use_count+=count; next_key_part->use_count+=count;
...@@ -282,19 +252,15 @@ class SEL_ARG :public Sql_alloc ...@@ -282,19 +252,15 @@ class SEL_ARG :public Sql_alloc
if (pos->next_key_part) if (pos->next_key_part)
pos->increment_use_count(count); pos->increment_use_count(count);
} }
DBUG_VOID_RETURN;
} }
void free_tree() void free_tree()
{ {
DBUG_ENTER("free_tree");
for (SEL_ARG *pos=first(); pos ; pos=pos->next) for (SEL_ARG *pos=first(); pos ; pos=pos->next)
if (pos->next_key_part) if (pos->next_key_part)
{ {
pos->next_key_part->use_count--; pos->next_key_part->use_count--;
pos->next_key_part->free_tree(); pos->next_key_part->free_tree();
} }
DBUG_VOID_RETURN;
} }
inline SEL_ARG **parent_ptr() inline SEL_ARG **parent_ptr()
...@@ -403,23 +369,17 @@ SQL_SELECT *make_select(TABLE *head, table_map const_tables, ...@@ -403,23 +369,17 @@ SQL_SELECT *make_select(TABLE *head, table_map const_tables,
SQL_SELECT::SQL_SELECT() :quick(0),cond(0),free_cond(0) SQL_SELECT::SQL_SELECT() :quick(0),cond(0),free_cond(0)
{ {
DBUG_ENTER("SQL_SELECT::SQL_SELECT");
quick_keys=0; needed_reg=0; quick_keys=0; needed_reg=0;
my_b_clear(&file); my_b_clear(&file);
DBUG_VOID_RETURN;
} }
SQL_SELECT::~SQL_SELECT() SQL_SELECT::~SQL_SELECT()
{ {
delete quick; delete quick;
DBUG_ENTER("SQL_SELECT::~SQL_SELECT");
if (free_cond) if (free_cond)
delete cond; delete cond;
close_cached_file(&file); close_cached_file(&file);
DBUG_VOID_RETURN;
} }
#undef index // Fix for Unixware 7 #undef index // Fix for Unixware 7
...@@ -428,8 +388,6 @@ QUICK_SELECT::QUICK_SELECT(TABLE *table,uint key_nr,bool no_alloc) ...@@ -428,8 +388,6 @@ QUICK_SELECT::QUICK_SELECT(TABLE *table,uint key_nr,bool no_alloc)
:dont_free(0),error(0),index(key_nr),max_used_key_length(0),head(table), :dont_free(0),error(0),index(key_nr),max_used_key_length(0),head(table),
it(ranges),range(0) it(ranges),range(0)
{ {
DBUG_ENTER("QUICK_SELECT::QUICK_SELECT");
if (!no_alloc) if (!no_alloc)
{ {
init_sql_alloc(&alloc,1024,0); // Allocates everything here init_sql_alloc(&alloc,1024,0); // Allocates everything here
...@@ -440,19 +398,15 @@ QUICK_SELECT::QUICK_SELECT(TABLE *table,uint key_nr,bool no_alloc) ...@@ -440,19 +398,15 @@ QUICK_SELECT::QUICK_SELECT(TABLE *table,uint key_nr,bool no_alloc)
file=head->file; file=head->file;
record=head->record[0]; record=head->record[0];
init(); init();
DBUG_VOID_RETURN;
} }
QUICK_SELECT::~QUICK_SELECT() QUICK_SELECT::~QUICK_SELECT()
{ {
DBUG_ENTER("QUICK_SELECT::~QUICK_SELECT");
if (!dont_free) if (!dont_free)
{ {
file->index_end(); file->index_end();
free_root(&alloc,MYF(0)); free_root(&alloc,MYF(0));
} }
DBUG_VOID_RETURN;
} }
QUICK_RANGE::QUICK_RANGE() QUICK_RANGE::QUICK_RANGE()
...@@ -462,8 +416,6 @@ QUICK_RANGE::QUICK_RANGE() ...@@ -462,8 +416,6 @@ QUICK_RANGE::QUICK_RANGE()
SEL_ARG::SEL_ARG(SEL_ARG &arg) :Sql_alloc() SEL_ARG::SEL_ARG(SEL_ARG &arg) :Sql_alloc()
{ {
DBUG_ENTER("SEL_ARG::SEL_ARG");
type=arg.type; type=arg.type;
min_flag=arg.min_flag; min_flag=arg.min_flag;
max_flag=arg.max_flag; max_flag=arg.max_flag;
...@@ -475,7 +427,6 @@ SEL_ARG::SEL_ARG(SEL_ARG &arg) :Sql_alloc() ...@@ -475,7 +427,6 @@ SEL_ARG::SEL_ARG(SEL_ARG &arg) :Sql_alloc()
max_value=arg.max_value; max_value=arg.max_value;
next_key_part=arg.next_key_part; next_key_part=arg.next_key_part;
use_count=1; elements=1; use_count=1; elements=1;
DBUG_VOID_RETURN;
} }
...@@ -493,10 +444,7 @@ SEL_ARG::SEL_ARG(Field *f,const char *min_value_arg,const char *max_value_arg) ...@@ -493,10 +444,7 @@ SEL_ARG::SEL_ARG(Field *f,const char *min_value_arg,const char *max_value_arg)
max_value((char*) max_value_arg), next(0),prev(0), max_value((char*) max_value_arg), next(0),prev(0),
next_key_part(0),color(BLACK),type(KEY_RANGE) next_key_part(0),color(BLACK),type(KEY_RANGE)
{ {
DBUG_ENTER("SEL_ARG::SEL_ARG");
left=right= &null_element; left=right= &null_element;
DBUG_VOID_RETURN;
} }
SEL_ARG::SEL_ARG(Field *field_,uint8 part_,char *min_value_,char *max_value_, SEL_ARG::SEL_ARG(Field *field_,uint8 part_,char *min_value_,char *max_value_,
...@@ -506,17 +454,12 @@ SEL_ARG::SEL_ARG(Field *field_,uint8 part_,char *min_value_,char *max_value_, ...@@ -506,17 +454,12 @@ SEL_ARG::SEL_ARG(Field *field_,uint8 part_,char *min_value_,char *max_value_,
field(field_), min_value(min_value_), max_value(max_value_), field(field_), min_value(min_value_), max_value(max_value_),
next(0),prev(0),next_key_part(0),color(BLACK),type(KEY_RANGE) next(0),prev(0),next_key_part(0),color(BLACK),type(KEY_RANGE)
{ {
DBUG_ENTER("SEL_ARG::SEL_ARG");
left=right= &null_element; left=right= &null_element;
DBUG_VOID_RETURN;
} }
SEL_ARG *SEL_ARG::clone(SEL_ARG *new_parent,SEL_ARG **next_arg) SEL_ARG *SEL_ARG::clone(SEL_ARG *new_parent,SEL_ARG **next_arg)
{ {
SEL_ARG *tmp; SEL_ARG *tmp;
DBUG_ENTER("*SEL_ARG::clone");
if (type != KEY_RANGE) if (type != KEY_RANGE)
{ {
tmp=new SEL_ARG(type); tmp=new SEL_ARG(type);
...@@ -541,31 +484,27 @@ SEL_ARG *SEL_ARG::clone(SEL_ARG *new_parent,SEL_ARG **next_arg) ...@@ -541,31 +484,27 @@ SEL_ARG *SEL_ARG::clone(SEL_ARG *new_parent,SEL_ARG **next_arg)
tmp->right=right->clone(tmp,next_arg); tmp->right=right->clone(tmp,next_arg);
} }
increment_use_count(1); increment_use_count(1);
DBUG_RETURN(tmp); return tmp;
} }
SEL_ARG *SEL_ARG::first() SEL_ARG *SEL_ARG::first()
{ {
SEL_ARG *next_arg=this; SEL_ARG *next_arg=this;
DBUG_ENTER("*SEL_ARG::first");
if (!next_arg->left) if (!next_arg->left)
DBUG_RETURN(0); // MAYBE_KEY return 0; // MAYBE_KEY
while (next_arg->left != &null_element) while (next_arg->left != &null_element)
next_arg=next_arg->left; next_arg=next_arg->left;
DBUG_RETURN(next_arg); return next_arg;
} }
SEL_ARG *SEL_ARG::last() SEL_ARG *SEL_ARG::last()
{ {
SEL_ARG *next_arg=this; SEL_ARG *next_arg=this;
DBUG_ENTER("*SEL_ARG::last");
if (!next_arg->right) if (!next_arg->right)
DBUG_RETURN(0); // MAYBE_KEY return 0; // MAYBE_KEY
while (next_arg->right != &null_element) while (next_arg->right != &null_element)
next_arg=next_arg->right; next_arg=next_arg->right;
DBUG_RETURN(next_arg); return next_arg;
} }
/* /*
...@@ -576,59 +515,55 @@ SEL_ARG *SEL_ARG::last() ...@@ -576,59 +515,55 @@ SEL_ARG *SEL_ARG::last()
static int sel_cmp(Field *field, char *a,char *b,uint8 a_flag,uint8 b_flag) static int sel_cmp(Field *field, char *a,char *b,uint8 a_flag,uint8 b_flag)
{ {
int cmp; int cmp;
DBUG_ENTER("sel_cmp");
/* First check if there was a compare to a min or max element */ /* First check if there was a compare to a min or max element */
if (a_flag & (NO_MIN_RANGE | NO_MAX_RANGE)) if (a_flag & (NO_MIN_RANGE | NO_MAX_RANGE))
{ {
if ((a_flag & (NO_MIN_RANGE | NO_MAX_RANGE)) == if ((a_flag & (NO_MIN_RANGE | NO_MAX_RANGE)) ==
(b_flag & (NO_MIN_RANGE | NO_MAX_RANGE))) (b_flag & (NO_MIN_RANGE | NO_MAX_RANGE)))
DBUG_RETURN(0); return 0;
DBUG_RETURN((a_flag & NO_MIN_RANGE) ? -1 : 1); return (a_flag & NO_MIN_RANGE) ? -1 : 1;
} }
if (b_flag & (NO_MIN_RANGE | NO_MAX_RANGE)) if (b_flag & (NO_MIN_RANGE | NO_MAX_RANGE))
DBUG_RETURN((b_flag & NO_MIN_RANGE) ? 1 : -1); return (b_flag & NO_MIN_RANGE) ? 1 : -1;
if (field->real_maybe_null()) // If null is part of key if (field->real_maybe_null()) // If null is part of key
{ {
if (*a != *b) if (*a != *b)
{ {
DBUG_RETURN(*a ? -1 : 1); return *a ? -1 : 1;
} }
if (*a) if (*a)
goto end; // NULL where equal goto end; // NULL where equal
a++; b++; // Skip NULL marker a++; b++; // Skip NULL marker
} }
cmp=field->key_cmp((byte*) a,(byte*) b); cmp=field->key_cmp((byte*) a,(byte*) b);
if (cmp) DBUG_RETURN(cmp < 0 ? -1 : 1); // The values differed if (cmp) return cmp < 0 ? -1 : 1; // The values differed
// Check if the compared equal arguments was defined with open/closed range // Check if the compared equal arguments was defined with open/closed range
end: end:
if (a_flag & (NEAR_MIN | NEAR_MAX)) if (a_flag & (NEAR_MIN | NEAR_MAX))
{ {
if ((a_flag & (NEAR_MIN | NEAR_MAX)) == (b_flag & (NEAR_MIN | NEAR_MAX))) if ((a_flag & (NEAR_MIN | NEAR_MAX)) == (b_flag & (NEAR_MIN | NEAR_MAX)))
DBUG_RETURN(0); return 0;
if (!(b_flag & (NEAR_MIN | NEAR_MAX))) if (!(b_flag & (NEAR_MIN | NEAR_MAX)))
DBUG_RETURN((a_flag & NEAR_MIN) ? 2 : -2); return (a_flag & NEAR_MIN) ? 2 : -2;
DBUG_RETURN((a_flag & NEAR_MIN) ? 1 : -1); return (a_flag & NEAR_MIN) ? 1 : -1;
} }
if (b_flag & (NEAR_MIN | NEAR_MAX)) if (b_flag & (NEAR_MIN | NEAR_MAX))
DBUG_RETURN((b_flag & NEAR_MIN) ? -2 : 2); return (b_flag & NEAR_MIN) ? -2 : 2;
DBUG_RETURN(0); // The elements where equal return 0; // The elements where equal
} }
SEL_ARG *SEL_ARG::clone_tree() SEL_ARG *SEL_ARG::clone_tree()
{ {
SEL_ARG tmp_link,*next_arg,*root; SEL_ARG tmp_link,*next_arg,*root;
DBUG_ENTER("*SEL_ARG::clone_tree");
next_arg= &tmp_link; next_arg= &tmp_link;
root=clone((SEL_ARG *) 0, &next_arg); root=clone((SEL_ARG *) 0, &next_arg);
next_arg->next=0; // Fix last link next_arg->next=0; // Fix last link
tmp_link.next->prev=0; // Fix first link tmp_link.next->prev=0; // Fix first link
root->use_count=0; root->use_count=0;
DBUG_RETURN(root); return root;
} }
/***************************************************************************** /*****************************************************************************
...@@ -1167,7 +1102,6 @@ static bool like_range(const char *ptr,uint ptr_length,char escape, ...@@ -1167,7 +1102,6 @@ static bool like_range(const char *ptr,uint ptr_length,char escape,
const char *end=ptr+ptr_length; const char *end=ptr+ptr_length;
char *min_org=min_str; char *min_org=min_str;
char *min_end=min_str+res_length; char *min_end=min_str+res_length;
DBUG_ENTER("like_range");
for (; ptr != end && min_str != min_end ; ptr++) for (; ptr != end && min_str != min_end ; ptr++)
{ {
...@@ -1191,7 +1125,7 @@ static bool like_range(const char *ptr,uint ptr_length,char escape, ...@@ -1191,7 +1125,7 @@ static bool like_range(const char *ptr,uint ptr_length,char escape,
*min_str++ = ' '; // Because if key compression *min_str++ = ' '; // Because if key compression
*max_str++ = max_sort_chr; *max_str++ = max_sort_chr;
} while (min_str != min_end); } while (min_str != min_end);
DBUG_RETURN(0); return 0;
} }
*min_str++= *max_str++ = *ptr; *min_str++= *max_str++ = *ptr;
} }
...@@ -1203,7 +1137,7 @@ static bool like_range(const char *ptr,uint ptr_length,char escape, ...@@ -1203,7 +1137,7 @@ static bool like_range(const char *ptr,uint ptr_length,char escape,
while (min_str != min_end) while (min_str != min_end)
*min_str++ = *max_str++ = ' '; // Because if key compression *min_str++ = *max_str++ = ' '; // Because if key compression
DBUG_RETURN(0); return 0;
} }
...@@ -1228,12 +1162,11 @@ static SEL_ARG * ...@@ -1228,12 +1162,11 @@ static SEL_ARG *
sel_add(SEL_ARG *key1,SEL_ARG *key2) sel_add(SEL_ARG *key1,SEL_ARG *key2)
{ {
SEL_ARG *root,**key_link; SEL_ARG *root,**key_link;
DBUG_ENTER("sel_add");
if (!key1) if (!key1)
DBUG_RETURN(key2); return key2;
if (!key2) if (!key2)
DBUG_RETURN(key1); return key1;
key_link= &root; key_link= &root;
while (key1 && key2) while (key1 && key2)
...@@ -1252,7 +1185,7 @@ sel_add(SEL_ARG *key1,SEL_ARG *key2) ...@@ -1252,7 +1185,7 @@ sel_add(SEL_ARG *key1,SEL_ARG *key2)
} }
} }
*key_link=key1 ? key1 : key2; *key_link=key1 ? key1 : key2;
DBUG_RETURN(root); return root;
} }
#define CLONE_KEY1_MAYBE 1 #define CLONE_KEY1_MAYBE 1
...@@ -1353,7 +1286,6 @@ and_all_keys(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag) ...@@ -1353,7 +1286,6 @@ and_all_keys(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag)
{ {
SEL_ARG *next; SEL_ARG *next;
ulong use_count=key1->use_count; ulong use_count=key1->use_count;
DBUG_ENTER("and_all_keys");
if (key1->elements != 1) if (key1->elements != 1)
{ {
...@@ -1383,9 +1315,9 @@ and_all_keys(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag) ...@@ -1383,9 +1315,9 @@ and_all_keys(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag)
next->next_key_part=key2; next->next_key_part=key2;
} }
if (!key1) if (!key1)
DBUG_RETURN(&null_element); // Impossible ranges return &null_element; // Impossible ranges
key1->use_count++; key1->use_count++;
DBUG_RETURN(key1); return key1;
} }
...@@ -1393,12 +1325,10 @@ and_all_keys(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag) ...@@ -1393,12 +1325,10 @@ and_all_keys(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag)
static SEL_ARG * static SEL_ARG *
key_and(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag) key_and(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag)
{ {
DBUG_ENTER("key_and");
if (!key1) if (!key1)
DBUG_RETURN(key2); return key2;
if (!key2) if (!key2)
DBUG_RETURN(key1); return key1;
if (key1->part != key2->part) if (key1->part != key2->part)
{ {
if (key1->part > key2->part) if (key1->part > key2->part)
...@@ -1410,7 +1340,7 @@ key_and(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag) ...@@ -1410,7 +1340,7 @@ key_and(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag)
key1->use_count--; key1->use_count--;
if (key1->use_count > 0) if (key1->use_count > 0)
key1=key1->clone_tree(); key1=key1->clone_tree();
DBUG_RETURN(and_all_keys(key1,key2,clone_flag)); return and_all_keys(key1,key2,clone_flag);
} }
if (((clone_flag & CLONE_KEY2_MAYBE) && if (((clone_flag & CLONE_KEY2_MAYBE) &&
...@@ -1436,16 +1366,16 @@ key_and(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag) ...@@ -1436,16 +1366,16 @@ key_and(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag)
clone_flag); clone_flag);
if (key1->next_key_part && if (key1->next_key_part &&
key1->next_key_part->type == SEL_ARG::IMPOSSIBLE) key1->next_key_part->type == SEL_ARG::IMPOSSIBLE)
DBUG_RETURN(key1); return key1;
} }
else else
{ {
key1->maybe_smaller(); key1->maybe_smaller();
if (key2->next_key_part) if (key2->next_key_part)
DBUG_RETURN(and_all_keys(key1,key2,clone_flag)); return and_all_keys(key1,key2,clone_flag);
key2->use_count--; // Key2 doesn't have a tree key2->use_count--; // Key2 doesn't have a tree
} }
DBUG_RETURN(key1); return key1;
} }
key1->use_count--; key1->use_count--;
...@@ -1484,36 +1414,32 @@ key_and(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag) ...@@ -1484,36 +1414,32 @@ key_and(SEL_ARG *key1,SEL_ARG *key2,uint clone_flag)
key1->free_tree(); key1->free_tree();
key2->free_tree(); key2->free_tree();
if (!new_tree) if (!new_tree)
DBUG_RETURN(&null_element); // Impossible range return &null_element; // Impossible range
DBUG_RETURN(new_tree); return new_tree;
} }
static bool static bool
get_range(SEL_ARG **e1,SEL_ARG **e2,SEL_ARG *root1) get_range(SEL_ARG **e1,SEL_ARG **e2,SEL_ARG *root1)
{ {
DBUG_ENTER("get_range");
(*e1)=root1->find_range(*e2); // first e1->min < e2->min (*e1)=root1->find_range(*e2); // first e1->min < e2->min
if ((*e1)->cmp_max_to_min(*e2) < 0) if ((*e1)->cmp_max_to_min(*e2) < 0)
{ {
if (!((*e1)=(*e1)->next)) if (!((*e1)=(*e1)->next))
DBUG_RETURN(1); return 1;
if ((*e1)->cmp_min_to_max(*e2) > 0) if ((*e1)->cmp_min_to_max(*e2) > 0)
{ {
(*e2)=(*e2)->next; (*e2)=(*e2)->next;
DBUG_RETURN(1); return 1;
} }
} }
DBUG_RETURN(0); return 0;
} }
static SEL_ARG * static SEL_ARG *
key_or(SEL_ARG *key1,SEL_ARG *key2) key_or(SEL_ARG *key1,SEL_ARG *key2)
{ {
DBUG_ENTER("key_or");
if (!key1) if (!key1)
{ {
if (key2) if (key2)
...@@ -1521,13 +1447,13 @@ key_or(SEL_ARG *key1,SEL_ARG *key2) ...@@ -1521,13 +1447,13 @@ key_or(SEL_ARG *key1,SEL_ARG *key2)
key2->use_count--; key2->use_count--;
key2->free_tree(); key2->free_tree();
} }
DBUG_RETURN(0); return 0;
} }
else if (!key2) else if (!key2)
{ {
key1->use_count--; key1->use_count--;
key1->free_tree(); key1->free_tree();
DBUG_RETURN(0); return 0;
} }
key1->use_count--; key1->use_count--;
key2->use_count--; key2->use_count--;
...@@ -1536,7 +1462,7 @@ key_or(SEL_ARG *key1,SEL_ARG *key2) ...@@ -1536,7 +1462,7 @@ key_or(SEL_ARG *key1,SEL_ARG *key2)
{ {
key1->free_tree(); key1->free_tree();
key2->free_tree(); key2->free_tree();
DBUG_RETURN(0); // Can't optimize this return 0; // Can't optimize this
} }
// If one of the key is MAYBE_KEY then the found region may be bigger // If one of the key is MAYBE_KEY then the found region may be bigger
...@@ -1544,13 +1470,13 @@ key_or(SEL_ARG *key1,SEL_ARG *key2) ...@@ -1544,13 +1470,13 @@ key_or(SEL_ARG *key1,SEL_ARG *key2)
{ {
key2->free_tree(); key2->free_tree();
key1->use_count++; key1->use_count++;
DBUG_RETURN(key1); return key1;
} }
if (key2->type == SEL_ARG::MAYBE_KEY) if (key2->type == SEL_ARG::MAYBE_KEY)
{ {
key1->free_tree(); key1->free_tree();
key2->use_count++; key2->use_count++;
DBUG_RETURN(key2); return key2;
} }
if (key1->use_count > 0) if (key1->use_count > 0)
...@@ -1615,8 +1541,8 @@ key_or(SEL_ARG *key1,SEL_ARG *key2) ...@@ -1615,8 +1541,8 @@ key_or(SEL_ARG *key1,SEL_ARG *key2)
tmp->max_flag & NO_MAX_RANGE) tmp->max_flag & NO_MAX_RANGE)
{ {
if (key1->maybe_flag) if (key1->maybe_flag)
DBUG_RETURN(new SEL_ARG(SEL_ARG::MAYBE_KEY)); return new SEL_ARG(SEL_ARG::MAYBE_KEY);
DBUG_RETURN(0); return 0;
} }
key2->increment_use_count(-1); // Free not used tree key2->increment_use_count(-1); // Free not used tree
key2=key2->next; key2=key2->next;
...@@ -1662,8 +1588,8 @@ key_or(SEL_ARG *key1,SEL_ARG *key2) ...@@ -1662,8 +1588,8 @@ key_or(SEL_ARG *key1,SEL_ARG *key2)
for (; key2 ; key2=key2->next) for (; key2 ; key2=key2->next)
key2->increment_use_count(-1); // Free not used tree key2->increment_use_count(-1); // Free not used tree
if (key1->maybe_flag) if (key1->maybe_flag)
DBUG_RETURN(new SEL_ARG(SEL_ARG::MAYBE_KEY)); return new SEL_ARG(SEL_ARG::MAYBE_KEY);
DBUG_RETURN(0); return 0;
} }
} }
key2=key2->next; key2=key2->next;
...@@ -1737,7 +1663,7 @@ key_or(SEL_ARG *key1,SEL_ARG *key2) ...@@ -1737,7 +1663,7 @@ key_or(SEL_ARG *key1,SEL_ARG *key2)
key2=next; key2=next;
} }
key1->use_count++; key1->use_count++;
DBUG_RETURN(key1); return key1;
} }
...@@ -1745,33 +1671,31 @@ key_or(SEL_ARG *key1,SEL_ARG *key2) ...@@ -1745,33 +1671,31 @@ key_or(SEL_ARG *key1,SEL_ARG *key2)
static bool eq_tree(SEL_ARG* a,SEL_ARG *b) static bool eq_tree(SEL_ARG* a,SEL_ARG *b)
{ {
DBUG_ENTER("eq_tree");
if (a == b) if (a == b)
DBUG_RETURN(1); return 1;
if (!a || !b || !a->is_same(b)) if (!a || !b || !a->is_same(b))
DBUG_RETURN(0); return 0;
if (a->left != &null_element && b->left != &null_element) if (a->left != &null_element && b->left != &null_element)
{ {
if (!eq_tree(a->left,b->left)) if (!eq_tree(a->left,b->left))
DBUG_RETURN(0); return 0;
} }
else if (a->left != &null_element || b->left != &null_element) else if (a->left != &null_element || b->left != &null_element)
DBUG_RETURN(0); return 0;
if (a->right != &null_element && b->right != &null_element) if (a->right != &null_element && b->right != &null_element)
{ {
if (!eq_tree(a->right,b->right)) if (!eq_tree(a->right,b->right))
DBUG_RETURN(0); return 0;
} }
else if (a->right != &null_element || b->right != &null_element) else if (a->right != &null_element || b->right != &null_element)
DBUG_RETURN(0); return 0;
if (a->next_key_part != b->next_key_part) if (a->next_key_part != b->next_key_part)
{ // Sub range { // Sub range
if (!a->next_key_part != !b->next_key_part || if (!a->next_key_part != !b->next_key_part ||
!eq_tree(a->next_key_part, b->next_key_part)) !eq_tree(a->next_key_part, b->next_key_part))
DBUG_RETURN(0); return 0;
} }
DBUG_RETURN(1); return 1;
} }
...@@ -1779,7 +1703,6 @@ SEL_ARG * ...@@ -1779,7 +1703,6 @@ SEL_ARG *
SEL_ARG::insert(SEL_ARG *key) SEL_ARG::insert(SEL_ARG *key)
{ {
SEL_ARG *element,**par,*last_element; SEL_ARG *element,**par,*last_element;
DBUG_ENTER("SEL_ARG::insert");
LINT_INIT(par); LINT_INIT(last_element); LINT_INIT(par); LINT_INIT(last_element);
for (element= this; element != &null_element ; ) for (element= this; element != &null_element ; )
...@@ -1816,7 +1739,7 @@ SEL_ARG::insert(SEL_ARG *key) ...@@ -1816,7 +1739,7 @@ SEL_ARG::insert(SEL_ARG *key)
root->use_count=this->use_count; // copy root info root->use_count=this->use_count; // copy root info
root->elements= this->elements+1; root->elements= this->elements+1;
root->maybe_flag=this->maybe_flag; root->maybe_flag=this->maybe_flag;
DBUG_RETURN(root); return root;
} }
...@@ -1829,15 +1752,14 @@ SEL_ARG * ...@@ -1829,15 +1752,14 @@ SEL_ARG *
SEL_ARG::find_range(SEL_ARG *key) SEL_ARG::find_range(SEL_ARG *key)
{ {
SEL_ARG *element=this,*found=0; SEL_ARG *element=this,*found=0;
DBUG_ENTER("SEL_ARG::find_range");
for (;;) for (;;)
{ {
if (element == &null_element) if (element == &null_element)
DBUG_RETURN(found); return found;
int cmp=element->cmp_min_to_min(key); int cmp=element->cmp_min_to_min(key);
if (cmp == 0) if (cmp == 0)
DBUG_RETURN(element); return element;
if (cmp < 0) if (cmp < 0)
{ {
found=element; found=element;
...@@ -1846,7 +1768,6 @@ SEL_ARG::find_range(SEL_ARG *key) ...@@ -1846,7 +1768,6 @@ SEL_ARG::find_range(SEL_ARG *key)
else else
element=element->left; element=element->left;
} }
DBUG_RETURN(NULL); // impossible
} }
...@@ -1860,8 +1781,6 @@ SEL_ARG::tree_delete(SEL_ARG *key) ...@@ -1860,8 +1781,6 @@ SEL_ARG::tree_delete(SEL_ARG *key)
{ {
enum leaf_color remove_color; enum leaf_color remove_color;
SEL_ARG *root,*nod,**par,*fix_par; SEL_ARG *root,*nod,**par,*fix_par;
DBUG_ENTER("SEL_ARG::tree_delete");
root=this; this->parent= 0; root=this; this->parent= 0;
/* Unlink from list */ /* Unlink from list */
...@@ -1909,7 +1828,7 @@ SEL_ARG::tree_delete(SEL_ARG *key) ...@@ -1909,7 +1828,7 @@ SEL_ARG::tree_delete(SEL_ARG *key)
} }
if (root == &null_element) if (root == &null_element)
DBUG_RETURN(0); // Maybe root later return 0; // Maybe root later
if (remove_color == BLACK) if (remove_color == BLACK)
root=rb_delete_fixup(root,nod,fix_par); root=rb_delete_fixup(root,nod,fix_par);
test_rb_tree(root,root->parent); test_rb_tree(root,root->parent);
...@@ -1917,7 +1836,7 @@ SEL_ARG::tree_delete(SEL_ARG *key) ...@@ -1917,7 +1836,7 @@ SEL_ARG::tree_delete(SEL_ARG *key)
root->use_count=this->use_count; // Fix root counters root->use_count=this->use_count; // Fix root counters
root->elements=this->elements-1; root->elements=this->elements-1;
root->maybe_flag=this->maybe_flag; root->maybe_flag=this->maybe_flag;
DBUG_RETURN(root); return root;
} }
...@@ -1926,8 +1845,6 @@ SEL_ARG::tree_delete(SEL_ARG *key) ...@@ -1926,8 +1845,6 @@ SEL_ARG::tree_delete(SEL_ARG *key)
static void left_rotate(SEL_ARG **root,SEL_ARG *leaf) static void left_rotate(SEL_ARG **root,SEL_ARG *leaf)
{ {
SEL_ARG *y=leaf->right; SEL_ARG *y=leaf->right;
DBUG_ENTER("left_rotate");
leaf->right=y->left; leaf->right=y->left;
if (y->left != &null_element) if (y->left != &null_element)
y->left->parent=leaf; y->left->parent=leaf;
...@@ -1937,14 +1854,11 @@ static void left_rotate(SEL_ARG **root,SEL_ARG *leaf) ...@@ -1937,14 +1854,11 @@ static void left_rotate(SEL_ARG **root,SEL_ARG *leaf)
*leaf->parent_ptr()=y; *leaf->parent_ptr()=y;
y->left=leaf; y->left=leaf;
leaf->parent=y; leaf->parent=y;
DBUG_VOID_RETURN;
} }
static void right_rotate(SEL_ARG **root,SEL_ARG *leaf) static void right_rotate(SEL_ARG **root,SEL_ARG *leaf)
{ {
SEL_ARG *y=leaf->left; SEL_ARG *y=leaf->left;
DBUG_ENTER("right_rotate");
leaf->left=y->right; leaf->left=y->right;
if (y->right != &null_element) if (y->right != &null_element)
y->right->parent=leaf; y->right->parent=leaf;
...@@ -1954,7 +1868,6 @@ static void right_rotate(SEL_ARG **root,SEL_ARG *leaf) ...@@ -1954,7 +1868,6 @@ static void right_rotate(SEL_ARG **root,SEL_ARG *leaf)
*leaf->parent_ptr()=y; *leaf->parent_ptr()=y;
y->right=leaf; y->right=leaf;
leaf->parent=y; leaf->parent=y;
DBUG_VOID_RETURN;
} }
...@@ -1962,8 +1875,6 @@ SEL_ARG * ...@@ -1962,8 +1875,6 @@ SEL_ARG *
SEL_ARG::rb_insert(SEL_ARG *leaf) SEL_ARG::rb_insert(SEL_ARG *leaf)
{ {
SEL_ARG *y,*par,*par2,*root; SEL_ARG *y,*par,*par2,*root;
DBUG_ENTER("SEL_ARG::rb_insert");
root= this; root->parent= 0; root= this; root->parent= 0;
leaf->color=RED; leaf->color=RED;
...@@ -2018,15 +1929,13 @@ SEL_ARG::rb_insert(SEL_ARG *leaf) ...@@ -2018,15 +1929,13 @@ SEL_ARG::rb_insert(SEL_ARG *leaf)
} }
root->color=BLACK; root->color=BLACK;
test_rb_tree(root,root->parent); test_rb_tree(root,root->parent);
DBUG_RETURN(root); return root;
} }
SEL_ARG *rb_delete_fixup(SEL_ARG *root,SEL_ARG *key,SEL_ARG *par) SEL_ARG *rb_delete_fixup(SEL_ARG *root,SEL_ARG *key,SEL_ARG *par)
{ {
SEL_ARG *x,*w; SEL_ARG *x,*w;
DBUG_ENTER("*rb_delete_fixup");
root->parent=0; root->parent=0;
x= key; x= key;
...@@ -2099,7 +2008,7 @@ SEL_ARG *rb_delete_fixup(SEL_ARG *root,SEL_ARG *key,SEL_ARG *par) ...@@ -2099,7 +2008,7 @@ SEL_ARG *rb_delete_fixup(SEL_ARG *root,SEL_ARG *key,SEL_ARG *par)
par=x->parent; par=x->parent;
} }
x->color=SEL_ARG::BLACK; x->color=SEL_ARG::BLACK;
DBUG_RETURN(root); return root;
} }
...@@ -2109,44 +2018,41 @@ SEL_ARG *rb_delete_fixup(SEL_ARG *root,SEL_ARG *key,SEL_ARG *par) ...@@ -2109,44 +2018,41 @@ SEL_ARG *rb_delete_fixup(SEL_ARG *root,SEL_ARG *key,SEL_ARG *par)
int test_rb_tree(SEL_ARG *element,SEL_ARG *parent) int test_rb_tree(SEL_ARG *element,SEL_ARG *parent)
{ {
int count_l,count_r; int count_l,count_r;
DBUG_ENTER("test_rb_tree");
if (element == &null_element) if (element == &null_element)
DBUG_RETURN(0); // Found end of tree return 0; // Found end of tree
if (element->parent != parent) if (element->parent != parent)
{ {
sql_print_error("Wrong tree: Parent doesn't point at parent"); sql_print_error("Wrong tree: Parent doesn't point at parent");
DBUG_RETURN(-1); return -1;
} }
if (element->color == SEL_ARG::RED && if (element->color == SEL_ARG::RED &&
(element->left->color == SEL_ARG::RED || (element->left->color == SEL_ARG::RED ||
element->right->color == SEL_ARG::RED)) element->right->color == SEL_ARG::RED))
{ {
sql_print_error("Wrong tree: Found two red in a row"); sql_print_error("Wrong tree: Found two red in a row");
DBUG_RETURN(-1); return -1;
} }
if (element->left == element->right && element->left != &null_element) if (element->left == element->right && element->left != &null_element)
{ // Dummy test { // Dummy test
sql_print_error("Wrong tree: Found right == left"); sql_print_error("Wrong tree: Found right == left");
DBUG_RETURN(-1); return -1;
} }
count_l=test_rb_tree(element->left,element); count_l=test_rb_tree(element->left,element);
count_r=test_rb_tree(element->right,element); count_r=test_rb_tree(element->right,element);
if (count_l >= 0 && count_r >= 0) if (count_l >= 0 && count_r >= 0)
{ {
if (count_l == count_r) if (count_l == count_r)
DBUG_RETURN(count_l+(element->color == SEL_ARG::BLACK)); return count_l+(element->color == SEL_ARG::BLACK);
sql_print_error("Wrong tree: Incorrect black-count: %d - %d", sql_print_error("Wrong tree: Incorrect black-count: %d - %d",
count_l,count_r); count_l,count_r);
} }
DBUG_RETURN(-1); // Error, no more warnings return -1; // Error, no more warnings
} }
static ulong count_key_part_usage(SEL_ARG *root, SEL_ARG *key) static ulong count_key_part_usage(SEL_ARG *root, SEL_ARG *key)
{ {
ulong count= 0; ulong count= 0;
DBUG_ENTER("count_key_part_usage");
for (root=root->first(); root ; root=root->next) for (root=root->first(); root ; root=root->next)
{ {
if (root->next_key_part) if (root->next_key_part)
...@@ -2157,21 +2063,19 @@ static ulong count_key_part_usage(SEL_ARG *root, SEL_ARG *key) ...@@ -2157,21 +2063,19 @@ static ulong count_key_part_usage(SEL_ARG *root, SEL_ARG *key)
count+=count_key_part_usage(root->next_key_part,key); count+=count_key_part_usage(root->next_key_part,key);
} }
} }
DBUG_RETURN(count); return count;
} }
void SEL_ARG::test_use_count(SEL_ARG *root) void SEL_ARG::test_use_count(SEL_ARG *root)
{ {
DBUG_ENTER("SEL_ARG::test_use_count");
if (this == root && use_count != 1) if (this == root && use_count != 1)
{ {
sql_print_error("Use_count: Wrong count %lu for root",use_count); sql_print_error("Use_count: Wrong count %lu for root",use_count);
DBUG_VOID_RETURN; return;
} }
if (this->type != SEL_ARG::KEY_RANGE) if (this->type != SEL_ARG::KEY_RANGE)
DBUG_VOID_RETURN; return;
uint e_count=0; uint e_count=0;
for (SEL_ARG *pos=first(); pos ; pos=pos->next) for (SEL_ARG *pos=first(); pos ; pos=pos->next)
{ {
...@@ -2183,7 +2087,7 @@ void SEL_ARG::test_use_count(SEL_ARG *root) ...@@ -2183,7 +2087,7 @@ void SEL_ARG::test_use_count(SEL_ARG *root)
{ {
sql_print_error("Use_count: Wrong count for key at %lx, %lu should be %lu", sql_print_error("Use_count: Wrong count for key at %lx, %lu should be %lu",
pos,pos->next_key_part->use_count,count); pos,pos->next_key_part->use_count,count);
DBUG_VOID_RETURN; return;
} }
pos->next_key_part->test_use_count(root); pos->next_key_part->test_use_count(root);
} }
...@@ -2191,7 +2095,6 @@ void SEL_ARG::test_use_count(SEL_ARG *root) ...@@ -2191,7 +2095,6 @@ void SEL_ARG::test_use_count(SEL_ARG *root)
if (e_count != elements) if (e_count != elements)
sql_print_error("Wrong use count: %u for tree at %lx", e_count, sql_print_error("Wrong use count: %u for tree at %lx", e_count,
(gptr) this); (gptr) this);
DBUG_VOID_RETURN;
} }
#endif #endif
...@@ -2233,7 +2136,6 @@ check_quick_keys(PARAM *param,uint idx,SEL_ARG *key_tree, ...@@ -2233,7 +2136,6 @@ check_quick_keys(PARAM *param,uint idx,SEL_ARG *key_tree,
uint max_key_flag) uint max_key_flag)
{ {
ha_rows records=0,tmp; ha_rows records=0,tmp;
DBUG_ENTER("check_quick_keys");
param->max_key_part=max(param->max_key_part,key_tree->part); param->max_key_part=max(param->max_key_part,key_tree->part);
if (key_tree->left != &null_element) if (key_tree->left != &null_element)
...@@ -2241,7 +2143,7 @@ check_quick_keys(PARAM *param,uint idx,SEL_ARG *key_tree, ...@@ -2241,7 +2143,7 @@ check_quick_keys(PARAM *param,uint idx,SEL_ARG *key_tree,
records=check_quick_keys(param,idx,key_tree->left,min_key,min_key_flag, records=check_quick_keys(param,idx,key_tree->left,min_key,min_key_flag,
max_key,max_key_flag); max_key,max_key_flag);
if (records == HA_POS_ERROR) // Impossible if (records == HA_POS_ERROR) // Impossible
DBUG_RETURN(records); return records;
} }
uint tmp_min_flag,tmp_max_flag,keynr; uint tmp_min_flag,tmp_max_flag,keynr;
...@@ -2304,17 +2206,17 @@ check_quick_keys(PARAM *param,uint idx,SEL_ARG *key_tree, ...@@ -2304,17 +2206,17 @@ check_quick_keys(PARAM *param,uint idx,SEL_ARG *key_tree,
HA_READ_BEFORE_KEY : HA_READ_AFTER_KEY)); HA_READ_BEFORE_KEY : HA_READ_AFTER_KEY));
end: end:
if (tmp == HA_POS_ERROR) // Impossible range if (tmp == HA_POS_ERROR) // Impossible range
DBUG_RETURN(tmp); return tmp;
records+=tmp; records+=tmp;
if (key_tree->right != &null_element) if (key_tree->right != &null_element)
{ {
tmp=check_quick_keys(param,idx,key_tree->right,min_key,min_key_flag, tmp=check_quick_keys(param,idx,key_tree->right,min_key,min_key_flag,
max_key,max_key_flag); max_key,max_key_flag);
if (tmp == HA_POS_ERROR) if (tmp == HA_POS_ERROR)
DBUG_RETURN(tmp); return tmp;
records+=tmp; records+=tmp;
} }
DBUG_RETURN(records); return records;
} }
...@@ -2360,13 +2262,12 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key, ...@@ -2360,13 +2262,12 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key,
{ {
QUICK_RANGE *range; QUICK_RANGE *range;
uint flag; uint flag;
DBUG_ENTER("get_quick_keys");
if (key_tree->left != &null_element) if (key_tree->left != &null_element)
{ {
if (get_quick_keys(param,quick,key,key_tree->left, if (get_quick_keys(param,quick,key,key_tree->left,
min_key,min_key_flag, max_key, max_key_flag)) min_key,min_key_flag, max_key, max_key_flag))
DBUG_RETURN(1); return 1;
} }
char *tmp_min_key=min_key,*tmp_max_key=max_key; char *tmp_min_key=min_key,*tmp_max_key=max_key;
key_tree->store(key[key_tree->part].part_length, key_tree->store(key[key_tree->part].part_length,
...@@ -2383,7 +2284,7 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key, ...@@ -2383,7 +2284,7 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key,
if (get_quick_keys(param,quick,key,key_tree->next_key_part, if (get_quick_keys(param,quick,key,key_tree->next_key_part,
tmp_min_key, min_key_flag | key_tree->min_flag, tmp_min_key, min_key_flag | key_tree->min_flag,
tmp_max_key, max_key_flag | key_tree->max_flag)) tmp_max_key, max_key_flag | key_tree->max_flag))
DBUG_RETURN(1); return 1;
goto end; // Ugly, but efficient goto end; // Ugly, but efficient
} }
{ {
...@@ -2441,15 +2342,15 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key, ...@@ -2441,15 +2342,15 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key,
set_if_bigger(quick->max_used_key_length,range->min_length); set_if_bigger(quick->max_used_key_length,range->min_length);
set_if_bigger(quick->max_used_key_length,range->max_length); set_if_bigger(quick->max_used_key_length,range->max_length);
if (!range) // Not enough memory if (!range) // Not enough memory
DBUG_RETURN(1); return 1;
quick->ranges.push_back(range); quick->ranges.push_back(range);
end: end:
if (key_tree->right != &null_element) if (key_tree->right != &null_element)
DBUG_RETURN(get_quick_keys(param,quick,key,key_tree->right, return get_quick_keys(param,quick,key,key_tree->right,
min_key,min_key_flag, min_key,min_key_flag,
max_key,max_key_flag)); max_key,max_key_flag);
DBUG_RETURN(0); return 0;
} }
/* /*
...@@ -2458,19 +2359,17 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key, ...@@ -2458,19 +2359,17 @@ get_quick_keys(PARAM *param,QUICK_SELECT *quick,KEY_PART *key,
bool QUICK_SELECT::unique_key_range() bool QUICK_SELECT::unique_key_range()
{ {
DBUG_ENTER("QUICK_SELECT::unique_key_range");
if (ranges.elements == 1) if (ranges.elements == 1)
{ {
QUICK_RANGE *tmp; QUICK_RANGE *tmp;
if (((tmp=ranges.head())->flag & (EQ_RANGE | NULL_RANGE)) == EQ_RANGE) if (((tmp=ranges.head())->flag & (EQ_RANGE | NULL_RANGE)) == EQ_RANGE)
{ {
KEY *key=head->key_info+index; KEY *key=head->key_info+index;
DBUG_RETURN(((key->flags & HA_NOSAME) && return ((key->flags & HA_NOSAME) &&
key->key_length == tmp->min_length)); key->key_length == tmp->min_length);
} }
} }
DBUG_RETURN(0); return 0;
} }
...@@ -2478,8 +2377,6 @@ bool QUICK_SELECT::unique_key_range() ...@@ -2478,8 +2377,6 @@ bool QUICK_SELECT::unique_key_range()
static bool null_part_in_key(KEY_PART *key_part, const char *key, uint length) static bool null_part_in_key(KEY_PART *key_part, const char *key, uint length)
{ {
DBUG_ENTER("null_part_in_key");
for (const char *end=key+length ; for (const char *end=key+length ;
key < end; key < end;
key+= key_part++->part_length) key+= key_part++->part_length)
...@@ -2487,10 +2384,10 @@ static bool null_part_in_key(KEY_PART *key_part, const char *key, uint length) ...@@ -2487,10 +2384,10 @@ static bool null_part_in_key(KEY_PART *key_part, const char *key, uint length)
if (key_part->null_bit) if (key_part->null_bit)
{ {
if (*key++) if (*key++)
DBUG_RETURN(1); return 1;
} }
} }
DBUG_RETURN(0); return 0;
} }
/**************************************************************************** /****************************************************************************
...@@ -2499,8 +2396,6 @@ static bool null_part_in_key(KEY_PART *key_part, const char *key, uint length) ...@@ -2499,8 +2396,6 @@ static bool null_part_in_key(KEY_PART *key_part, const char *key, uint length)
QUICK_SELECT *get_quick_select_for_ref(TABLE *table, TABLE_REF *ref) QUICK_SELECT *get_quick_select_for_ref(TABLE *table, TABLE_REF *ref)
{ {
DBUG_ENTER("*get_quick_select_for_ref");
table->file->index_end(); // Remove old cursor table->file->index_end(); // Remove old cursor
QUICK_SELECT *quick=new QUICK_SELECT(table, ref->key, 1); QUICK_SELECT *quick=new QUICK_SELECT(table, ref->key, 1);
KEY *key_info = &table->key_info[ref->key]; KEY *key_info = &table->key_info[ref->key];
...@@ -2508,7 +2403,7 @@ QUICK_SELECT *get_quick_select_for_ref(TABLE *table, TABLE_REF *ref) ...@@ -2508,7 +2403,7 @@ QUICK_SELECT *get_quick_select_for_ref(TABLE *table, TABLE_REF *ref)
uint part; uint part;
if (!quick) if (!quick)
DBUG_RETURN(0); return 0;
QUICK_RANGE *range= new QUICK_RANGE(); QUICK_RANGE *range= new QUICK_RANGE();
if (!range || cp_buffer_from_ref(ref)) if (!range || cp_buffer_from_ref(ref))
goto err; goto err;
...@@ -2531,11 +2426,11 @@ QUICK_SELECT *get_quick_select_for_ref(TABLE *table, TABLE_REF *ref) ...@@ -2531,11 +2426,11 @@ QUICK_SELECT *get_quick_select_for_ref(TABLE *table, TABLE_REF *ref)
key_part->null_bit= key_info->key_part[part].null_bit; key_part->null_bit= key_info->key_part[part].null_bit;
} }
if (!quick->ranges.push_back(range)) if (!quick->ranges.push_back(range))
DBUG_RETURN(quick); return quick;
err: err:
delete quick; delete quick;
DBUG_RETURN(0); return 0;
} }
/* get next possible record using quick-struct */ /* get next possible record using quick-struct */
...@@ -2596,7 +2491,6 @@ int QUICK_SELECT::get_next() ...@@ -2596,7 +2491,6 @@ int QUICK_SELECT::get_next()
} }
range=0; // To next range range=0; // To next range
} }
DBUG_RETURN(0); // impossible
} }
/* compare if found key is over max-value */ /* compare if found key is over max-value */
...@@ -2604,10 +2498,8 @@ int QUICK_SELECT::get_next() ...@@ -2604,10 +2498,8 @@ int QUICK_SELECT::get_next()
int QUICK_SELECT::cmp_next(QUICK_RANGE *range_arg) int QUICK_SELECT::cmp_next(QUICK_RANGE *range_arg)
{ {
DBUG_ENTER("QUICK_SELECT::cmp_next");
if (range_arg->flag & NO_MAX_RANGE) if (range_arg->flag & NO_MAX_RANGE)
DBUG_RETURN(0); /* key can't be to large */ return 0; /* key can't be to large */
KEY_PART *key_part=key_parts; KEY_PART *key_part=key_parts;
for (char *key=range_arg->max_key, *end=key+range_arg->max_length; for (char *key=range_arg->max_key, *end=key+range_arg->max_length;
...@@ -2620,18 +2512,18 @@ int QUICK_SELECT::cmp_next(QUICK_RANGE *range_arg) ...@@ -2620,18 +2512,18 @@ int QUICK_SELECT::cmp_next(QUICK_RANGE *range_arg)
if (*key++) if (*key++)
{ {
if (!key_part->field->is_null()) if (!key_part->field->is_null())
DBUG_RETURN(1); return 1;
continue; continue;
} }
else if (key_part->field->is_null()) else if (key_part->field->is_null())
DBUG_RETURN(0); return 0;
} }
if ((cmp=key_part->field->key_cmp((byte*) key, key_part->part_length)) < 0) if ((cmp=key_part->field->key_cmp((byte*) key, key_part->part_length)) < 0)
DBUG_RETURN(0); return 0;
if (cmp > 0) if (cmp > 0)
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN((range_arg->flag & NEAR_MAX) ? 1 : 0); // Exact match return (range_arg->flag & NEAR_MAX) ? 1 : 0; // Exact match
} }
...@@ -2650,7 +2542,6 @@ QUICK_SELECT_DESC::QUICK_SELECT_DESC(QUICK_SELECT *q, uint used_key_parts) ...@@ -2650,7 +2542,6 @@ QUICK_SELECT_DESC::QUICK_SELECT_DESC(QUICK_SELECT *q, uint used_key_parts)
{ {
bool not_read_after_key = file->table_flags() & HA_NOT_READ_AFTER_KEY; bool not_read_after_key = file->table_flags() & HA_NOT_READ_AFTER_KEY;
QUICK_RANGE *r; QUICK_RANGE *r;
DBUG_ENTER("QUICK_SELECT_DESC::QUICK_SELECT_DESC");
it.rewind(); it.rewind();
for (r = it++; r; r = it++) for (r = it++; r; r = it++)
...@@ -2662,7 +2553,7 @@ QUICK_SELECT_DESC::QUICK_SELECT_DESC(QUICK_SELECT *q, uint used_key_parts) ...@@ -2662,7 +2553,7 @@ QUICK_SELECT_DESC::QUICK_SELECT_DESC(QUICK_SELECT *q, uint used_key_parts)
it.rewind(); // Reset range it.rewind(); // Reset range
error = HA_ERR_UNSUPPORTED; error = HA_ERR_UNSUPPORTED;
dont_free=1; // Don't free memory from 'q' dont_free=1; // Don't free memory from 'q'
DBUG_VOID_RETURN; return;
} }
} }
/* Remove EQ_RANGE flag for keys that are not using the full key */ /* Remove EQ_RANGE flag for keys that are not using the full key */
...@@ -2675,7 +2566,6 @@ QUICK_SELECT_DESC::QUICK_SELECT_DESC(QUICK_SELECT *q, uint used_key_parts) ...@@ -2675,7 +2566,6 @@ QUICK_SELECT_DESC::QUICK_SELECT_DESC(QUICK_SELECT *q, uint used_key_parts)
rev_it.rewind(); rev_it.rewind();
q->dont_free=1; // Don't free shared mem q->dont_free=1; // Don't free shared mem
delete q; delete q;
DBUG_VOID_RETURN;
} }
...@@ -2763,7 +2653,6 @@ int QUICK_SELECT_DESC::get_next() ...@@ -2763,7 +2653,6 @@ int QUICK_SELECT_DESC::get_next()
} }
range = 0; // To next range range = 0; // To next range
} }
DBUG_RETURN(0); // impossible
} }
...@@ -2773,10 +2662,8 @@ int QUICK_SELECT_DESC::get_next() ...@@ -2773,10 +2662,8 @@ int QUICK_SELECT_DESC::get_next()
int QUICK_SELECT_DESC::cmp_prev(QUICK_RANGE *range_arg) int QUICK_SELECT_DESC::cmp_prev(QUICK_RANGE *range_arg)
{ {
DBUG_ENTER("QUICK_SELECT_DESC::cmp_prev");
if (range_arg->flag & NO_MIN_RANGE) if (range_arg->flag & NO_MIN_RANGE)
DBUG_RETURN(0); /* key can't be to small */ return 0; /* key can't be to small */
KEY_PART *key_part = key_parts; KEY_PART *key_part = key_parts;
for (char *key = range_arg->min_key, *end = key + range_arg->min_length; for (char *key = range_arg->min_key, *end = key + range_arg->min_length;
...@@ -2791,19 +2678,19 @@ int QUICK_SELECT_DESC::cmp_prev(QUICK_RANGE *range_arg) ...@@ -2791,19 +2678,19 @@ int QUICK_SELECT_DESC::cmp_prev(QUICK_RANGE *range_arg)
{ {
// the range is expecting a null value // the range is expecting a null value
if (!key_part->field->is_null()) if (!key_part->field->is_null())
DBUG_RETURN(0); // not null -- still inside the range return 0; // not null -- still inside the range
continue; // null -- exact match, go to next key part continue; // null -- exact match, go to next key part
} }
else if (key_part->field->is_null()) else if (key_part->field->is_null())
DBUG_RETURN(1); // null -- outside the range return 1; // null -- outside the range
} }
if ((cmp = key_part->field->key_cmp((byte*) key, if ((cmp = key_part->field->key_cmp((byte*) key,
key_part->part_length)) > 0) key_part->part_length)) > 0)
DBUG_RETURN(0); return 0;
if (cmp < 0) if (cmp < 0)
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN((range_arg->flag & NEAR_MIN) ? 1 : 0); // Exact match return (range_arg->flag & NEAR_MIN) ? 1 : 0; // Exact match
} }
...@@ -2814,11 +2701,9 @@ int QUICK_SELECT_DESC::cmp_prev(QUICK_RANGE *range_arg) ...@@ -2814,11 +2701,9 @@ int QUICK_SELECT_DESC::cmp_prev(QUICK_RANGE *range_arg)
bool QUICK_SELECT_DESC::range_reads_after_key(QUICK_RANGE *range_arg) bool QUICK_SELECT_DESC::range_reads_after_key(QUICK_RANGE *range_arg)
{ {
DBUG_ENTER("QUICK_SELECT_DESC::range_reads_after_key"); return ((range_arg->flag & (NO_MAX_RANGE | NEAR_MAX)) ||
DBUG_RETURN(((range_arg->flag & (NO_MAX_RANGE | NEAR_MAX)) ||
!(range_arg->flag & EQ_RANGE) || !(range_arg->flag & EQ_RANGE) ||
head->key_info[index].key_length != range_arg->max_length) ? 1 : 0); head->key_info[index].key_length != range_arg->max_length) ? 1 : 0;
} }
...@@ -2830,7 +2715,6 @@ bool QUICK_SELECT_DESC::test_if_null_range(QUICK_RANGE *range_arg, ...@@ -2830,7 +2715,6 @@ bool QUICK_SELECT_DESC::test_if_null_range(QUICK_RANGE *range_arg,
uint offset,end; uint offset,end;
KEY_PART *key_part = key_parts, KEY_PART *key_part = key_parts,
*key_part_end= key_part+used_key_parts; *key_part_end= key_part+used_key_parts;
DBUG_ENTER("QUICK_SELECT_DESC::test_if_null_range");
for (offset= 0, end = min(range_arg->min_length, range_arg->max_length) ; for (offset= 0, end = min(range_arg->min_length, range_arg->max_length) ;
offset < end && key_part != key_part_end ; offset < end && key_part != key_part_end ;
...@@ -2845,7 +2729,7 @@ bool QUICK_SELECT_DESC::test_if_null_range(QUICK_RANGE *range_arg, ...@@ -2845,7 +2729,7 @@ bool QUICK_SELECT_DESC::test_if_null_range(QUICK_RANGE *range_arg,
continue; continue;
} }
if (null_length && range_arg->min_key[offset]) if (null_length && range_arg->min_key[offset])
DBUG_RETURN(1); // min_key is null and max_key isn't return 1; // min_key is null and max_key isn't
// Range doesn't cover NULL. This is ok if there is no more null parts // Range doesn't cover NULL. This is ok if there is no more null parts
break; break;
} }
...@@ -2858,7 +2742,7 @@ bool QUICK_SELECT_DESC::test_if_null_range(QUICK_RANGE *range_arg, ...@@ -2858,7 +2742,7 @@ bool QUICK_SELECT_DESC::test_if_null_range(QUICK_RANGE *range_arg,
if (key_part != key_part_end && key_part->null_bit) if (key_part != key_part_end && key_part->null_bit)
{ {
if (offset >= range_arg->min_length || range_arg->min_key[offset]) if (offset >= range_arg->min_length || range_arg->min_key[offset])
DBUG_RETURN(1); // Could be null return 1; // Could be null
key_part++; key_part++;
} }
/* /*
...@@ -2867,8 +2751,8 @@ bool QUICK_SELECT_DESC::test_if_null_range(QUICK_RANGE *range_arg, ...@@ -2867,8 +2751,8 @@ bool QUICK_SELECT_DESC::test_if_null_range(QUICK_RANGE *range_arg,
*/ */
for (; key_part != key_part_end ; key_part++) for (; key_part != key_part_end ; key_part++)
if (key_part->null_bit) if (key_part->null_bit)
DBUG_RETURN(1); // Covers null part return 1; // Covers null part
DBUG_RETURN(0); return 0;
} }
...@@ -2886,7 +2770,6 @@ print_key(KEY_PART *key_part,const char *key,uint used_length) ...@@ -2886,7 +2770,6 @@ print_key(KEY_PART *key_part,const char *key,uint used_length)
{ {
char buff[1024]; char buff[1024];
String tmp(buff,sizeof(buff)); String tmp(buff,sizeof(buff));
DBUG_ENTER("print_key");
for (uint length=0; for (uint length=0;
length < used_length ; length < used_length ;
...@@ -2910,7 +2793,6 @@ print_key(KEY_PART *key_part,const char *key,uint used_length) ...@@ -2910,7 +2793,6 @@ print_key(KEY_PART *key_part,const char *key,uint used_length)
field->val_str(&tmp,&tmp); field->val_str(&tmp,&tmp);
fwrite(tmp.ptr(),sizeof(char),tmp.length(),DBUG_FILE); fwrite(tmp.ptr(),sizeof(char),tmp.length(),DBUG_FILE);
} }
DBUG_VOID_RETURN;
} }
static void print_quick(QUICK_SELECT *quick,key_map needed_reg) static void print_quick(QUICK_SELECT *quick,key_map needed_reg)
......
...@@ -156,7 +156,6 @@ int handle_select(THD *thd, LEX *lex, select_result *result) ...@@ -156,7 +156,6 @@ int handle_select(THD *thd, LEX *lex, select_result *result)
{ {
int res; int res;
register SELECT_LEX *select_lex = &lex->select_lex; register SELECT_LEX *select_lex = &lex->select_lex;
DBUG_ENTER("handle_select");
#ifdef DISABLED_UNTIL_REWRITTEN_IN_4_1 #ifdef DISABLED_UNTIL_REWRITTEN_IN_4_1
if (lex->olap) if (lex->olap)
...@@ -169,7 +168,7 @@ int handle_select(THD *thd, LEX *lex, select_result *result) ...@@ -169,7 +168,7 @@ int handle_select(THD *thd, LEX *lex, select_result *result)
if (sl->olap != UNSPECIFIED_OLAP_TYPE) if (sl->olap != UNSPECIFIED_OLAP_TYPE)
{ {
if ((error=handle_olaps(lex,sl))) if ((error=handle_olaps(lex,sl)))
DBUG_RETURN(error); return error;
lex->last_selects->next=sl_next; lex->last_selects->next=sl_next;
} }
} }
...@@ -191,7 +190,7 @@ int handle_select(THD *thd, LEX *lex, select_result *result) ...@@ -191,7 +190,7 @@ int handle_select(THD *thd, LEX *lex, select_result *result)
if (res && result) if (res && result)
result->abort(); result->abort();
delete result; delete result;
DBUG_RETURN(res); return res;
} }
...@@ -1267,12 +1266,10 @@ static KEY_FIELD * ...@@ -1267,12 +1266,10 @@ static KEY_FIELD *
merge_key_fields(KEY_FIELD *start,KEY_FIELD *new_fields,KEY_FIELD *end, merge_key_fields(KEY_FIELD *start,KEY_FIELD *new_fields,KEY_FIELD *end,
uint and_level) uint and_level)
{ {
DBUG_ENTER("merge_key_fields");
if (start == new_fields) if (start == new_fields)
DBUG_RETURN(start); // Impossible or return start; // Impossible or
if (new_fields == end) if (new_fields == end)
DBUG_RETURN(start); // No new fields, skip all return start; // No new fields, skip all
KEY_FIELD *first_free=new_fields; KEY_FIELD *first_free=new_fields;
...@@ -1319,7 +1316,7 @@ merge_key_fields(KEY_FIELD *start,KEY_FIELD *new_fields,KEY_FIELD *end, ...@@ -1319,7 +1316,7 @@ merge_key_fields(KEY_FIELD *start,KEY_FIELD *new_fields,KEY_FIELD *end,
} }
old++; old++;
} }
DBUG_RETURN(first_free); return first_free;
} }
...@@ -1329,14 +1326,12 @@ add_key_field(KEY_FIELD **key_fields,uint and_level, ...@@ -1329,14 +1326,12 @@ add_key_field(KEY_FIELD **key_fields,uint and_level,
table_map usable_tables) table_map usable_tables)
{ {
bool exists_optimize=0; bool exists_optimize=0;
DBUG_ENTER("add_key_field");
if (!(field->flags & PART_KEY_FLAG)) if (!(field->flags & PART_KEY_FLAG))
{ {
// Don't remove column IS NULL on a LEFT JOIN table // Don't remove column IS NULL on a LEFT JOIN table
if (!eq_func || !value || value->type() != Item::NULL_ITEM || if (!eq_func || !value || value->type() != Item::NULL_ITEM ||
!field->table->maybe_null || field->null_ptr) !field->table->maybe_null || field->null_ptr)
DBUG_VOID_RETURN; // Not a key. Skip it return; // Not a key. Skip it
exists_optimize=1; exists_optimize=1;
} }
else else
...@@ -1344,12 +1339,12 @@ add_key_field(KEY_FIELD **key_fields,uint and_level, ...@@ -1344,12 +1339,12 @@ add_key_field(KEY_FIELD **key_fields,uint and_level,
table_map used_tables=0; table_map used_tables=0;
if (value && (used_tables=value->used_tables()) & if (value && (used_tables=value->used_tables()) &
(field->table->map | RAND_TABLE_BIT)) (field->table->map | RAND_TABLE_BIT))
DBUG_VOID_RETURN; return;
if (!(usable_tables & field->table->map)) if (!(usable_tables & field->table->map))
{ {
if (!eq_func || !value || value->type() != Item::NULL_ITEM || if (!eq_func || !value || value->type() != Item::NULL_ITEM ||
!field->table->maybe_null || field->null_ptr) !field->table->maybe_null || field->null_ptr)
DBUG_VOID_RETURN; // Can't use left join optimize return; // Can't use left join optimize
exists_optimize=1; exists_optimize=1;
} }
else else
...@@ -1362,7 +1357,7 @@ add_key_field(KEY_FIELD **key_fields,uint and_level, ...@@ -1362,7 +1357,7 @@ add_key_field(KEY_FIELD **key_fields,uint and_level,
if (!value) if (!value)
{ // Probably BETWEEN or IN { // Probably BETWEEN or IN
stat[0].const_keys |= possible_keys; stat[0].const_keys |= possible_keys;
DBUG_VOID_RETURN; // Can't be used as eq key return; // Can't be used as eq key
} }
/* Save the following cases: /* Save the following cases:
...@@ -1383,7 +1378,7 @@ add_key_field(KEY_FIELD **key_fields,uint and_level, ...@@ -1383,7 +1378,7 @@ add_key_field(KEY_FIELD **key_fields,uint and_level,
field->result_type() == STRING_RESULT && field->result_type() == STRING_RESULT &&
value->result_type() != STRING_RESULT && value->result_type() != STRING_RESULT &&
field->cmp_type() != value->result_type()) field->cmp_type() != value->result_type())
DBUG_VOID_RETURN; return;
} }
} }
/* Store possible eq field */ /* Store possible eq field */
...@@ -1393,7 +1388,6 @@ add_key_field(KEY_FIELD **key_fields,uint and_level, ...@@ -1393,7 +1388,6 @@ add_key_field(KEY_FIELD **key_fields,uint and_level,
(*key_fields)->level=(*key_fields)->const_level=and_level; (*key_fields)->level=(*key_fields)->const_level=and_level;
(*key_fields)->exists_optimize=exists_optimize; (*key_fields)->exists_optimize=exists_optimize;
(*key_fields)++; (*key_fields)++;
DBUG_VOID_RETURN;
} }
...@@ -1401,8 +1395,6 @@ static void ...@@ -1401,8 +1395,6 @@ static void
add_key_fields(JOIN_TAB *stat,KEY_FIELD **key_fields,uint *and_level, add_key_fields(JOIN_TAB *stat,KEY_FIELD **key_fields,uint *and_level,
COND *cond, table_map usable_tables) COND *cond, table_map usable_tables)
{ {
DBUG_ENTER("add_key_fields");
if (cond->type() == Item_func::COND_ITEM) if (cond->type() == Item_func::COND_ITEM)
{ {
List_iterator_fast<Item> li(*((Item_cond*) cond)->argument_list()); List_iterator_fast<Item> li(*((Item_cond*) cond)->argument_list());
...@@ -1435,12 +1427,12 @@ add_key_fields(JOIN_TAB *stat,KEY_FIELD **key_fields,uint *and_level, ...@@ -1435,12 +1427,12 @@ add_key_fields(JOIN_TAB *stat,KEY_FIELD **key_fields,uint *and_level,
*key_fields,++(*and_level)); *key_fields,++(*and_level));
} }
} }
DBUG_VOID_RETURN; return;
} }
/* If item is of type 'field op field/constant' add it to key_fields */ /* If item is of type 'field op field/constant' add it to key_fields */
if (cond->type() != Item::FUNC_ITEM) if (cond->type() != Item::FUNC_ITEM)
DBUG_VOID_RETURN; return;
Item_func *cond_func= (Item_func*) cond; Item_func *cond_func= (Item_func*) cond;
switch (cond_func->select_optimize()) { switch (cond_func->select_optimize()) {
case Item_func::OPTIMIZE_NONE: case Item_func::OPTIMIZE_NONE:
...@@ -1484,7 +1476,7 @@ add_key_fields(JOIN_TAB *stat,KEY_FIELD **key_fields,uint *and_level, ...@@ -1484,7 +1476,7 @@ add_key_fields(JOIN_TAB *stat,KEY_FIELD **key_fields,uint *and_level,
} }
break; break;
} }
DBUG_VOID_RETURN; return;
} }
/* /*
...@@ -1496,10 +1488,8 @@ static uint ...@@ -1496,10 +1488,8 @@ static uint
max_part_bit(key_map bits) max_part_bit(key_map bits)
{ {
uint found; uint found;
DBUG_ENTER("max_part_bit");
for (found=0; bits & 1 ; found++,bits>>=1) ; for (found=0; bits & 1 ; found++,bits>>=1) ;
DBUG_RETURN(found); return found;
} }
...@@ -1509,7 +1499,6 @@ add_key_part(DYNAMIC_ARRAY *keyuse_array,KEY_FIELD *key_field) ...@@ -1509,7 +1499,6 @@ add_key_part(DYNAMIC_ARRAY *keyuse_array,KEY_FIELD *key_field)
Field *field=key_field->field; Field *field=key_field->field;
TABLE *form= field->table; TABLE *form= field->table;
KEYUSE keyuse; KEYUSE keyuse;
DBUG_ENTER("add_key_part");
if (key_field->eq_func && !key_field->exists_optimize) if (key_field->eq_func && !key_field->exists_optimize)
{ {
...@@ -1539,7 +1528,6 @@ add_key_part(DYNAMIC_ARRAY *keyuse_array,KEY_FIELD *key_field) ...@@ -1539,7 +1528,6 @@ add_key_part(DYNAMIC_ARRAY *keyuse_array,KEY_FIELD *key_field)
if (key_field->val->type() == Item::NULL_ITEM && if (key_field->val->type() == Item::NULL_ITEM &&
!key_field->field->real_maybe_null()) !key_field->field->real_maybe_null())
key_field->field->table->reginfo.not_exists_optimize=1; key_field->field->table->reginfo.not_exists_optimize=1;
DBUG_VOID_RETURN;
} }
static void static void
...@@ -1547,10 +1535,9 @@ add_ft_keys(DYNAMIC_ARRAY *keyuse_array, ...@@ -1547,10 +1535,9 @@ add_ft_keys(DYNAMIC_ARRAY *keyuse_array,
JOIN_TAB *stat,COND *cond,table_map usable_tables) JOIN_TAB *stat,COND *cond,table_map usable_tables)
{ {
Item_func_match *cond_func=NULL; Item_func_match *cond_func=NULL;
DBUG_ENTER("add_ft_keys");
if (!cond) if (!cond)
DBUG_VOID_RETURN; return;
if (cond->type() == Item::FUNC_ITEM) if (cond->type() == Item::FUNC_ITEM)
{ {
...@@ -1602,7 +1589,7 @@ add_ft_keys(DYNAMIC_ARRAY *keyuse_array, ...@@ -1602,7 +1589,7 @@ add_ft_keys(DYNAMIC_ARRAY *keyuse_array,
} }
if (!cond_func || cond_func->key == NO_SUCH_KEY) if (!cond_func || cond_func->key == NO_SUCH_KEY)
DBUG_VOID_RETURN; return;
KEYUSE keyuse; KEYUSE keyuse;
...@@ -1613,21 +1600,18 @@ add_ft_keys(DYNAMIC_ARRAY *keyuse_array, ...@@ -1613,21 +1600,18 @@ add_ft_keys(DYNAMIC_ARRAY *keyuse_array,
keyuse.keypart=FT_KEYPART; keyuse.keypart=FT_KEYPART;
keyuse.used_tables=cond_func->key_item()->used_tables(); keyuse.used_tables=cond_func->key_item()->used_tables();
VOID(insert_dynamic(keyuse_array,(gptr) &keyuse)); VOID(insert_dynamic(keyuse_array,(gptr) &keyuse));
DBUG_VOID_RETURN;
} }
static int static int
sort_keyuse(KEYUSE *a,KEYUSE *b) sort_keyuse(KEYUSE *a,KEYUSE *b)
{ {
DBUG_ENTER("sort_keyuse");
if (a->table->tablenr != b->table->tablenr) if (a->table->tablenr != b->table->tablenr)
DBUG_RETURN((int) (a->table->tablenr - b->table->tablenr)); return (int) (a->table->tablenr - b->table->tablenr);
if (a->key != b->key) if (a->key != b->key)
DBUG_RETURN((int) (a->key - b->key)); return (int) (a->key - b->key);
if (a->keypart != b->keypart) if (a->keypart != b->keypart)
DBUG_RETURN((int) (a->keypart - b->keypart)); return (int) (a->keypart - b->keypart);
DBUG_RETURN(test(a->used_tables) - test(b->used_tables)); // Place const first return test(a->used_tables) - test(b->used_tables); // Place const first
} }
...@@ -1642,14 +1626,13 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab, ...@@ -1642,14 +1626,13 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab,
uint tables, COND *cond, table_map normal_tables) uint tables, COND *cond, table_map normal_tables)
{ {
uint and_level,i,found_eq_constant; uint and_level,i,found_eq_constant;
DBUG_ENTER("update_ref_and_keys");
{ {
KEY_FIELD *key_fields,*end; KEY_FIELD *key_fields,*end;
if (!(key_fields=(KEY_FIELD*) if (!(key_fields=(KEY_FIELD*)
thd->alloc(sizeof(key_fields[0])*(thd->cond_count+1)*2))) thd->alloc(sizeof(key_fields[0])*(thd->cond_count+1)*2)))
DBUG_RETURN(TRUE); /* purecov: inspected */ return TRUE; /* purecov: inspected */
and_level=0; end=key_fields; and_level=0; end=key_fields;
if (cond) if (cond)
add_key_fields(join_tab,&end,&and_level,cond,normal_tables); add_key_fields(join_tab,&end,&and_level,cond,normal_tables);
...@@ -1662,7 +1645,7 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab, ...@@ -1662,7 +1645,7 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab,
} }
} }
if (my_init_dynamic_array(keyuse,sizeof(KEYUSE),20,64)) if (my_init_dynamic_array(keyuse,sizeof(KEYUSE),20,64))
DBUG_RETURN(TRUE); return TRUE;
/* fill keyuse with found key parts */ /* fill keyuse with found key parts */
for (KEY_FIELD *field=key_fields ; field != end ; field++) for (KEY_FIELD *field=key_fields ; field != end ; field++)
add_key_part(keyuse,field); add_key_part(keyuse,field);
...@@ -1721,7 +1704,7 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab, ...@@ -1721,7 +1704,7 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab,
VOID(set_dynamic(keyuse,(gptr) &end,i)); VOID(set_dynamic(keyuse,(gptr) &end,i));
keyuse->elements=i; keyuse->elements=i;
} }
DBUG_RETURN(FALSE); return FALSE;
} }
...@@ -1735,8 +1718,6 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab, ...@@ -1735,8 +1718,6 @@ update_ref_and_keys(THD *thd, DYNAMIC_ARRAY *keyuse,JOIN_TAB *join_tab,
static void static void
set_position(JOIN *join,uint idx,JOIN_TAB *table,KEYUSE *key) set_position(JOIN *join,uint idx,JOIN_TAB *table,KEYUSE *key)
{ {
DBUG_ENTER("set_position");
join->positions[idx].table= table; join->positions[idx].table= table;
join->positions[idx].key=key; join->positions[idx].key=key;
join->positions[idx].records_read=1.0; /* This is a const table */ join->positions[idx].records_read=1.0; /* This is a const table */
...@@ -1751,7 +1732,6 @@ set_position(JOIN *join,uint idx,JOIN_TAB *table,KEYUSE *key) ...@@ -1751,7 +1732,6 @@ set_position(JOIN *join,uint idx,JOIN_TAB *table,KEYUSE *key)
next=tmp; next=tmp;
} }
join->best_ref[idx]=table; join->best_ref[idx]=table;
DBUG_VOID_RETURN;
} }
...@@ -1772,7 +1752,6 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count, ...@@ -1772,7 +1752,6 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count,
ulong rec; ulong rec;
double tmp; double tmp;
THD *thd= current_thd; THD *thd= current_thd;
DBUG_ENTER("find_best");
if (!rest_tables) if (!rest_tables)
{ {
...@@ -1789,10 +1768,10 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count, ...@@ -1789,10 +1768,10 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count,
sizeof(POSITION)*idx); sizeof(POSITION)*idx);
join->best_read=read_time; join->best_read=read_time;
} }
DBUG_VOID_RETURN; return;
} }
if (read_time+record_count/(double) TIME_FOR_COMPARE >= join->best_read) if (read_time+record_count/(double) TIME_FOR_COMPARE >= join->best_read)
DBUG_VOID_RETURN; /* Found better before */ return; /* Found better before */
JOIN_TAB *s; JOIN_TAB *s;
double best_record_count=DBL_MAX,best_read_time=DBL_MAX; double best_record_count=DBL_MAX,best_read_time=DBL_MAX;
...@@ -2089,7 +2068,6 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count, ...@@ -2089,7 +2068,6 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count,
break; // Don't test all combinations break; // Don't test all combinations
} }
} }
DBUG_VOID_RETURN;
} }
...@@ -2100,8 +2078,6 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count, ...@@ -2100,8 +2078,6 @@ find_best(JOIN *join,table_map rest_tables,uint idx,double record_count,
static void calc_used_field_length(THD *thd, JOIN_TAB *join_tab) static void calc_used_field_length(THD *thd, JOIN_TAB *join_tab)
{ {
uint null_fields,blobs,fields,rec_length; uint null_fields,blobs,fields,rec_length;
DBUG_ENTER("calc_used_field_length");
null_fields=blobs=fields=rec_length=0; null_fields=blobs=fields=rec_length=0;
Field **f_ptr,*field; Field **f_ptr,*field;
...@@ -2131,7 +2107,6 @@ static void calc_used_field_length(THD *thd, JOIN_TAB *join_tab) ...@@ -2131,7 +2107,6 @@ static void calc_used_field_length(THD *thd, JOIN_TAB *join_tab)
join_tab->used_fields=fields; join_tab->used_fields=fields;
join_tab->used_fieldlength=rec_length; join_tab->used_fieldlength=rec_length;
join_tab->used_blobs=blobs; join_tab->used_blobs=blobs;
DBUG_VOID_RETURN;
} }
...@@ -2141,7 +2116,6 @@ cache_record_length(JOIN *join,uint idx) ...@@ -2141,7 +2116,6 @@ cache_record_length(JOIN *join,uint idx)
uint length=0; uint length=0;
JOIN_TAB **pos,**end; JOIN_TAB **pos,**end;
THD *thd=join->thd; THD *thd=join->thd;
DBUG_ENTER("cache_record_length");
for (pos=join->best_ref+join->const_tables,end=join->best_ref+idx ; for (pos=join->best_ref+join->const_tables,end=join->best_ref+idx ;
pos != end ; pos != end ;
...@@ -2152,7 +2126,7 @@ cache_record_length(JOIN *join,uint idx) ...@@ -2152,7 +2126,7 @@ cache_record_length(JOIN *join,uint idx)
calc_used_field_length(thd, join_tab); calc_used_field_length(thd, join_tab);
length+=join_tab->used_fieldlength; length+=join_tab->used_fieldlength;
} }
DBUG_RETURN(length); return length;
} }
...@@ -2160,7 +2134,6 @@ static double ...@@ -2160,7 +2134,6 @@ static double
prev_record_reads(JOIN *join,table_map found_ref) prev_record_reads(JOIN *join,table_map found_ref)
{ {
double found=1.0; double found=1.0;
DBUG_ENTER("prev_record_reads");
for (POSITION *pos=join->positions ; found_ref ; pos++) for (POSITION *pos=join->positions ; found_ref ; pos++)
{ {
...@@ -2170,7 +2143,7 @@ prev_record_reads(JOIN *join,table_map found_ref) ...@@ -2170,7 +2143,7 @@ prev_record_reads(JOIN *join,table_map found_ref)
found*=pos->records_read; found*=pos->records_read;
} }
} }
DBUG_RETURN(found); return found;
} }
...@@ -2187,12 +2160,11 @@ get_best_combination(JOIN *join) ...@@ -2187,12 +2160,11 @@ get_best_combination(JOIN *join)
KEYUSE *keyuse; KEYUSE *keyuse;
uint table_count; uint table_count;
THD *thd=join->thd; THD *thd=join->thd;
DBUG_ENTER("get_best_combination");
table_count=join->tables; table_count=join->tables;
if (!(join->join_tab=join_tab= if (!(join->join_tab=join_tab=
(JOIN_TAB*) thd->alloc(sizeof(JOIN_TAB)*table_count))) (JOIN_TAB*) thd->alloc(sizeof(JOIN_TAB)*table_count)))
DBUG_RETURN(TRUE); return TRUE;
join->full_join=0; join->full_join=0;
...@@ -2221,13 +2193,13 @@ get_best_combination(JOIN *join) ...@@ -2221,13 +2193,13 @@ get_best_combination(JOIN *join)
join->full_join=1; join->full_join=1;
} }
else if (create_ref_for_key(join, j, keyuse, used_tables)) else if (create_ref_for_key(join, j, keyuse, used_tables))
DBUG_RETURN(TRUE); // Something went wrong return TRUE; // Something went wrong
} }
for (i=0 ; i < table_count ; i++) for (i=0 ; i < table_count ; i++)
join->map2table[join->join_tab[i].table->tablenr]=join->join_tab+i; join->map2table[join->join_tab[i].table->tablenr]=join->join_tab+i;
update_depend_map(join); update_depend_map(join);
DBUG_RETURN(0); return 0;
} }
...@@ -2240,7 +2212,6 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse, ...@@ -2240,7 +2212,6 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse,
uint keyparts,length,key; uint keyparts,length,key;
TABLE *table; TABLE *table;
KEY *keyinfo; KEY *keyinfo;
DBUG_ENTER("create_ref_for_key");
/* /*
Use best key from find_best Use best key from find_best
...@@ -2284,7 +2255,7 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse, ...@@ -2284,7 +2255,7 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse,
(keyparts+1)))) || (keyparts+1)))) ||
!(j->ref.items= (Item**) thd->alloc(sizeof(Item*)*keyparts))) !(j->ref.items= (Item**) thd->alloc(sizeof(Item*)*keyparts)))
{ {
DBUG_RETURN(TRUE); return TRUE;
} }
j->ref.key_buff2=j->ref.key_buff+ALIGN_SIZE(length); j->ref.key_buff2=j->ref.key_buff+ALIGN_SIZE(length);
j->ref.key_err=1; j->ref.key_err=1;
...@@ -2296,7 +2267,7 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse, ...@@ -2296,7 +2267,7 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse,
{ {
j->ref.items[0]=((Item_func*)(keyuse->val))->key_item(); j->ref.items[0]=((Item_func*)(keyuse->val))->key_item();
if (keyuse->used_tables) if (keyuse->used_tables)
DBUG_RETURN(TRUE); // not supported yet. SerG return TRUE; // not supported yet. SerG
j->type=JT_FT; j->type=JT_FT;
} }
...@@ -2324,7 +2295,7 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse, ...@@ -2324,7 +2295,7 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse,
keyuse->val); keyuse->val);
if (thd->fatal_error) if (thd->fatal_error)
{ {
DBUG_RETURN(TRUE); return TRUE;
} }
tmp->copy(); tmp->copy();
} }
...@@ -2357,7 +2328,7 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse, ...@@ -2357,7 +2328,7 @@ static bool create_ref_for_key(JOIN *join, JOIN_TAB *j, KEYUSE *org_keyuse,
} }
else else
j->type=JT_EQ_REF; j->type=JT_EQ_REF;
DBUG_RETURN(0); return 0;
} }
...@@ -2366,31 +2337,29 @@ static store_key * ...@@ -2366,31 +2337,29 @@ static store_key *
get_store_key(THD *thd, KEYUSE *keyuse, table_map used_tables, get_store_key(THD *thd, KEYUSE *keyuse, table_map used_tables,
KEY_PART_INFO *key_part, char *key_buff, uint maybe_null) KEY_PART_INFO *key_part, char *key_buff, uint maybe_null)
{ {
DBUG_ENTER("get_store_key");
if (!((~used_tables) & keyuse->used_tables)) // if const item if (!((~used_tables) & keyuse->used_tables)) // if const item
{ {
DBUG_RETURN(new store_key_const_item(thd, return new store_key_const_item(thd,
key_part->field, key_part->field,
key_buff + maybe_null, key_buff + maybe_null,
maybe_null ? key_buff : 0, maybe_null ? key_buff : 0,
key_part->length, key_part->length,
keyuse->val)); keyuse->val);
} }
else if (keyuse->val->type() == Item::FIELD_ITEM) else if (keyuse->val->type() == Item::FIELD_ITEM)
DBUG_RETURN(new store_key_field(thd, return new store_key_field(thd,
key_part->field, key_part->field,
key_buff + maybe_null, key_buff + maybe_null,
maybe_null ? key_buff : 0, maybe_null ? key_buff : 0,
key_part->length, key_part->length,
((Item_field*) keyuse->val)->field, ((Item_field*) keyuse->val)->field,
keyuse->val->full_name())); keyuse->val->full_name());
DBUG_RETURN(new store_key_item(thd, return new store_key_item(thd,
key_part->field, key_part->field,
key_buff + maybe_null, key_buff + maybe_null,
maybe_null ? key_buff : 0, maybe_null ? key_buff : 0,
key_part->length, key_part->length,
keyuse->val)); keyuse->val);
} }
/* /*
...@@ -2403,12 +2372,10 @@ store_val_in_field(Field *field,Item *item) ...@@ -2403,12 +2372,10 @@ store_val_in_field(Field *field,Item *item)
{ {
THD *thd=current_thd; THD *thd=current_thd;
ulong cuted_fields=thd->cuted_fields; ulong cuted_fields=thd->cuted_fields;
DBUG_ENTER("store_val_in_field");
thd->count_cuted_fields=1; thd->count_cuted_fields=1;
item->save_in_field(field); item->save_in_field(field);
thd->count_cuted_fields=0; thd->count_cuted_fields=0;
DBUG_RETURN(cuted_fields != thd->cuted_fields); return cuted_fields != thd->cuted_fields;
} }
...@@ -2417,11 +2384,10 @@ make_simple_join(JOIN *join,TABLE *tmp_table) ...@@ -2417,11 +2384,10 @@ make_simple_join(JOIN *join,TABLE *tmp_table)
{ {
TABLE **tableptr; TABLE **tableptr;
JOIN_TAB *join_tab; JOIN_TAB *join_tab;
DBUG_ENTER("make_simple_join");
if (!(tableptr=(TABLE**) join->thd->alloc(sizeof(TABLE*))) || if (!(tableptr=(TABLE**) join->thd->alloc(sizeof(TABLE*))) ||
!(join_tab=(JOIN_TAB*) join->thd->alloc(sizeof(JOIN_TAB)))) !(join_tab=(JOIN_TAB*) join->thd->alloc(sizeof(JOIN_TAB))))
DBUG_RETURN(TRUE); return TRUE;
join->join_tab=join_tab; join->join_tab=join_tab;
join->table=tableptr; tableptr[0]=tmp_table; join->table=tableptr; tableptr[0]=tmp_table;
join->tables=1; join->tables=1;
...@@ -2453,7 +2419,7 @@ make_simple_join(JOIN *join,TABLE *tmp_table) ...@@ -2453,7 +2419,7 @@ make_simple_join(JOIN *join,TABLE *tmp_table)
bzero((char*) &join_tab->read_record,sizeof(join_tab->read_record)); bzero((char*) &join_tab->read_record,sizeof(join_tab->read_record));
tmp_table->status=0; tmp_table->status=0;
tmp_table->null_row=0; tmp_table->null_row=0;
DBUG_RETURN(FALSE); return FALSE;
} }
...@@ -2825,15 +2791,13 @@ join_free(JOIN *join) ...@@ -2825,15 +2791,13 @@ join_free(JOIN *join)
static bool static bool
eq_ref_table(JOIN *join, ORDER *start_order, JOIN_TAB *tab) eq_ref_table(JOIN *join, ORDER *start_order, JOIN_TAB *tab)
{ {
DBUG_ENTER("eq_ref_table");
if (tab->cached_eq_ref_table) // If cached if (tab->cached_eq_ref_table) // If cached
DBUG_RETURN(tab->eq_ref_table); return tab->eq_ref_table;
tab->cached_eq_ref_table=1; tab->cached_eq_ref_table=1;
if (tab->type == JT_CONST) // We can skip const tables if (tab->type == JT_CONST) // We can skip const tables
DBUG_RETURN((tab->eq_ref_table=1)); /* purecov: inspected */ return (tab->eq_ref_table=1); /* purecov: inspected */
if (tab->type != JT_EQ_REF) if (tab->type != JT_EQ_REF)
DBUG_RETURN((tab->eq_ref_table=0)); // We must use this return (tab->eq_ref_table=0); // We must use this
Item **ref_item=tab->ref.items; Item **ref_item=tab->ref.items;
Item **end=ref_item+tab->ref.key_parts; Item **end=ref_item+tab->ref.key_parts;
uint found=0; uint found=0;
...@@ -2857,7 +2821,7 @@ eq_ref_table(JOIN *join, ORDER *start_order, JOIN_TAB *tab) ...@@ -2857,7 +2821,7 @@ eq_ref_table(JOIN *join, ORDER *start_order, JOIN_TAB *tab)
continue; // Used in ORDER BY continue; // Used in ORDER BY
} }
if (!only_eq_ref_tables(join,start_order, (*ref_item)->used_tables())) if (!only_eq_ref_tables(join,start_order, (*ref_item)->used_tables()))
DBUG_RETURN((tab->eq_ref_table=0)); return (tab->eq_ref_table=0);
} }
} }
/* Check that there was no reference to table before sort order */ /* Check that there was no reference to table before sort order */
...@@ -2869,25 +2833,23 @@ eq_ref_table(JOIN *join, ORDER *start_order, JOIN_TAB *tab) ...@@ -2869,25 +2833,23 @@ eq_ref_table(JOIN *join, ORDER *start_order, JOIN_TAB *tab)
continue; continue;
} }
if (start_order->depend_map & map) if (start_order->depend_map & map)
DBUG_RETURN((tab->eq_ref_table=0)); return (tab->eq_ref_table=0);
} }
DBUG_RETURN(tab->eq_ref_table=1); return tab->eq_ref_table=1;
} }
static bool static bool
only_eq_ref_tables(JOIN *join,ORDER *order,table_map tables) only_eq_ref_tables(JOIN *join,ORDER *order,table_map tables)
{ {
DBUG_ENTER("only_eq_ref_tables");
if (specialflag & SPECIAL_SAFE_MODE) if (specialflag & SPECIAL_SAFE_MODE)
DBUG_RETURN(0); // skip this optimize /* purecov: inspected */ return 0; // skip this optimize /* purecov: inspected */
for (JOIN_TAB **tab=join->map2table ; tables ; tab++, tables>>=1) for (JOIN_TAB **tab=join->map2table ; tables ; tab++, tables>>=1)
{ {
if (tables & 1 && !eq_ref_table(join, order, *tab)) if (tables & 1 && !eq_ref_table(join, order, *tab))
DBUG_RETURN(0); return 0;
} }
DBUG_RETURN(1); return 1;
} }
...@@ -2896,7 +2858,6 @@ only_eq_ref_tables(JOIN *join,ORDER *order,table_map tables) ...@@ -2896,7 +2858,6 @@ only_eq_ref_tables(JOIN *join,ORDER *order,table_map tables)
static void update_depend_map(JOIN *join) static void update_depend_map(JOIN *join)
{ {
JOIN_TAB *join_tab=join->join_tab, *end=join_tab+join->tables; JOIN_TAB *join_tab=join->join_tab, *end=join_tab+join->tables;
DBUG_ENTER("update_depend_map");
for (; join_tab != end ; join_tab++) for (; join_tab != end ; join_tab++)
{ {
...@@ -2915,7 +2876,6 @@ static void update_depend_map(JOIN *join) ...@@ -2915,7 +2876,6 @@ static void update_depend_map(JOIN *join)
ref->depend_map|=(*tab)->ref.depend_map; ref->depend_map|=(*tab)->ref.depend_map;
} }
} }
DBUG_VOID_RETURN;
} }
...@@ -2923,8 +2883,6 @@ static void update_depend_map(JOIN *join) ...@@ -2923,8 +2883,6 @@ static void update_depend_map(JOIN *join)
static void update_depend_map(JOIN *join, ORDER *order) static void update_depend_map(JOIN *join, ORDER *order)
{ {
DBUG_ENTER("update_depend_map");
for (; order ; order=order->next) for (; order ; order=order->next)
{ {
table_map depend_map; table_map depend_map;
...@@ -2941,7 +2899,6 @@ static void update_depend_map(JOIN *join, ORDER *order) ...@@ -2941,7 +2899,6 @@ static void update_depend_map(JOIN *join, ORDER *order)
} }
} }
} }
DBUG_VOID_RETURN;
} }
...@@ -2953,10 +2910,9 @@ static void update_depend_map(JOIN *join, ORDER *order) ...@@ -2953,10 +2910,9 @@ static void update_depend_map(JOIN *join, ORDER *order)
static ORDER * static ORDER *
remove_const(JOIN *join,ORDER *first_order, COND *cond, bool *simple_order) remove_const(JOIN *join,ORDER *first_order, COND *cond, bool *simple_order)
{ {
DBUG_ENTER("remove_const");
if (join->tables == join->const_tables) if (join->tables == join->const_tables)
DBUG_RETURN(0); // No need to sort return 0; // No need to sort
DBUG_ENTER("remove_const");
ORDER *order,**prev_ptr; ORDER *order,**prev_ptr;
table_map first_table= join->join_tab[join->const_tables].table->map; table_map first_table= join->join_tab[join->const_tables].table->map;
table_map not_const_tables= ~join->const_table_map; table_map not_const_tables= ~join->const_table_map;
...@@ -3053,11 +3009,8 @@ return_zero_rows(JOIN *join, select_result *result,TABLE_LIST *tables, ...@@ -3053,11 +3009,8 @@ return_zero_rows(JOIN *join, select_result *result,TABLE_LIST *tables,
static void clear_tables(JOIN *join) static void clear_tables(JOIN *join)
{ {
DBUG_ENTER("clear_tables");
for (uint i=0 ; i < join->tables ; i++) for (uint i=0 ; i < join->tables ; i++)
mark_as_null_row(join->table[i]); // All fields are NULL mark_as_null_row(join->table[i]); // All fields are NULL
DBUG_VOID_RETURN;
} }
/***************************************************************************** /*****************************************************************************
...@@ -3096,8 +3049,6 @@ static void ...@@ -3096,8 +3049,6 @@ static void
change_cond_ref_to_const(I_List<COND_CMP> *save_list,Item *and_father, change_cond_ref_to_const(I_List<COND_CMP> *save_list,Item *and_father,
Item *cond, Item *field, Item *value) Item *cond, Item *field, Item *value)
{ {
DBUG_ENTER("change_cond_ref_to_const");
if (cond->type() == Item::COND_ITEM) if (cond->type() == Item::COND_ITEM)
{ {
bool and_level= ((Item_cond*) cond)->functype() == bool and_level= ((Item_cond*) cond)->functype() ==
...@@ -3107,10 +3058,10 @@ change_cond_ref_to_const(I_List<COND_CMP> *save_list,Item *and_father, ...@@ -3107,10 +3058,10 @@ change_cond_ref_to_const(I_List<COND_CMP> *save_list,Item *and_father,
while ((item=li++)) while ((item=li++))
change_cond_ref_to_const(save_list,and_level ? cond : item, item, change_cond_ref_to_const(save_list,and_level ? cond : item, item,
field, value); field, value);
DBUG_VOID_RETURN; return;
} }
if (cond->eq_cmp_result() == Item::COND_OK) if (cond->eq_cmp_result() == Item::COND_OK)
DBUG_VOID_RETURN; // Not a boolean function return; // Not a boolean function
Item_bool_func2 *func= (Item_bool_func2*) cond; Item_bool_func2 *func= (Item_bool_func2*) cond;
Item *left_item= func->arguments()[0]; Item *left_item= func->arguments()[0];
...@@ -3157,7 +3108,6 @@ change_cond_ref_to_const(I_List<COND_CMP> *save_list,Item *and_father, ...@@ -3157,7 +3108,6 @@ change_cond_ref_to_const(I_List<COND_CMP> *save_list,Item *and_father,
func->arguments()[1]->result_type())); func->arguments()[1]->result_type()));
} }
} }
DBUG_VOID_RETURN;
} }
...@@ -3165,8 +3115,6 @@ static void ...@@ -3165,8 +3115,6 @@ static void
propagate_cond_constants(I_List<COND_CMP> *save_list,COND *and_level, propagate_cond_constants(I_List<COND_CMP> *save_list,COND *and_level,
COND *cond) COND *cond)
{ {
DBUG_ENTER("propagate_cond_constants");
if (cond->type() == Item::COND_ITEM) if (cond->type() == Item::COND_ITEM)
{ {
bool and_level= ((Item_cond*) cond)->functype() == bool and_level= ((Item_cond*) cond)->functype() ==
...@@ -3224,19 +3172,16 @@ propagate_cond_constants(I_List<COND_CMP> *save_list,COND *and_level, ...@@ -3224,19 +3172,16 @@ propagate_cond_constants(I_List<COND_CMP> *save_list,COND *and_level,
} }
} }
} }
DBUG_VOID_RETURN;
} }
static COND * static COND *
optimize_cond(COND *conds,Item::cond_result *cond_value) optimize_cond(COND *conds,Item::cond_result *cond_value)
{ {
DBUG_ENTER("optimize_cond");
if (!conds) if (!conds)
{ {
*cond_value= Item::COND_TRUE; *cond_value= Item::COND_TRUE;
DBUG_RETURN(conds); return conds;
} }
/* change field = field to field = const for each found field = const */ /* change field = field to field = const for each found field = const */
DBUG_EXECUTE("where",print_where(conds,"original");); DBUG_EXECUTE("where",print_where(conds,"original"););
...@@ -3248,7 +3193,7 @@ optimize_cond(COND *conds,Item::cond_result *cond_value) ...@@ -3248,7 +3193,7 @@ optimize_cond(COND *conds,Item::cond_result *cond_value)
DBUG_EXECUTE("where",print_where(conds,"after const change");); DBUG_EXECUTE("where",print_where(conds,"after const change"););
conds=remove_eq_conds(conds,cond_value) ; conds=remove_eq_conds(conds,cond_value) ;
DBUG_EXECUTE("info",print_where(conds,"after remove");); DBUG_EXECUTE("info",print_where(conds,"after remove"););
DBUG_RETURN(conds); return conds;
} }
...@@ -3263,8 +3208,6 @@ optimize_cond(COND *conds,Item::cond_result *cond_value) ...@@ -3263,8 +3208,6 @@ optimize_cond(COND *conds,Item::cond_result *cond_value)
static COND * static COND *
remove_eq_conds(COND *cond,Item::cond_result *cond_value) remove_eq_conds(COND *cond,Item::cond_result *cond_value)
{ {
DBUG_ENTER("remove_eq_conds");
if (cond->type() == Item::COND_ITEM) if (cond->type() == Item::COND_ITEM)
{ {
bool and_level= ((Item_cond*) cond)->functype() bool and_level= ((Item_cond*) cond)->functype()
...@@ -3302,14 +3245,14 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value) ...@@ -3302,14 +3245,14 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value)
if (and_level) if (and_level)
{ {
*cond_value=tmp_cond_value; *cond_value=tmp_cond_value;
DBUG_RETURN((COND*) 0); // Always false return (COND*) 0; // Always false
} }
break; break;
case Item::COND_TRUE: case Item::COND_TRUE:
if (!and_level) if (!and_level)
{ {
*cond_value= tmp_cond_value; *cond_value= tmp_cond_value;
DBUG_RETURN((COND*) 0); // Always true return (COND*) 0; // Always true
} }
break; break;
case Item::COND_UNDEF: // Impossible case Item::COND_UNDEF: // Impossible
...@@ -3318,12 +3261,12 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value) ...@@ -3318,12 +3261,12 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value)
} }
if (!((Item_cond*) cond)->argument_list()->elements || if (!((Item_cond*) cond)->argument_list()->elements ||
*cond_value != Item::COND_OK) *cond_value != Item::COND_OK)
DBUG_RETURN((COND*) 0); return (COND*) 0;
if (((Item_cond*) cond)->argument_list()->elements == 1) if (((Item_cond*) cond)->argument_list()->elements == 1)
{ // Remove list { // Remove list
item= ((Item_cond*) cond)->argument_list()->head(); item= ((Item_cond*) cond)->argument_list()->head();
((Item_cond*) cond)->argument_list()->empty(); ((Item_cond*) cond)->argument_list()->empty();
DBUG_RETURN(item); return item;
} }
} }
else if (cond->type() == Item::FUNC_ITEM && else if (cond->type() == Item::FUNC_ITEM &&
...@@ -3379,7 +3322,7 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value) ...@@ -3379,7 +3322,7 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value)
else if (cond->const_item()) else if (cond->const_item())
{ {
*cond_value= eval_const_cond(cond) ? Item::COND_TRUE : Item::COND_FALSE; *cond_value= eval_const_cond(cond) ? Item::COND_TRUE : Item::COND_FALSE;
DBUG_RETURN((COND*) 0); return (COND*) 0;
} }
else if ((*cond_value= cond->eq_cmp_result()) != Item::COND_OK) else if ((*cond_value= cond->eq_cmp_result()) != Item::COND_OK)
{ // boolan compare function { // boolan compare function
...@@ -3389,11 +3332,11 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value) ...@@ -3389,11 +3332,11 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value)
{ {
if (!left_item->maybe_null || if (!left_item->maybe_null ||
((Item_func*) cond)->functype() == Item_func::EQUAL_FUNC) ((Item_func*) cond)->functype() == Item_func::EQUAL_FUNC)
DBUG_RETURN((COND*) 0); // Compare of identical items return (COND*) 0; // Compare of identical items
} }
} }
*cond_value=Item::COND_OK; *cond_value=Item::COND_OK;
DBUG_RETURN(cond); // Point at next and level return cond; // Point at next and level
} }
/* /*
...@@ -3403,8 +3346,6 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value) ...@@ -3403,8 +3346,6 @@ remove_eq_conds(COND *cond,Item::cond_result *cond_value)
static bool static bool
const_expression_in_where(COND *cond, Item *comp_item, Item **const_item) const_expression_in_where(COND *cond, Item *comp_item, Item **const_item)
{ {
DBUG_ENTER("const_expression_in_where");
if (cond->type() == Item::COND_ITEM) if (cond->type() == Item::COND_ITEM)
{ {
bool and_level= (((Item_cond*) cond)->functype() bool and_level= (((Item_cond*) cond)->functype()
...@@ -3417,19 +3358,19 @@ const_expression_in_where(COND *cond, Item *comp_item, Item **const_item) ...@@ -3417,19 +3358,19 @@ const_expression_in_where(COND *cond, Item *comp_item, Item **const_item)
if (res) // Is a const value if (res) // Is a const value
{ {
if (and_level) if (and_level)
DBUG_RETURN(1); return 1;
} }
else if (!and_level) else if (!and_level)
DBUG_RETURN(0); return 0;
} }
DBUG_RETURN(and_level ? 0 : 1); return and_level ? 0 : 1;
} }
else if (cond->eq_cmp_result() != Item::COND_OK) else if (cond->eq_cmp_result() != Item::COND_OK)
{ // boolan compare function { // boolan compare function
Item_func* func= (Item_func*) cond; Item_func* func= (Item_func*) cond;
if (func->functype() != Item_func::EQUAL_FUNC && if (func->functype() != Item_func::EQUAL_FUNC &&
func->functype() != Item_func::EQ_FUNC) func->functype() != Item_func::EQ_FUNC)
DBUG_RETURN(0); return 0;
Item *left_item= ((Item_func*) cond)->arguments()[0]; Item *left_item= ((Item_func*) cond)->arguments()[0];
Item *right_item= ((Item_func*) cond)->arguments()[1]; Item *right_item= ((Item_func*) cond)->arguments()[1];
if (left_item->eq(comp_item,1)) if (left_item->eq(comp_item,1))
...@@ -3437,9 +3378,9 @@ const_expression_in_where(COND *cond, Item *comp_item, Item **const_item) ...@@ -3437,9 +3378,9 @@ const_expression_in_where(COND *cond, Item *comp_item, Item **const_item)
if (right_item->const_item()) if (right_item->const_item())
{ {
if (*const_item) if (*const_item)
DBUG_RETURN(right_item->eq(*const_item, 1)); return right_item->eq(*const_item, 1);
*const_item=right_item; *const_item=right_item;
DBUG_RETURN(1); return 1;
} }
} }
else if (right_item->eq(comp_item,1)) else if (right_item->eq(comp_item,1))
...@@ -3447,13 +3388,13 @@ const_expression_in_where(COND *cond, Item *comp_item, Item **const_item) ...@@ -3447,13 +3388,13 @@ const_expression_in_where(COND *cond, Item *comp_item, Item **const_item)
if (left_item->const_item()) if (left_item->const_item())
{ {
if (*const_item) if (*const_item)
DBUG_RETURN(left_item->eq(*const_item, 1)); return left_item->eq(*const_item, 1);
*const_item=left_item; *const_item=left_item;
DBUG_RETURN(1); return 1;
} }
} }
} }
DBUG_RETURN(0); return 0;
} }
...@@ -3468,8 +3409,6 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type, ...@@ -3468,8 +3409,6 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
Item_result_field ***copy_func, Field **from_field, Item_result_field ***copy_func, Field **from_field,
bool group, bool modify_item) bool group, bool modify_item)
{ {
DBUG_ENTER("*create_tmp_field");
switch (type) { switch (type) {
case Item::SUM_FUNC_ITEM: case Item::SUM_FUNC_ITEM:
{ {
...@@ -3478,46 +3417,38 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type, ...@@ -3478,46 +3417,38 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
switch (item_sum->sum_func()) { switch (item_sum->sum_func()) {
case Item_sum::AVG_FUNC: /* Place for sum & count */ case Item_sum::AVG_FUNC: /* Place for sum & count */
if (group) if (group)
{ return new Field_string(sizeof(double)+sizeof(longlong),
DBUG_RETURN(new Field_string(sizeof(double)+sizeof(longlong), maybe_null, item->name,table,1);
maybe_null, item->name,table,1));
}
else else
{ return new Field_double(item_sum->max_length,maybe_null,
DBUG_RETURN(new Field_double(item_sum->max_length,maybe_null, item->name, table, item_sum->decimals);
item->name, table, item_sum->decimals));
}
case Item_sum::STD_FUNC: /* Place for sum & count */ case Item_sum::STD_FUNC: /* Place for sum & count */
if (group) if (group)
{ return new Field_string(sizeof(double)*2+sizeof(longlong),
DBUG_RETURN(new Field_string(sizeof(double)*2+sizeof(longlong), maybe_null, item->name,table,1);
maybe_null, item->name,table,1));
}
else else
{ return new Field_double(item_sum->max_length, maybe_null,
DBUG_RETURN(new Field_double(item_sum->max_length, maybe_null, item->name,table,item_sum->decimals);
item->name,table,item_sum->decimals));
}
case Item_sum::UNIQUE_USERS_FUNC: case Item_sum::UNIQUE_USERS_FUNC:
DBUG_RETURN(new Field_long(9,maybe_null,item->name,table,1)); return new Field_long(9,maybe_null,item->name,table,1);
default: default:
switch (item_sum->result_type()) { switch (item_sum->result_type()) {
case REAL_RESULT: case REAL_RESULT:
DBUG_RETURN(new Field_double(item_sum->max_length,maybe_null, return new Field_double(item_sum->max_length,maybe_null,
item->name,table,item_sum->decimals)); item->name,table,item_sum->decimals);
case INT_RESULT: case INT_RESULT:
DBUG_RETURN(new Field_longlong(item_sum->max_length,maybe_null, return new Field_longlong(item_sum->max_length,maybe_null,
item->name,table,item->unsigned_flag)); item->name,table,item->unsigned_flag);
case STRING_RESULT: case STRING_RESULT:
if (item_sum->max_length > 255) if (item_sum->max_length > 255)
DBUG_RETURN(new Field_blob(item_sum->max_length,maybe_null, return new Field_blob(item_sum->max_length,maybe_null,
item->name,table,item->binary)); item->name,table,item->binary);
DBUG_RETURN(new Field_string(item_sum->max_length,maybe_null, return new Field_string(item_sum->max_length,maybe_null,
item->name,table,item->binary)); item->name,table,item->binary);
} }
} }
thd->fatal_error=1; thd->fatal_error=1;
DBUG_RETURN(0); // Error return 0; // Error
} }
case Item::FIELD_ITEM: case Item::FIELD_ITEM:
{ {
...@@ -3534,7 +3465,7 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type, ...@@ -3534,7 +3465,7 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
if (org_field->maybe_null()) if (org_field->maybe_null())
new_field->flags&= ~NOT_NULL_FLAG; // Because of outer join new_field->flags&= ~NOT_NULL_FLAG; // Because of outer join
} }
DBUG_RETURN(new_field); return new_field;
} }
case Item::PROC_ITEM: case Item::PROC_ITEM:
case Item::FUNC_ITEM: case Item::FUNC_ITEM:
...@@ -3574,12 +3505,11 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type, ...@@ -3574,12 +3505,11 @@ Field *create_tmp_field(THD *thd, TABLE *table,Item *item, Item::Type type,
*((*copy_func)++) = (Item_result_field*) item; // Save for copy_funcs *((*copy_func)++) = (Item_result_field*) item; // Save for copy_funcs
if (modify_item) if (modify_item)
((Item_result_field*) item)->result_field=new_field; ((Item_result_field*) item)->result_field=new_field;
DBUG_RETURN(new_field); return new_field;
} }
default: // Dosen't have to be stored default: // Dosen't have to be stored
DBUG_RETURN(0); return 0;
} }
DBUG_RETURN(0); // impossible
} }
...@@ -3604,8 +3534,8 @@ create_tmp_table(THD *thd,TMP_TABLE_PARAM *param,List<Item> &fields, ...@@ -3604,8 +3534,8 @@ create_tmp_table(THD *thd,TMP_TABLE_PARAM *param,List<Item> &fields,
Item_result_field **copy_func; Item_result_field **copy_func;
MI_COLUMNDEF *recinfo; MI_COLUMNDEF *recinfo;
uint temp_pool_slot=MY_BIT_NONE; uint temp_pool_slot=MY_BIT_NONE;
DBUG_ENTER("create_tmp_table");
DBUG_ENTER("create_tmp_table");
DBUG_PRINT("enter",("distinct: %d save_sum_fields: %d allow_distinct_limit: %d group: %d", DBUG_PRINT("enter",("distinct: %d save_sum_fields: %d allow_distinct_limit: %d group: %d",
(int) distinct, (int) save_sum_fields, (int) distinct, (int) save_sum_fields,
(int) allow_distinct_limit,test(group))); (int) allow_distinct_limit,test(group)));
...@@ -4053,17 +3983,15 @@ create_tmp_table(THD *thd,TMP_TABLE_PARAM *param,List<Item> &fields, ...@@ -4053,17 +3983,15 @@ create_tmp_table(THD *thd,TMP_TABLE_PARAM *param,List<Item> &fields,
static bool open_tmp_table(TABLE *table) static bool open_tmp_table(TABLE *table)
{ {
int error; int error;
DBUG_ENTER("open_tmp_table");
if ((error=table->file->ha_open(table->real_name,O_RDWR,HA_OPEN_TMP_TABLE))) if ((error=table->file->ha_open(table->real_name,O_RDWR,HA_OPEN_TMP_TABLE)))
{ {
table->file->print_error(error,MYF(0)); /* purecov: inspected */ table->file->print_error(error,MYF(0)); /* purecov: inspected */
table->db_stat=0; table->db_stat=0;
DBUG_RETURN((1)); return(1);
} }
/* VOID(ha_lock(table,F_WRLCK)); */ /* Single thread table */ /* VOID(ha_lock(table,F_WRLCK)); */ /* Single thread table */
(void) table->file->extra(HA_EXTRA_QUICK); /* Faster */ (void) table->file->extra(HA_EXTRA_QUICK); /* Faster */
DBUG_RETURN((0)); return(0);
} }
...@@ -4074,8 +4002,8 @@ static bool create_myisam_tmp_table(TABLE *table,TMP_TABLE_PARAM *param, ...@@ -4074,8 +4002,8 @@ static bool create_myisam_tmp_table(TABLE *table,TMP_TABLE_PARAM *param,
MI_KEYDEF keydef; MI_KEYDEF keydef;
MI_UNIQUEDEF uniquedef; MI_UNIQUEDEF uniquedef;
KEY *keyinfo=param->keyinfo; KEY *keyinfo=param->keyinfo;
DBUG_ENTER("create_myisam_tmp_table");
DBUG_ENTER("create_myisam_tmp_table");
if (table->keys) if (table->keys)
{ // Get keys for ni_create { // Get keys for ni_create
bool using_unique_constraint=0; bool using_unique_constraint=0;
...@@ -4412,39 +4340,37 @@ static int ...@@ -4412,39 +4340,37 @@ static int
sub_select_cache(JOIN *join,JOIN_TAB *join_tab,bool end_of_records) sub_select_cache(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
{ {
int error; int error;
DBUG_ENTER("sub_select_cache");
if (end_of_records) if (end_of_records)
{ {
if ((error=flush_cached_records(join,join_tab,FALSE)) < 0) if ((error=flush_cached_records(join,join_tab,FALSE)) < 0)
DBUG_RETURN(error); /* purecov: inspected */ return error; /* purecov: inspected */
DBUG_RETURN(sub_select(join,join_tab,end_of_records)); return sub_select(join,join_tab,end_of_records);
} }
if (join->thd->killed) // If aborted by user if (join->thd->killed) // If aborted by user
{ {
my_error(ER_SERVER_SHUTDOWN,MYF(0)); /* purecov: inspected */ my_error(ER_SERVER_SHUTDOWN,MYF(0)); /* purecov: inspected */
DBUG_RETURN(-2); /* purecov: inspected */ return -2; /* purecov: inspected */
} }
if (join_tab->use_quick != 2 || test_if_quick_select(join_tab) <= 0) if (join_tab->use_quick != 2 || test_if_quick_select(join_tab) <= 0)
{ {
if (!store_record_in_cache(&join_tab->cache)) if (!store_record_in_cache(&join_tab->cache))
DBUG_RETURN(0); // There is more room in cache return 0; // There is more room in cache
DBUG_RETURN(flush_cached_records(join,join_tab,FALSE)); return flush_cached_records(join,join_tab,FALSE);
} }
if ((error=flush_cached_records(join,join_tab,TRUE)) < 0) if ((error=flush_cached_records(join,join_tab,TRUE)) < 0)
DBUG_RETURN(error); /* purecov: inspected */ return error; /* purecov: inspected */
DBUG_RETURN(sub_select(join,join_tab,end_of_records)); /* Use ordinary select */ return sub_select(join,join_tab,end_of_records); /* Use ordinary select */
} }
static int static int
sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records) sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
{ {
DBUG_ENTER("sub_select");
join_tab->table->null_row=0; join_tab->table->null_row=0;
if (end_of_records) if (end_of_records)
DBUG_RETURN((*join_tab->next_select)(join,join_tab+1,end_of_records)); return (*join_tab->next_select)(join,join_tab+1,end_of_records);
/* Cache variables for faster loop */ /* Cache variables for faster loop */
int error; int error;
...@@ -4463,7 +4389,7 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records) ...@@ -4463,7 +4389,7 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
if (join->thd->killed) // Aborted by user if (join->thd->killed) // Aborted by user
{ {
my_error(ER_SERVER_SHUTDOWN,MYF(0)); /* purecov: inspected */ my_error(ER_SERVER_SHUTDOWN,MYF(0)); /* purecov: inspected */
DBUG_RETURN(-2); /* purecov: inspected */ return -2; /* purecov: inspected */
} }
join->examined_rows++; join->examined_rows++;
if (!on_expr || on_expr->val_int()) if (!on_expr || on_expr->val_int())
...@@ -4474,9 +4400,9 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records) ...@@ -4474,9 +4400,9 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
if (!select_cond || select_cond->val_int()) if (!select_cond || select_cond->val_int())
{ {
if ((error=(*join_tab->next_select)(join,join_tab+1,0)) < 0) if ((error=(*join_tab->next_select)(join,join_tab+1,0)) < 0)
DBUG_RETURN(error); return error;
if (not_used_in_distinct && found_records != join->found_records) if (not_used_in_distinct && found_records != join->found_records)
DBUG_RETURN(0); return 0;
} }
else else
info->file->unlock_row(); info->file->unlock_row();
...@@ -4484,7 +4410,7 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records) ...@@ -4484,7 +4410,7 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
} while (!(error=info->read_record(info))); } while (!(error=info->read_record(info)));
} }
if (error > 0) // Fatal error if (error > 0) // Fatal error
DBUG_RETURN(-1); return -1;
if (!found && on_expr) if (!found && on_expr)
{ // OUTER JOIN { // OUTER JOIN
...@@ -4493,10 +4419,10 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records) ...@@ -4493,10 +4419,10 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
if (!select_cond || select_cond->val_int()) if (!select_cond || select_cond->val_int())
{ {
if ((error=(*join_tab->next_select)(join,join_tab+1,0)) < 0) if ((error=(*join_tab->next_select)(join,join_tab+1,0)) < 0)
DBUG_RETURN(error); /* purecov: inspected */ return error; /* purecov: inspected */
} }
} }
DBUG_RETURN(0); return 0;
} }
...@@ -4505,10 +4431,9 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last) ...@@ -4505,10 +4431,9 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last)
{ {
int error; int error;
READ_RECORD *info; READ_RECORD *info;
DBUG_ENTER("flush_cached_records");
if (!join_tab->cache.records) if (!join_tab->cache.records)
DBUG_RETURN(0); /* Nothing to do */ return 0; /* Nothing to do */
if (skipp_last) if (skipp_last)
(void) store_record_in_cache(&join_tab->cache); // Must save this for later (void) store_record_in_cache(&join_tab->cache); // Must save this for later
if (join_tab->use_quick == 2) if (join_tab->use_quick == 2)
...@@ -4524,7 +4449,7 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last) ...@@ -4524,7 +4449,7 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last)
{ {
reset_cache(&join_tab->cache); reset_cache(&join_tab->cache);
join_tab->cache.records=0; join_tab->cache.ptr_record= (uint) ~0; join_tab->cache.records=0; join_tab->cache.ptr_record= (uint) ~0;
DBUG_RETURN(-error); /* No records or error */ return -error; /* No records or error */
} }
for (JOIN_TAB *tmp=join->join_tab; tmp != join_tab ; tmp++) for (JOIN_TAB *tmp=join->join_tab; tmp != join_tab ; tmp++)
...@@ -4539,7 +4464,7 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last) ...@@ -4539,7 +4464,7 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last)
if (join->thd->killed) if (join->thd->killed)
{ {
my_error(ER_SERVER_SHUTDOWN,MYF(0)); /* purecov: inspected */ my_error(ER_SERVER_SHUTDOWN,MYF(0)); /* purecov: inspected */
DBUG_RETURN(-2); // Aborted by user /* purecov: inspected */ return -2; // Aborted by user /* purecov: inspected */
} }
SQL_SELECT *select=join_tab->select; SQL_SELECT *select=join_tab->select;
if (!error && (!join_tab->cache.select || if (!error && (!join_tab->cache.select ||
...@@ -4552,7 +4477,7 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last) ...@@ -4552,7 +4477,7 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last)
read_cached_record(join_tab); read_cached_record(join_tab);
if (!select || !select->skipp_record()) if (!select || !select->skipp_record())
if ((error=(join_tab->next_select)(join,join_tab+1,0)) < 0) if ((error=(join_tab->next_select)(join,join_tab+1,0)) < 0)
DBUG_RETURN(error); /* purecov: inspected */ return error; /* purecov: inspected */
} }
} }
} while (!(error=info->read_record(info))); } while (!(error=info->read_record(info)));
...@@ -4562,10 +4487,10 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last) ...@@ -4562,10 +4487,10 @@ flush_cached_records(JOIN *join,JOIN_TAB *join_tab,bool skipp_last)
reset_cache(&join_tab->cache); reset_cache(&join_tab->cache);
join_tab->cache.records=0; join_tab->cache.ptr_record= (uint) ~0; join_tab->cache.records=0; join_tab->cache.ptr_record= (uint) ~0;
if (error > 0) // Fatal error if (error > 0) // Fatal error
DBUG_RETURN(-1); /* purecov: inspected */ return -1; /* purecov: inspected */
for (JOIN_TAB *tmp2=join->join_tab; tmp2 != join_tab ; tmp2++) for (JOIN_TAB *tmp2=join->join_tab; tmp2 != join_tab ; tmp2++)
tmp2->table->status=tmp2->status; tmp2->table->status=tmp2->status;
DBUG_RETURN(0); return 0;
} }
...@@ -4621,8 +4546,6 @@ join_read_system(JOIN_TAB *tab) ...@@ -4621,8 +4546,6 @@ join_read_system(JOIN_TAB *tab)
{ {
TABLE *table= tab->table; TABLE *table= tab->table;
int error; int error;
DBUG_ENTER("join_read_system");
if (table->status & STATUS_GARBAGE) // If first read if (table->status & STATUS_GARBAGE) // If first read
{ {
if ((error=table->file->read_first_row(table->record[0], if ((error=table->file->read_first_row(table->record[0],
...@@ -4631,18 +4554,18 @@ join_read_system(JOIN_TAB *tab) ...@@ -4631,18 +4554,18 @@ join_read_system(JOIN_TAB *tab)
if (error != HA_ERR_END_OF_FILE) if (error != HA_ERR_END_OF_FILE)
{ {
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
table->null_row=1; // This is ok. table->null_row=1; // This is ok.
empty_record(table); // Make empty record empty_record(table); // Make empty record
DBUG_RETURN(-1); return -1;
} }
store_record(table,1); store_record(table,1);
} }
else if (!table->status) // Only happens with left join else if (!table->status) // Only happens with left join
restore_record(table,1); // restore old record restore_record(table,1); // restore old record
table->null_row=0; table->null_row=0;
DBUG_RETURN(table->status ? -1 : 0); return table->status ? -1 : 0;
} }
...@@ -4651,8 +4574,6 @@ join_read_const(JOIN_TAB *tab) ...@@ -4651,8 +4574,6 @@ join_read_const(JOIN_TAB *tab)
{ {
int error; int error;
TABLE *table= tab->table; TABLE *table= tab->table;
DBUG_ENTER("join_read_const");
if (table->status & STATUS_GARBAGE) // If first read if (table->status & STATUS_GARBAGE) // If first read
{ {
if (cp_buffer_from_ref(&tab->ref)) if (cp_buffer_from_ref(&tab->ref))
...@@ -4672,9 +4593,9 @@ join_read_const(JOIN_TAB *tab) ...@@ -4672,9 +4593,9 @@ join_read_const(JOIN_TAB *tab)
sql_print_error("read_const: Got error %d when reading table %s", sql_print_error("read_const: Got error %d when reading table %s",
error, table->path); error, table->path);
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); return -1;
} }
store_record(table,1); store_record(table,1);
} }
...@@ -4684,7 +4605,7 @@ join_read_const(JOIN_TAB *tab) ...@@ -4684,7 +4605,7 @@ join_read_const(JOIN_TAB *tab)
restore_record(table,1); // restore old record restore_record(table,1); // restore old record
} }
table->null_row=0; table->null_row=0;
DBUG_RETURN(table->status ? -1 : 0); return table->status ? -1 : 0;
} }
...@@ -4693,7 +4614,6 @@ join_read_key(JOIN_TAB *tab) ...@@ -4693,7 +4614,6 @@ join_read_key(JOIN_TAB *tab)
{ {
int error; int error;
TABLE *table= tab->table; TABLE *table= tab->table;
DBUG_ENTER("join_read_key");
if (cmp_buffer_with_ref(tab) || if (cmp_buffer_with_ref(tab) ||
(table->status & (STATUS_GARBAGE | STATUS_NO_PARENT | STATUS_NULL_ROW))) (table->status & (STATUS_GARBAGE | STATUS_NO_PARENT | STATUS_NULL_ROW)))
...@@ -4701,7 +4621,7 @@ join_read_key(JOIN_TAB *tab) ...@@ -4701,7 +4621,7 @@ join_read_key(JOIN_TAB *tab)
if (tab->ref.key_err) if (tab->ref.key_err)
{ {
table->status=STATUS_NOT_FOUND; table->status=STATUS_NOT_FOUND;
DBUG_RETURN(-1); return -1;
} }
error=table->file->index_read(table->record[0], error=table->file->index_read(table->record[0],
tab->ref.key_buff, tab->ref.key_buff,
...@@ -4711,11 +4631,11 @@ join_read_key(JOIN_TAB *tab) ...@@ -4711,11 +4631,11 @@ join_read_key(JOIN_TAB *tab)
sql_print_error("read_key: Got error %d when reading table '%s'",error, sql_print_error("read_key: Got error %d when reading table '%s'",error,
table->path); table->path);
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
} }
table->null_row=0; table->null_row=0;
DBUG_RETURN(table->status ? -1 : 0); return table->status ? -1 : 0;
} }
...@@ -4724,10 +4644,9 @@ join_read_always_key(JOIN_TAB *tab) ...@@ -4724,10 +4644,9 @@ join_read_always_key(JOIN_TAB *tab)
{ {
int error; int error;
TABLE *table= tab->table; TABLE *table= tab->table;
DBUG_ENTER("join_read_always_key");
if (cp_buffer_from_ref(&tab->ref)) if (cp_buffer_from_ref(&tab->ref))
DBUG_RETURN(-1); return -1;
if ((error=table->file->index_read(table->record[0], if ((error=table->file->index_read(table->record[0],
tab->ref.key_buff, tab->ref.key_buff,
tab->ref.key_length,HA_READ_KEY_EXACT))) tab->ref.key_length,HA_READ_KEY_EXACT)))
...@@ -4737,11 +4656,11 @@ join_read_always_key(JOIN_TAB *tab) ...@@ -4737,11 +4656,11 @@ join_read_always_key(JOIN_TAB *tab)
sql_print_error("read_const: Got error %d when reading table %s",error, sql_print_error("read_const: Got error %d when reading table %s",error,
table->path); table->path);
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); /* purecov: inspected */ return -1; /* purecov: inspected */
} }
DBUG_RETURN(0); return 0;
} }
/* /*
...@@ -4754,10 +4673,9 @@ join_read_last_key(JOIN_TAB *tab) ...@@ -4754,10 +4673,9 @@ join_read_last_key(JOIN_TAB *tab)
{ {
int error; int error;
TABLE *table= tab->table; TABLE *table= tab->table;
DBUG_ENTER("join_read_last_key");
if (cp_buffer_from_ref(&tab->ref)) if (cp_buffer_from_ref(&tab->ref))
DBUG_RETURN(-1); return -1;
if ((error=table->file->index_read_last(table->record[0], if ((error=table->file->index_read_last(table->record[0],
tab->ref.key_buff, tab->ref.key_buff,
tab->ref.key_length))) tab->ref.key_length)))
...@@ -4767,11 +4685,11 @@ join_read_last_key(JOIN_TAB *tab) ...@@ -4767,11 +4685,11 @@ join_read_last_key(JOIN_TAB *tab)
sql_print_error("read_const: Got error %d when reading table %s",error, sql_print_error("read_const: Got error %d when reading table %s",error,
table->path); table->path);
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); /* purecov: inspected */ return -1; /* purecov: inspected */
} }
DBUG_RETURN(0); return 0;
} }
...@@ -4779,8 +4697,7 @@ join_read_last_key(JOIN_TAB *tab) ...@@ -4779,8 +4697,7 @@ join_read_last_key(JOIN_TAB *tab)
static int static int
join_no_more_records(READ_RECORD *info __attribute__((unused))) join_no_more_records(READ_RECORD *info __attribute__((unused)))
{ {
DBUG_ENTER("join_no_more_records"); return -1;
DBUG_RETURN(-1);
} }
...@@ -4790,7 +4707,6 @@ join_read_next_same(READ_RECORD *info) ...@@ -4790,7 +4707,6 @@ join_read_next_same(READ_RECORD *info)
int error; int error;
TABLE *table= info->table; TABLE *table= info->table;
JOIN_TAB *tab=table->reginfo.join_tab; JOIN_TAB *tab=table->reginfo.join_tab;
DBUG_ENTER("join_read_next_same");
if ((error=table->file->index_next_same(table->record[0], if ((error=table->file->index_next_same(table->record[0],
tab->ref.key_buff, tab->ref.key_buff,
...@@ -4801,12 +4717,12 @@ join_read_next_same(READ_RECORD *info) ...@@ -4801,12 +4717,12 @@ join_read_next_same(READ_RECORD *info)
sql_print_error("read_next: Got error %d when reading table %s",error, sql_print_error("read_next: Got error %d when reading table %s",error,
table->path); table->path);
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
table->status= STATUS_GARBAGE; table->status= STATUS_GARBAGE;
DBUG_RETURN(-1); return -1;
} }
DBUG_RETURN(0); return 0;
} }
static int static int
...@@ -4815,7 +4731,6 @@ join_read_prev_same(READ_RECORD *info) ...@@ -4815,7 +4731,6 @@ join_read_prev_same(READ_RECORD *info)
int error; int error;
TABLE *table= info->table; TABLE *table= info->table;
JOIN_TAB *tab=table->reginfo.join_tab; JOIN_TAB *tab=table->reginfo.join_tab;
DBUG_ENTER("join_read_prev_same");
if ((error=table->file->index_prev(table->record[0]))) if ((error=table->file->index_prev(table->record[0])))
{ {
...@@ -4838,18 +4753,16 @@ join_read_prev_same(READ_RECORD *info) ...@@ -4838,18 +4753,16 @@ join_read_prev_same(READ_RECORD *info)
table->status=STATUS_NOT_FOUND; table->status=STATUS_NOT_FOUND;
error= -1; error= -1;
} }
DBUG_RETURN(error); return error;
} }
static int static int
join_init_quick_read_record(JOIN_TAB *tab) join_init_quick_read_record(JOIN_TAB *tab)
{ {
DBUG_ENTER("join_init_quick_read_record");
if (test_if_quick_select(tab) == -1) if (test_if_quick_select(tab) == -1)
DBUG_RETURN(-1); /* No possible records */ return -1; /* No possible records */
DBUG_RETURN(join_init_read_record(tab)); return join_init_read_record(tab);
} }
...@@ -4857,23 +4770,19 @@ static int ...@@ -4857,23 +4770,19 @@ static int
test_if_quick_select(JOIN_TAB *tab) test_if_quick_select(JOIN_TAB *tab)
{ {
delete tab->select->quick; delete tab->select->quick;
DBUG_ENTER("test_if_quick_select");
tab->select->quick=0; tab->select->quick=0;
DBUG_RETURN(tab->select->test_quick_select(tab->keys,(table_map) 0,HA_POS_ERROR)); return tab->select->test_quick_select(tab->keys,(table_map) 0,HA_POS_ERROR);
} }
static int static int
join_init_read_record(JOIN_TAB *tab) join_init_read_record(JOIN_TAB *tab)
{ {
DBUG_ENTER("join_init_read_record");
if (tab->select && tab->select->quick) if (tab->select && tab->select->quick)
tab->select->quick->reset(); tab->select->quick->reset();
init_read_record(&tab->read_record, tab->join->thd, tab->table, init_read_record(&tab->read_record, tab->join->thd, tab->table,
tab->select,1,1); tab->select,1,1);
DBUG_RETURN((*tab->read_record.read_record)(&tab->read_record)); return (*tab->read_record.read_record)(&tab->read_record);
} }
static int static int
...@@ -4881,8 +4790,6 @@ join_read_first(JOIN_TAB *tab) ...@@ -4881,8 +4790,6 @@ join_read_first(JOIN_TAB *tab)
{ {
int error; int error;
TABLE *table=tab->table; TABLE *table=tab->table;
DBUG_ENTER("join_read_first");
if (!table->key_read && (table->used_keys & ((key_map) 1 << tab->index)) && if (!table->key_read && (table->used_keys & ((key_map) 1 << tab->index)) &&
!table->no_keyread) !table->no_keyread)
{ {
...@@ -4903,11 +4810,11 @@ join_read_first(JOIN_TAB *tab) ...@@ -4903,11 +4810,11 @@ join_read_first(JOIN_TAB *tab)
sql_print_error("read_first_with_key: Got error %d when reading table", sql_print_error("read_first_with_key: Got error %d when reading table",
error); error);
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); return -1;
} }
DBUG_RETURN(0); return 0;
} }
...@@ -4915,8 +4822,6 @@ static int ...@@ -4915,8 +4822,6 @@ static int
join_read_next(READ_RECORD *info) join_read_next(READ_RECORD *info)
{ {
int error=info->file->index_next(info->record); int error=info->file->index_next(info->record);
DBUG_ENTER("join_read_next");
if (error) if (error)
{ {
if (error != HA_ERR_END_OF_FILE) if (error != HA_ERR_END_OF_FILE)
...@@ -4924,11 +4829,11 @@ join_read_next(READ_RECORD *info) ...@@ -4924,11 +4829,11 @@ join_read_next(READ_RECORD *info)
sql_print_error("read_next_with_key: Got error %d when reading table %s", sql_print_error("read_next_with_key: Got error %d when reading table %s",
error, info->table->path); error, info->table->path);
info->file->print_error(error,MYF(0)); info->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); return -1;
} }
DBUG_RETURN(0); return 0;
} }
static int static int
...@@ -4936,8 +4841,6 @@ join_read_last(JOIN_TAB *tab) ...@@ -4936,8 +4841,6 @@ join_read_last(JOIN_TAB *tab)
{ {
TABLE *table=tab->table; TABLE *table=tab->table;
int error; int error;
DBUG_ENTER("join_read_last");
if (!table->key_read && (table->used_keys & ((key_map) 1 << tab->index)) && if (!table->key_read && (table->used_keys & ((key_map) 1 << tab->index)) &&
!table->no_keyread) !table->no_keyread)
{ {
...@@ -4958,11 +4861,11 @@ join_read_last(JOIN_TAB *tab) ...@@ -4958,11 +4861,11 @@ join_read_last(JOIN_TAB *tab)
sql_print_error("read_last_with_key: Got error %d when reading table", sql_print_error("read_last_with_key: Got error %d when reading table",
error, table->path); error, table->path);
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); return -1;
} }
DBUG_RETURN(0); return 0;
} }
...@@ -4970,8 +4873,6 @@ static int ...@@ -4970,8 +4873,6 @@ static int
join_read_prev(READ_RECORD *info) join_read_prev(READ_RECORD *info)
{ {
int error=info->file->index_prev(info->record); int error=info->file->index_prev(info->record);
DBUG_ENTER("join_read_prev");
if (error) if (error)
{ {
if (error != HA_ERR_END_OF_FILE) if (error != HA_ERR_END_OF_FILE)
...@@ -4979,11 +4880,11 @@ join_read_prev(READ_RECORD *info) ...@@ -4979,11 +4880,11 @@ join_read_prev(READ_RECORD *info)
sql_print_error("read_prev_with_key: Got error %d when reading table: %s", sql_print_error("read_prev_with_key: Got error %d when reading table: %s",
error,info->table->path); error,info->table->path);
info->file->print_error(error,MYF(0)); info->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); return -1;
} }
DBUG_RETURN(0); return 0;
} }
...@@ -4992,11 +4893,10 @@ join_ft_read_first(JOIN_TAB *tab) ...@@ -4992,11 +4893,10 @@ join_ft_read_first(JOIN_TAB *tab)
{ {
int error; int error;
TABLE *table= tab->table; TABLE *table= tab->table;
DBUG_ENTER("join_ft_read_first");
#if NOT_USED_YET #if NOT_USED_YET
if (cp_buffer_from_ref(&tab->ref)) // as ft-key doesn't use store_key's if (cp_buffer_from_ref(&tab->ref)) // as ft-key doesn't use store_key's
DBUG_RETURN(-1); // see also FT_SELECT::init() return -1; // see also FT_SELECT::init()
#endif #endif
table->file->ft_init(); table->file->ft_init();
...@@ -5008,19 +4908,17 @@ join_ft_read_first(JOIN_TAB *tab) ...@@ -5008,19 +4908,17 @@ join_ft_read_first(JOIN_TAB *tab)
sql_print_error("ft_read_first: Got error %d when reading table %s", sql_print_error("ft_read_first: Got error %d when reading table %s",
error, table->path); error, table->path);
table->file->print_error(error,MYF(0)); table->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); return -1;
} }
DBUG_RETURN(0); return 0;
} }
static int static int
join_ft_read_next(READ_RECORD *info) join_ft_read_next(READ_RECORD *info)
{ {
int error=info->file->ft_read(info->table->record[0]); int error=info->file->ft_read(info->table->record[0]);
DBUG_ENTER("join_ft_read_next");
if (error) if (error)
{ {
if (error != HA_ERR_END_OF_FILE) if (error != HA_ERR_END_OF_FILE)
...@@ -5028,11 +4926,11 @@ join_ft_read_next(READ_RECORD *info) ...@@ -5028,11 +4926,11 @@ join_ft_read_next(READ_RECORD *info)
sql_print_error("ft_read_next: Got error %d when reading table %s", sql_print_error("ft_read_next: Got error %d when reading table %s",
error, info->table->path); error, info->table->path);
info->file->print_error(error,MYF(0)); info->file->print_error(error,MYF(0));
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(-1); return -1;
} }
DBUG_RETURN(0); return 0;
} }
...@@ -5451,8 +5349,6 @@ end_write_group(JOIN *join, JOIN_TAB *join_tab __attribute__((unused)), ...@@ -5451,8 +5349,6 @@ end_write_group(JOIN *join, JOIN_TAB *join_tab __attribute__((unused)),
static bool test_if_ref(Item_field *left_item,Item *right_item) static bool test_if_ref(Item_field *left_item,Item *right_item)
{ {
Field *field=left_item->field; Field *field=left_item->field;
DBUG_ENTER("test_if_ref");
// No need to change const test. We also have to keep tests on LEFT JOIN // No need to change const test. We also have to keep tests on LEFT JOIN
if (!field->table->const_table && !field->table->maybe_null) if (!field->table->const_table && !field->table->maybe_null)
{ {
...@@ -5460,7 +5356,7 @@ static bool test_if_ref(Item_field *left_item,Item *right_item) ...@@ -5460,7 +5356,7 @@ static bool test_if_ref(Item_field *left_item,Item *right_item)
if (ref_item && ref_item->eq(right_item,1)) if (ref_item && ref_item->eq(right_item,1))
{ {
if (right_item->type() == Item::FIELD_ITEM) if (right_item->type() == Item::FIELD_ITEM)
DBUG_RETURN((field->eq_def(((Item_field *) right_item)->field))); return (field->eq_def(((Item_field *) right_item)->field));
if (right_item->const_item() && !(right_item->is_null())) if (right_item->const_item() && !(right_item->is_null()))
{ {
/* /*
...@@ -5470,29 +5366,27 @@ static bool test_if_ref(Item_field *left_item,Item *right_item) ...@@ -5470,29 +5366,27 @@ static bool test_if_ref(Item_field *left_item,Item *right_item)
if (field->binary() && if (field->binary() &&
(field->type() != FIELD_TYPE_FLOAT || field->decimals() == 0)) (field->type() != FIELD_TYPE_FLOAT || field->decimals() == 0))
{ {
DBUG_RETURN(!store_val_in_field(field,right_item)); return !store_val_in_field(field,right_item);
} }
} }
} }
} }
DBUG_RETURN(0); // keep test return 0; // keep test
} }
static COND * static COND *
make_cond_for_table(COND *cond,table_map tables,table_map used_table) make_cond_for_table(COND *cond,table_map tables,table_map used_table)
{ {
DBUG_ENTER("make_cond_for_table");
if (used_table && !(cond->used_tables() & used_table)) if (used_table && !(cond->used_tables() & used_table))
DBUG_RETURN((COND*) 0); // Already checked return (COND*) 0; // Already checked
if (cond->type() == Item::COND_ITEM) if (cond->type() == Item::COND_ITEM)
{ {
if (((Item_cond*) cond)->functype() == Item_func::COND_AND_FUNC) if (((Item_cond*) cond)->functype() == Item_func::COND_AND_FUNC)
{ {
Item_cond_and *new_cond=new Item_cond_and; Item_cond_and *new_cond=new Item_cond_and;
if (!new_cond) if (!new_cond)
DBUG_RETURN((COND*) 0); // OOM /* purecov: inspected */ return (COND*) 0; // OOM /* purecov: inspected */
List_iterator<Item> li(*((Item_cond*) cond)->argument_list()); List_iterator<Item> li(*((Item_cond*) cond)->argument_list());
Item *item; Item *item;
while ((item=li++)) while ((item=li++))
...@@ -5503,31 +5397,31 @@ make_cond_for_table(COND *cond,table_map tables,table_map used_table) ...@@ -5503,31 +5397,31 @@ make_cond_for_table(COND *cond,table_map tables,table_map used_table)
} }
switch (new_cond->argument_list()->elements) { switch (new_cond->argument_list()->elements) {
case 0: case 0:
DBUG_RETURN((COND*) 0); // Always true return (COND*) 0; // Always true
case 1: case 1:
DBUG_RETURN(new_cond->argument_list()->head()); return new_cond->argument_list()->head();
default: default:
new_cond->used_tables_cache=((Item_cond*) cond)->used_tables_cache & new_cond->used_tables_cache=((Item_cond*) cond)->used_tables_cache &
tables; tables;
DBUG_RETURN(new_cond); return new_cond;
} }
} }
else else
{ // Or list { // Or list
Item_cond_or *new_cond=new Item_cond_or; Item_cond_or *new_cond=new Item_cond_or;
if (!new_cond) if (!new_cond)
DBUG_RETURN((COND*) 0); // OOM /* purecov: inspected */ return (COND*) 0; // OOM /* purecov: inspected */
List_iterator<Item> li(*((Item_cond*) cond)->argument_list()); List_iterator<Item> li(*((Item_cond*) cond)->argument_list());
Item *item; Item *item;
while ((item=li++)) while ((item=li++))
{ {
Item *fix=make_cond_for_table(item,tables,0L); Item *fix=make_cond_for_table(item,tables,0L);
if (!fix) if (!fix)
DBUG_RETURN((COND*) 0); // Always true return (COND*) 0; // Always true
new_cond->argument_list()->push_back(fix); new_cond->argument_list()->push_back(fix);
} }
new_cond->used_tables_cache=((Item_cond_or*) cond)->used_tables_cache; new_cond->used_tables_cache=((Item_cond_or*) cond)->used_tables_cache;
DBUG_RETURN(new_cond); return new_cond;
} }
} }
...@@ -5538,9 +5432,9 @@ make_cond_for_table(COND *cond,table_map tables,table_map used_table) ...@@ -5538,9 +5432,9 @@ make_cond_for_table(COND *cond,table_map tables,table_map used_table)
*/ */
if (cond->marker == 3 || (cond->used_tables() & ~tables)) if (cond->marker == 3 || (cond->used_tables() & ~tables))
DBUG_RETURN((COND*) 0); // Can't check this yet return (COND*) 0; // Can't check this yet
if (cond->marker == 2 || cond->eq_cmp_result() == Item::COND_OK) if (cond->marker == 2 || cond->eq_cmp_result() == Item::COND_OK)
DBUG_RETURN(cond); // Not boolean op return cond; // Not boolean op
if (((Item_func*) cond)->functype() == Item_func::EQ_FUNC) if (((Item_func*) cond)->functype() == Item_func::EQ_FUNC)
{ {
...@@ -5550,25 +5444,23 @@ make_cond_for_table(COND *cond,table_map tables,table_map used_table) ...@@ -5550,25 +5444,23 @@ make_cond_for_table(COND *cond,table_map tables,table_map used_table)
test_if_ref((Item_field*) left_item,right_item)) test_if_ref((Item_field*) left_item,right_item))
{ {
cond->marker=3; // Checked when read cond->marker=3; // Checked when read
DBUG_RETURN((COND*) 0); return (COND*) 0;
} }
if (right_item->type() == Item::FIELD_ITEM && if (right_item->type() == Item::FIELD_ITEM &&
test_if_ref((Item_field*) right_item,left_item)) test_if_ref((Item_field*) right_item,left_item))
{ {
cond->marker=3; // Checked when read cond->marker=3; // Checked when read
DBUG_RETURN((COND*) 0); return (COND*) 0;
} }
} }
cond->marker=2; cond->marker=2;
DBUG_RETURN(cond); return cond;
} }
static Item * static Item *
part_of_refkey(TABLE *table,Field *field) part_of_refkey(TABLE *table,Field *field)
{ {
uint ref_parts=table->reginfo.join_tab->ref.key_parts; uint ref_parts=table->reginfo.join_tab->ref.key_parts;
DBUG_ENTER("part_of_refkey");
if (ref_parts) if (ref_parts)
{ {
KEY_PART_INFO *key_part= KEY_PART_INFO *key_part=
...@@ -5577,9 +5469,9 @@ part_of_refkey(TABLE *table,Field *field) ...@@ -5577,9 +5469,9 @@ part_of_refkey(TABLE *table,Field *field)
for (uint part=0 ; part < ref_parts ; part++,key_part++) for (uint part=0 ; part < ref_parts ; part++,key_part++)
if (field->eq(key_part->field) && if (field->eq(key_part->field) &&
!(key_part->key_part_flag & HA_PART_KEY)) !(key_part->key_part_flag & HA_PART_KEY))
DBUG_RETURN(table->reginfo.join_tab->ref.items[part]); return table->reginfo.join_tab->ref.items[part];
} }
DBUG_RETURN((Item*) 0); return (Item*) 0;
} }
...@@ -5595,8 +5487,6 @@ static int test_if_order_by_key(ORDER *order, TABLE *table, uint idx, ...@@ -5595,8 +5487,6 @@ static int test_if_order_by_key(ORDER *order, TABLE *table, uint idx,
uint *used_key_parts) uint *used_key_parts)
{ {
KEY_PART_INFO *key_part,*key_part_end; KEY_PART_INFO *key_part,*key_part_end;
DBUG_ENTER("test_if_order_by_key");
key_part=table->key_info[idx].key_part; key_part=table->key_info[idx].key_part;
key_part_end=key_part+table->key_info[idx].key_parts; key_part_end=key_part+table->key_info[idx].key_parts;
key_part_map const_key_parts=table->const_key_parts[idx]; key_part_map const_key_parts=table->const_key_parts[idx];
...@@ -5616,26 +5506,24 @@ static int test_if_order_by_key(ORDER *order, TABLE *table, uint idx, ...@@ -5616,26 +5506,24 @@ static int test_if_order_by_key(ORDER *order, TABLE *table, uint idx,
key_part++; const_key_parts>>=1; key_part++; const_key_parts>>=1;
} }
if (key_part == key_part_end || key_part->field != field) if (key_part == key_part_end || key_part->field != field)
DBUG_RETURN(0); return 0;
/* set flag to 1 if we can use read-next on key, else to -1 */ /* set flag to 1 if we can use read-next on key, else to -1 */
flag=(order->asc == !(key_part->key_part_flag & HA_REVERSE_SORT)) flag=(order->asc == !(key_part->key_part_flag & HA_REVERSE_SORT))
? 1 : -1; ? 1 : -1;
if (reverse && flag != reverse) if (reverse && flag != reverse)
DBUG_RETURN(0); return 0;
reverse=flag; // Remember if reverse reverse=flag; // Remember if reverse
key_part++; key_part++;
} }
*used_key_parts= (uint) (key_part - table->key_info[idx].key_part); *used_key_parts= (uint) (key_part - table->key_info[idx].key_part);
DBUG_RETURN(reverse); return reverse;
} }
static uint find_shortest_key(TABLE *table, key_map usable_keys) static uint find_shortest_key(TABLE *table, key_map usable_keys)
{ {
uint min_length= (uint) ~0; uint min_length= (uint) ~0;
uint best= MAX_KEY; uint best= MAX_KEY;
DBUG_ENTER("find_shortest_key");
for (uint nr=0; usable_keys ; usable_keys>>=1, nr++) for (uint nr=0; usable_keys ; usable_keys>>=1, nr++)
{ {
if (usable_keys & 1) if (usable_keys & 1)
...@@ -5647,7 +5535,7 @@ static uint find_shortest_key(TABLE *table, key_map usable_keys) ...@@ -5647,7 +5535,7 @@ static uint find_shortest_key(TABLE *table, key_map usable_keys)
} }
} }
} }
DBUG_RETURN(best); return best;
} }
...@@ -5866,8 +5754,6 @@ create_sort_index(JOIN_TAB *tab, ORDER *order, ha_rows filesort_limit, ...@@ -5866,8 +5754,6 @@ create_sort_index(JOIN_TAB *tab, ORDER *order, ha_rows filesort_limit,
#ifdef NOT_YET #ifdef NOT_YET
static bool fix_having(JOIN *join, Item **having) static bool fix_having(JOIN *join, Item **having)
{ {
DBUG_ENTER("fix_having");
(*having)->update_used_tables(); // Some tables may have been const (*having)->update_used_tables(); // Some tables may have been const
JOIN_TAB *table=&join->join_tab[join->const_tables]; JOIN_TAB *table=&join->join_tab[join->const_tables];
table_map used_tables= join->const_table_map | table->table->map; table_map used_tables= join->const_table_map | table->table->map;
...@@ -5878,20 +5764,20 @@ static bool fix_having(JOIN *join, Item **having) ...@@ -5878,20 +5764,20 @@ static bool fix_having(JOIN *join, Item **having)
{ {
if (!table->select) if (!table->select)
if (!(table->select=new SQL_SELECT)) if (!(table->select=new SQL_SELECT))
DBUG_RETURN(1); return 1;
if (!table->select->cond) if (!table->select->cond)
table->select->cond=sort_table_cond; table->select->cond=sort_table_cond;
else // This should never happen else // This should never happen
if (!(table->select->cond=new Item_cond_and(table->select->cond, if (!(table->select->cond=new Item_cond_and(table->select->cond,
sort_table_cond))) sort_table_cond)))
DBUG_RETURN(1); return 1;
table->select_cond=table->select->cond; table->select_cond=table->select->cond;
DBUG_EXECUTE("where",print_where(table->select_cond, DBUG_EXECUTE("where",print_where(table->select_cond,
"select and having");); "select and having"););
*having=make_cond_for_table(*having,~ (table_map) 0,~used_tables); *having=make_cond_for_table(*having,~ (table_map) 0,~used_tables);
DBUG_EXECUTE("where",print_where(*having,"having after make_cond");); DBUG_EXECUTE("where",print_where(*having,"having after make_cond"););
} }
DBUG_RETURN(0); return 0;
} }
#endif #endif
...@@ -5906,39 +5792,32 @@ static bool fix_having(JOIN *join, Item **having) ...@@ -5906,39 +5792,32 @@ static bool fix_having(JOIN *join, Item **having)
static bool compare_record(TABLE *table, Field **ptr) static bool compare_record(TABLE *table, Field **ptr)
{ {
DBUG_ENTER("compare_record");
for (; *ptr ; ptr++) for (; *ptr ; ptr++)
{ {
if ((*ptr)->cmp_offset(table->rec_buff_length)) if ((*ptr)->cmp_offset(table->rec_buff_length))
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(0); return 0;
} }
static bool copy_blobs(Field **ptr) static bool copy_blobs(Field **ptr)
{ {
DBUG_ENTER("copy_blobs");
for (; *ptr ; ptr++) for (; *ptr ; ptr++)
{ {
if ((*ptr)->flags & BLOB_FLAG) if ((*ptr)->flags & BLOB_FLAG)
if (((Field_blob *) (*ptr))->copy()) if (((Field_blob *) (*ptr))->copy())
DBUG_RETURN(1); // Error return 1; // Error
} }
DBUG_RETURN(0); return 0;
} }
static void free_blobs(Field **ptr) static void free_blobs(Field **ptr)
{ {
DBUG_ENTER("free_blobs");
for (; *ptr ; ptr++) for (; *ptr ; ptr++)
{ {
if ((*ptr)->flags & BLOB_FLAG) if ((*ptr)->flags & BLOB_FLAG)
((Field_blob *) (*ptr))->free(); ((Field_blob *) (*ptr))->free();
} }
DBUG_VOID_RETURN;
} }
...@@ -6185,7 +6064,7 @@ SORT_FIELD *make_unireg_sortorder(ORDER *order, uint *length) ...@@ -6185,7 +6064,7 @@ SORT_FIELD *make_unireg_sortorder(ORDER *order, uint *length)
count++; count++;
pos=sort=(SORT_FIELD*) sql_alloc(sizeof(SORT_FIELD)*(count+1)); pos=sort=(SORT_FIELD*) sql_alloc(sizeof(SORT_FIELD)*(count+1));
if (!pos) if (!pos)
DBUG_RETURN(0); return 0;
for (;order;order=order->next,pos++) for (;order;order=order->next,pos++)
{ {
...@@ -6311,15 +6190,13 @@ static ulong ...@@ -6311,15 +6190,13 @@ static ulong
used_blob_length(CACHE_FIELD **ptr) used_blob_length(CACHE_FIELD **ptr)
{ {
uint length,blob_length; uint length,blob_length;
DBUG_ENTER("used_blob_length");
for (length=0 ; *ptr ; ptr++) for (length=0 ; *ptr ; ptr++)
{ {
(*ptr)->blob_length=blob_length=(*ptr)->blob_field->get_length(); (*ptr)->blob_length=blob_length=(*ptr)->blob_field->get_length();
length+=blob_length; length+=blob_length;
(*ptr)->blob_field->get_ptr(&(*ptr)->str); (*ptr)->blob_field->get_ptr(&(*ptr)->str);
} }
DBUG_RETURN(length); return length;
} }
...@@ -6330,7 +6207,6 @@ store_record_in_cache(JOIN_CACHE *cache) ...@@ -6330,7 +6207,6 @@ store_record_in_cache(JOIN_CACHE *cache)
uchar *pos; uchar *pos;
CACHE_FIELD *copy,*end_field; CACHE_FIELD *copy,*end_field;
bool last_record; bool last_record;
DBUG_ENTER("store_record_in_cache");
pos=cache->pos; pos=cache->pos;
end_field=cache->field+cache->fields; end_field=cache->field+cache->fields;
...@@ -6382,18 +6258,15 @@ store_record_in_cache(JOIN_CACHE *cache) ...@@ -6382,18 +6258,15 @@ store_record_in_cache(JOIN_CACHE *cache)
} }
} }
cache->pos=pos; cache->pos=pos;
DBUG_RETURN(last_record || (uint) (cache->end -pos) < cache->length); return last_record || (uint) (cache->end -pos) < cache->length;
} }
static void static void
reset_cache(JOIN_CACHE *cache) reset_cache(JOIN_CACHE *cache)
{ {
DBUG_ENTER("reset_cache");
cache->record_nr=0; cache->record_nr=0;
cache->pos=cache->buff; cache->pos=cache->buff;
DBUG_VOID_RETURN;
} }
...@@ -6404,7 +6277,6 @@ read_cached_record(JOIN_TAB *tab) ...@@ -6404,7 +6277,6 @@ read_cached_record(JOIN_TAB *tab)
uint length; uint length;
bool last_record; bool last_record;
CACHE_FIELD *copy,*end_field; CACHE_FIELD *copy,*end_field;
DBUG_ENTER("read_cached_record");
last_record=tab->cache.record_nr++ == tab->cache.ptr_record; last_record=tab->cache.record_nr++ == tab->cache.ptr_record;
pos=tab->cache.pos; pos=tab->cache.pos;
...@@ -6442,7 +6314,7 @@ read_cached_record(JOIN_TAB *tab) ...@@ -6442,7 +6314,7 @@ read_cached_record(JOIN_TAB *tab)
} }
} }
tab->cache.pos=pos; tab->cache.pos=pos;
DBUG_VOID_RETURN; return;
} }
...@@ -6450,28 +6322,24 @@ static bool ...@@ -6450,28 +6322,24 @@ static bool
cmp_buffer_with_ref(JOIN_TAB *tab) cmp_buffer_with_ref(JOIN_TAB *tab)
{ {
bool diff; bool diff;
DBUG_ENTER("cmp_buffer_with_ref");
if (!(diff=tab->ref.key_err)) if (!(diff=tab->ref.key_err))
{ {
memcpy(tab->ref.key_buff2, tab->ref.key_buff, tab->ref.key_length); memcpy(tab->ref.key_buff2, tab->ref.key_buff, tab->ref.key_length);
} }
if ((tab->ref.key_err=cp_buffer_from_ref(&tab->ref)) || diff) if ((tab->ref.key_err=cp_buffer_from_ref(&tab->ref)) || diff)
DBUG_RETURN(1); return 1;
DBUG_RETURN(memcmp(tab->ref.key_buff2, tab->ref.key_buff, tab->ref.key_length) return memcmp(tab->ref.key_buff2, tab->ref.key_buff, tab->ref.key_length)
!= 0); != 0;
} }
bool bool
cp_buffer_from_ref(TABLE_REF *ref) cp_buffer_from_ref(TABLE_REF *ref)
{ {
DBUG_ENTER("cp_buffer_from_ref");
for (store_key **copy=ref->key_copy ; *copy ; copy++) for (store_key **copy=ref->key_copy ; *copy ; copy++)
if ((*copy)->copy()) if ((*copy)->copy())
DBUG_RETURN(1); // Something went wrong return 1; // Something went wrong
DBUG_RETURN(0); return 0;
} }
...@@ -6489,8 +6357,6 @@ static int ...@@ -6489,8 +6357,6 @@ static int
find_order_in_list(THD *thd,TABLE_LIST *tables,ORDER *order,List<Item> &fields, find_order_in_list(THD *thd,TABLE_LIST *tables,ORDER *order,List<Item> &fields,
List<Item> &all_fields) List<Item> &all_fields)
{ {
DBUG_ENTER("find_order_in_list");
if ((*order->item)->type() == Item::INT_ITEM) if ((*order->item)->type() == Item::INT_ITEM)
{ /* Order by position */ { /* Order by position */
Item *item=0; Item *item=0;
...@@ -6503,11 +6369,11 @@ find_order_in_list(THD *thd,TABLE_LIST *tables,ORDER *order,List<Item> &fields, ...@@ -6503,11 +6369,11 @@ find_order_in_list(THD *thd,TABLE_LIST *tables,ORDER *order,List<Item> &fields,
my_printf_error(ER_BAD_FIELD_ERROR,ER(ER_BAD_FIELD_ERROR), my_printf_error(ER_BAD_FIELD_ERROR,ER(ER_BAD_FIELD_ERROR),
MYF(0),(*order->item)->full_name(), MYF(0),(*order->item)->full_name(),
thd->where); thd->where);
DBUG_RETURN(1); return 1;
} }
order->item=li.ref(); order->item=li.ref();
order->in_field_list=1; order->in_field_list=1;
DBUG_RETURN(0); return 0;
} }
const char *save_where=thd->where; const char *save_where=thd->where;
thd->where=0; // No error if not found thd->where=0; // No error if not found
...@@ -6517,14 +6383,14 @@ find_order_in_list(THD *thd,TABLE_LIST *tables,ORDER *order,List<Item> &fields, ...@@ -6517,14 +6383,14 @@ find_order_in_list(THD *thd,TABLE_LIST *tables,ORDER *order,List<Item> &fields,
{ {
order->item=item; // use it order->item=item; // use it
order->in_field_list=1; order->in_field_list=1;
DBUG_RETURN(0); return 0;
} }
order->in_field_list=0; order->in_field_list=0;
if ((*order->item)->fix_fields(thd,tables) || thd->fatal_error) if ((*order->item)->fix_fields(thd,tables) || thd->fatal_error)
DBUG_RETURN(1); // Wrong field return 1; // Wrong field
all_fields.push_front(*order->item); // Add new field to field list all_fields.push_front(*order->item); // Add new field to field list
order->item=(Item**) all_fields.head_ref(); order->item=(Item**) all_fields.head_ref();
DBUG_RETURN(0); return 0;
} }
...@@ -6536,15 +6402,13 @@ find_order_in_list(THD *thd,TABLE_LIST *tables,ORDER *order,List<Item> &fields, ...@@ -6536,15 +6402,13 @@ find_order_in_list(THD *thd,TABLE_LIST *tables,ORDER *order,List<Item> &fields,
int setup_order(THD *thd,TABLE_LIST *tables,List<Item> &fields, int setup_order(THD *thd,TABLE_LIST *tables,List<Item> &fields,
List<Item> &all_fields, ORDER *order) List<Item> &all_fields, ORDER *order)
{ {
DBUG_ENTER("setup_order");
thd->where="order clause"; thd->where="order clause";
for (; order; order=order->next) for (; order; order=order->next)
{ {
if (find_order_in_list(thd,tables,order,fields,all_fields)) if (find_order_in_list(thd,tables,order,fields,all_fields))
DBUG_RETURN(1); return 1;
} }
DBUG_RETURN(0); return 0;
} }
...@@ -6552,11 +6416,9 @@ static int ...@@ -6552,11 +6416,9 @@ static int
setup_group(THD *thd,TABLE_LIST *tables,List<Item> &fields, setup_group(THD *thd,TABLE_LIST *tables,List<Item> &fields,
List<Item> &all_fields, ORDER *order, bool *hidden_group_fields) List<Item> &all_fields, ORDER *order, bool *hidden_group_fields)
{ {
DBUG_ENTER("setup_group");
*hidden_group_fields=0; *hidden_group_fields=0;
if (!order) if (!order)
DBUG_RETURN(0); /* Everything is ok */ return 0; /* Everything is ok */
if (thd->sql_mode & MODE_ONLY_FULL_GROUP_BY) if (thd->sql_mode & MODE_ONLY_FULL_GROUP_BY)
{ {
...@@ -6571,13 +6433,13 @@ setup_group(THD *thd,TABLE_LIST *tables,List<Item> &fields, ...@@ -6571,13 +6433,13 @@ setup_group(THD *thd,TABLE_LIST *tables,List<Item> &fields,
for (; order; order=order->next) for (; order; order=order->next)
{ {
if (find_order_in_list(thd,tables,order,fields,all_fields)) if (find_order_in_list(thd,tables,order,fields,all_fields))
DBUG_RETURN(1); return 1;
(*order->item)->marker=1; /* Mark found */ (*order->item)->marker=1; /* Mark found */
if ((*order->item)->with_sum_func) if ((*order->item)->with_sum_func)
{ {
my_printf_error(ER_WRONG_GROUP_FIELD, ER(ER_WRONG_GROUP_FIELD),MYF(0), my_printf_error(ER_WRONG_GROUP_FIELD, ER(ER_WRONG_GROUP_FIELD),MYF(0),
(*order->item)->full_name()); (*order->item)->full_name());
DBUG_RETURN(1); return 1;
} }
} }
if (thd->sql_mode & MODE_ONLY_FULL_GROUP_BY) if (thd->sql_mode & MODE_ONLY_FULL_GROUP_BY)
...@@ -6593,13 +6455,13 @@ setup_group(THD *thd,TABLE_LIST *tables,List<Item> &fields, ...@@ -6593,13 +6455,13 @@ setup_group(THD *thd,TABLE_LIST *tables,List<Item> &fields,
my_printf_error(ER_WRONG_FIELD_WITH_GROUP, my_printf_error(ER_WRONG_FIELD_WITH_GROUP,
ER(ER_WRONG_FIELD_WITH_GROUP), ER(ER_WRONG_FIELD_WITH_GROUP),
MYF(0),item->full_name()); MYF(0),item->full_name());
DBUG_RETURN(1); return 1;
} }
} }
} }
if (org_fields != all_fields.elements) if (org_fields != all_fields.elements)
*hidden_group_fields=1; // group fields is not used *hidden_group_fields=1; // group fields is not used
DBUG_RETURN(0); return 0;
} }
/* /*
...@@ -6644,7 +6506,6 @@ create_distinct_group(ORDER *order_list,List<Item> &fields) ...@@ -6644,7 +6506,6 @@ create_distinct_group(ORDER *order_list,List<Item> &fields)
List_iterator<Item> li(fields); List_iterator<Item> li(fields);
Item *item; Item *item;
ORDER *order,*group,**prev; ORDER *order,*group,**prev;
DBUG_ENTER("create_distinct_group");
while ((item=li++)) while ((item=li++))
item->marker=0; /* Marker that field is not used */ item->marker=0; /* Marker that field is not used */
...@@ -6656,7 +6517,7 @@ create_distinct_group(ORDER *order_list,List<Item> &fields) ...@@ -6656,7 +6517,7 @@ create_distinct_group(ORDER *order_list,List<Item> &fields)
{ {
ORDER *ord=(ORDER*) sql_memdup(order,sizeof(ORDER)); ORDER *ord=(ORDER*) sql_memdup(order,sizeof(ORDER));
if (!ord) if (!ord)
DBUG_RETURN(0); return 0;
*prev=ord; *prev=ord;
prev= &ord->next; prev= &ord->next;
(*ord->item)->marker=1; (*ord->item)->marker=1;
...@@ -6672,7 +6533,7 @@ create_distinct_group(ORDER *order_list,List<Item> &fields) ...@@ -6672,7 +6533,7 @@ create_distinct_group(ORDER *order_list,List<Item> &fields)
{ {
ORDER *ord=(ORDER*) sql_calloc(sizeof(ORDER)); ORDER *ord=(ORDER*) sql_calloc(sizeof(ORDER));
if (!ord) if (!ord)
DBUG_RETURN(0); return 0;
ord->item=li.ref(); ord->item=li.ref();
ord->asc=1; ord->asc=1;
*prev=ord; *prev=ord;
...@@ -6680,7 +6541,7 @@ create_distinct_group(ORDER *order_list,List<Item> &fields) ...@@ -6680,7 +6541,7 @@ create_distinct_group(ORDER *order_list,List<Item> &fields)
} }
} }
*prev=0; *prev=0;
DBUG_RETURN(group); return group;
} }
...@@ -6694,7 +6555,6 @@ count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields, ...@@ -6694,7 +6555,6 @@ count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields,
{ {
List_iterator<Item> li(fields); List_iterator<Item> li(fields);
Item *field; Item *field;
DBUG_ENTER("count_field_types");
param->field_count=param->sum_func_count=param->func_count= param->field_count=param->sum_func_count=param->func_count=
param->hidden_field_count=0; param->hidden_field_count=0;
...@@ -6729,7 +6589,6 @@ count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields, ...@@ -6729,7 +6589,6 @@ count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields,
field->with_sum_func=0; field->with_sum_func=0;
} }
} }
DBUG_VOID_RETURN;
} }
...@@ -6742,16 +6601,14 @@ count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields, ...@@ -6742,16 +6601,14 @@ count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields,
static bool static bool
test_if_subpart(ORDER *a,ORDER *b) test_if_subpart(ORDER *a,ORDER *b)
{ {
DBUG_ENTER("test_if_subpart");
for (; a && b; a=a->next,b=b->next) for (; a && b; a=a->next,b=b->next)
{ {
if ((*a->item)->eq(*b->item,1)) if ((*a->item)->eq(*b->item,1))
a->asc=b->asc; a->asc=b->asc;
else else
DBUG_RETURN(0); return 0;
} }
DBUG_RETURN(test(!b)); return test(!b);
} }
/* /*
...@@ -6794,7 +6651,6 @@ static void ...@@ -6794,7 +6651,6 @@ static void
calc_group_buffer(JOIN *join,ORDER *group) calc_group_buffer(JOIN *join,ORDER *group)
{ {
uint key_length=0, parts=0, null_parts=0; uint key_length=0, parts=0, null_parts=0;
DBUG_ENTER("calc_group_buffer");
if (group) if (group)
join->group= 1; join->group= 1;
...@@ -6821,7 +6677,6 @@ calc_group_buffer(JOIN *join,ORDER *group) ...@@ -6821,7 +6677,6 @@ calc_group_buffer(JOIN *join,ORDER *group)
join->tmp_table_param.group_length=key_length+null_parts; join->tmp_table_param.group_length=key_length+null_parts;
join->tmp_table_param.group_parts=parts; join->tmp_table_param.group_parts=parts;
join->tmp_table_param.group_null_parts=null_parts; join->tmp_table_param.group_null_parts=null_parts;
DBUG_VOID_RETURN;
} }
...@@ -6833,19 +6688,17 @@ calc_group_buffer(JOIN *join,ORDER *group) ...@@ -6833,19 +6688,17 @@ calc_group_buffer(JOIN *join,ORDER *group)
static bool static bool
alloc_group_fields(JOIN *join,ORDER *group) alloc_group_fields(JOIN *join,ORDER *group)
{ {
DBUG_ENTER("alloc_group_fields");
if (group) if (group)
{ {
for (; group ; group=group->next) for (; group ; group=group->next)
{ {
Item_buff *tmp=new_Item_buff(*group->item); Item_buff *tmp=new_Item_buff(*group->item);
if (!tmp || join->group_fields.push_front(tmp)) if (!tmp || join->group_fields.push_front(tmp))
DBUG_RETURN(TRUE); return TRUE;
} }
} }
join->sort_and_group=1; /* Mark for do_select */ join->sort_and_group=1; /* Mark for do_select */
DBUG_RETURN(FALSE); return FALSE;
} }
...@@ -6855,14 +6708,13 @@ test_if_group_changed(List<Item_buff> &list) ...@@ -6855,14 +6708,13 @@ test_if_group_changed(List<Item_buff> &list)
List_iterator<Item_buff> li(list); List_iterator<Item_buff> li(list);
int idx= -1,i; int idx= -1,i;
Item_buff *buff; Item_buff *buff;
DBUG_ENTER("test_if_group_changed");
for (i=(int) list.elements-1 ; (buff=li++) ; i--) for (i=(int) list.elements-1 ; (buff=li++) ; i--)
{ {
if (buff->cmp()) if (buff->cmp())
idx=i; idx=i;
} }
DBUG_RETURN(idx); return idx;
} }
...@@ -6948,7 +6800,6 @@ copy_fields(TMP_TABLE_PARAM *param) ...@@ -6948,7 +6800,6 @@ copy_fields(TMP_TABLE_PARAM *param)
{ {
Copy_field *ptr=param->copy_field; Copy_field *ptr=param->copy_field;
Copy_field *end=param->copy_field_end; Copy_field *end=param->copy_field_end;
DBUG_ENTER("copy_fields");
for (; ptr != end; ptr++) for (; ptr != end; ptr++)
(*ptr->do_copy)(ptr); (*ptr->do_copy)(ptr);
...@@ -6958,7 +6809,6 @@ copy_fields(TMP_TABLE_PARAM *param) ...@@ -6958,7 +6809,6 @@ copy_fields(TMP_TABLE_PARAM *param)
Item_copy_string *item; Item_copy_string *item;
while ((item = (Item_copy_string*) it++)) while ((item = (Item_copy_string*) it++))
item->copy(); item->copy();
DBUG_VOID_RETURN;
} }
...@@ -7003,7 +6853,6 @@ change_to_use_tmp_fields(List<Item> &items) ...@@ -7003,7 +6853,6 @@ change_to_use_tmp_fields(List<Item> &items)
{ {
List_iterator<Item> it(items); List_iterator<Item> it(items);
Item *item_field,*item; Item *item_field,*item;
DBUG_ENTER("change_to_use_tmp_fields");
while ((item=it++)) while ((item=it++))
{ {
...@@ -7022,7 +6871,7 @@ change_to_use_tmp_fields(List<Item> &items) ...@@ -7022,7 +6871,7 @@ change_to_use_tmp_fields(List<Item> &items)
else else
item_field=(Item*) new Item_field(field); item_field=(Item*) new Item_field(field);
if (!item_field) if (!item_field)
DBUG_RETURN(TRUE); // Fatal error return TRUE; // Fatal error
item_field->name=item->name; /*lint -e613 */ item_field->name=item->name; /*lint -e613 */
#ifndef DBUG_OFF #ifndef DBUG_OFF
if (_db_on_ && !item_field->name) if (_db_on_ && !item_field->name)
...@@ -7041,7 +6890,7 @@ change_to_use_tmp_fields(List<Item> &items) ...@@ -7041,7 +6890,7 @@ change_to_use_tmp_fields(List<Item> &items)
#endif #endif
} }
} }
DBUG_RETURN(FALSE); return FALSE;
} }
...@@ -7055,7 +6904,6 @@ change_refs_to_tmp_fields(THD *thd,List<Item> &items) ...@@ -7055,7 +6904,6 @@ change_refs_to_tmp_fields(THD *thd,List<Item> &items)
{ {
List_iterator<Item> it(items); List_iterator<Item> it(items);
Item *item; Item *item;
DBUG_ENTER("change_refs_to_tmp_fields");
while ((item= it++)) while ((item= it++))
{ {
...@@ -7098,7 +6946,7 @@ change_refs_to_tmp_fields(THD *thd,List<Item> &items) ...@@ -7098,7 +6946,7 @@ change_refs_to_tmp_fields(THD *thd,List<Item> &items)
((Item_field*)item)->field=((Item_field*) item)->result_field; ((Item_field*)item)->field=((Item_field*) item)->result_field;
} }
} }
DBUG_RETURN(thd->fatal_error); return thd->fatal_error;
} }
...@@ -7111,11 +6959,8 @@ static void ...@@ -7111,11 +6959,8 @@ static void
init_tmptable_sum_functions(Item_sum **func_ptr) init_tmptable_sum_functions(Item_sum **func_ptr)
{ {
Item_sum *func; Item_sum *func;
DBUG_ENTER("init_tmptable_sum_functions");
while ((func= *(func_ptr++))) while ((func= *(func_ptr++)))
func->reset_field(); func->reset_field();
DBUG_VOID_RETURN;
} }
...@@ -7126,11 +6971,8 @@ update_tmptable_sum_func(Item_sum **func_ptr, ...@@ -7126,11 +6971,8 @@ update_tmptable_sum_func(Item_sum **func_ptr,
TABLE *tmp_table __attribute__((unused))) TABLE *tmp_table __attribute__((unused)))
{ {
Item_sum *func; Item_sum *func;
DBUG_ENTER("update_tmptable_sum_func");
while ((func= *(func_ptr++))) while ((func= *(func_ptr++)))
func->update_field(0); func->update_field(0);
DBUG_VOID_RETURN;
} }
...@@ -7140,11 +6982,9 @@ static void ...@@ -7140,11 +6982,9 @@ static void
copy_sum_funcs(Item_sum **func_ptr) copy_sum_funcs(Item_sum **func_ptr)
{ {
Item_sum *func; Item_sum *func;
DBUG_ENTER("copy_sum_funcs");
for (; (func = *func_ptr) ; func_ptr++) for (; (func = *func_ptr) ; func_ptr++)
(void) func->save_in_field(func->result_field); (void) func->save_in_field(func->result_field);
DBUG_VOID_RETURN; return;
} }
...@@ -7152,11 +6992,8 @@ static void ...@@ -7152,11 +6992,8 @@ static void
init_sum_functions(Item_sum **func_ptr) init_sum_functions(Item_sum **func_ptr)
{ {
Item_sum *func; Item_sum *func;
DBUG_ENTER("init_sum_functions");
for (; (func= (Item_sum*) *func_ptr) ; func_ptr++) for (; (func= (Item_sum*) *func_ptr) ; func_ptr++)
func->reset(); func->reset();
DBUG_VOID_RETURN;
} }
...@@ -7164,12 +7001,10 @@ static bool ...@@ -7164,12 +7001,10 @@ static bool
update_sum_func(Item_sum **func_ptr) update_sum_func(Item_sum **func_ptr)
{ {
Item_sum *func; Item_sum *func;
DBUG_ENTER("update_sum_func");
for (; (func= (Item_sum*) *func_ptr) ; func_ptr++) for (; (func= (Item_sum*) *func_ptr) ; func_ptr++)
if (func->add()) if (func->add())
DBUG_RETURN(1); return 1;
DBUG_RETURN(0); return 0;
} }
/* Copy result of functions to record in tmp_table */ /* Copy result of functions to record in tmp_table */
...@@ -7178,11 +7013,9 @@ void ...@@ -7178,11 +7013,9 @@ void
copy_funcs(Item_result_field **func_ptr) copy_funcs(Item_result_field **func_ptr)
{ {
Item_result_field *func; Item_result_field *func;
DBUG_ENTER("copy_funcs");
for (; (func = *func_ptr) ; func_ptr++) for (; (func = *func_ptr) ; func_ptr++)
(void) func->save_in_field(func->result_field); (void) func->save_in_field(func->result_field);
DBUG_VOID_RETURN; return;
} }
...@@ -7265,7 +7098,7 @@ static void select_describe(JOIN *join, bool need_tmp_table, bool need_order, ...@@ -7265,7 +7098,7 @@ static void select_describe(JOIN *join, bool need_tmp_table, bool need_order,
field_list.push_back(new Item_real("rows",0.0,0,10)); field_list.push_back(new Item_real("rows",0.0,0,10));
field_list.push_back(new Item_empty_string("Extra",255)); field_list.push_back(new Item_empty_string("Extra",255));
if (result->send_fields(field_list,1)) if (result->send_fields(field_list,1))
DBUG_VOID_RETURN; return;
} }
if (message) if (message)
...@@ -7408,12 +7241,11 @@ static void select_describe(JOIN *join, bool need_tmp_table, bool need_order, ...@@ -7408,12 +7241,11 @@ static void select_describe(JOIN *join, bool need_tmp_table, bool need_order,
static void describe_info(JOIN *join, const char *info) static void describe_info(JOIN *join, const char *info)
{ {
THD *thd= join->thd; THD *thd= join->thd;
DBUG_ENTER("describe_info");
if (thd->lex.select_lex.next) /* If in UNION */ if (thd->lex.select_lex.next) /* If in UNION */
{ {
select_describe(join,FALSE,FALSE,FALSE,info); select_describe(join,FALSE,FALSE,FALSE,info);
DBUG_VOID_RETURN; return;
} }
List<Item> field_list; List<Item> field_list;
String *packet= &thd->packet; String *packet= &thd->packet;
...@@ -7423,10 +7255,9 @@ static void describe_info(JOIN *join, const char *info) ...@@ -7423,10 +7255,9 @@ static void describe_info(JOIN *join, const char *info)
QUERY_NO_GOOD_INDEX_USED); QUERY_NO_GOOD_INDEX_USED);
field_list.push_back(new Item_empty_string("Comment",80)); field_list.push_back(new Item_empty_string("Comment",80));
if (send_fields(thd,field_list,1)) if (send_fields(thd,field_list,1))
DBUG_VOID_RETURN; /* purecov: inspected */ return; /* purecov: inspected */
packet->length(0); packet->length(0);
net_store_data(packet,info); net_store_data(packet,info);
if (!my_net_write(&thd->net,(char*) packet->ptr(),packet->length())) if (!my_net_write(&thd->net,(char*) packet->ptr(),packet->length()))
send_eof(&thd->net); send_eof(&thd->net);
DBUG_VOID_RETURN;
} }
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment