summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-01-23 02:52:26 +0200
committermonty@hundin.mysql.fi <>2002-01-23 02:52:26 +0200
commit4609e627a524b7bd5d85c44a85001157fb67b09c (patch)
treebe3a98f50b40e6cfe7dd9ac0bfb602ada79dcc02 /sql/sql_select.h
parentc7384b75fc1581d0924e0f7f2ad58f0a0c21e525 (diff)
downloadmariadb-git-4609e627a524b7bd5d85c44a85001157fb67b09c.tar.gz
Increase max package length to 512M for mysql and mysqldump.
Faster 'read_first_row' (Fixes slow 'preparing' state) Read constant tables earlier, which provides better optimzations when using tables with <=1 row. This also fixes a complicated bug involving const tables.
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r--sql/sql_select.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h
index 9eb287c8845..befa1efde53 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -158,7 +158,7 @@ class JOIN {
uint send_group_parts;
bool sort_and_group,first_record,full_join,group, no_field_update;
bool do_send_rows;
- table_map const_table_map,outer_join;
+ table_map const_table_map,found_const_table_map,outer_join;
ha_rows send_records,found_records,examined_rows,row_limit;
POSITION positions[MAX_TABLES+1],best_positions[MAX_TABLES+1];
double best_read;