summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r--sql/sql_select.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h
index 9528442ecf2..57b8658bdf1 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -1049,7 +1049,7 @@ public:
table_map outer_join;
/* Bitmap of tables used in the select list items */
table_map select_list_used_tables;
- ha_rows send_records,found_records,examined_rows;
+ ha_rows send_records,found_records,join_examined_rows;
/*
LIMIT for the JOIN operation. When not using aggregation or DISITNCT, this
@@ -1122,7 +1122,7 @@ public:
reexecutions. This value is equal to the multiplication of all
join->positions[i].records_read of a JOIN.
*/
- double record_count;
+ double join_record_count;
List<Item> *fields;
List<Cached_item> group_fields, group_fields_cache;
TABLE *tmp_table;
@@ -1337,7 +1337,7 @@ public:
send_records= 0;
found_records= 0;
fetch_limit= HA_POS_ERROR;
- examined_rows= 0;
+ join_examined_rows= 0;
exec_tmp_table1= 0;
exec_tmp_table2= 0;
sortorder= 0;