summaryrefslogtreecommitdiff
path: root/sql/sql_select.h
diff options
context:
space:
mode:
authorbell@sanja.is.com.ua <>2003-08-12 15:04:49 +0300
committerbell@sanja.is.com.ua <>2003-08-12 15:04:49 +0300
commitb6a8d68ae43ee84be6fcc34a8aed1c0275d04eba (patch)
tree9b6eb05bbb347e1704e9fe0036f80dc793830074 /sql/sql_select.h
parentc767f0b2a0d0accd837a350074df8d8b561f09f0 (diff)
downloadmariadb-git-b6a8d68ae43ee84be6fcc34a8aed1c0275d04eba.tar.gz
fixed problem with reference on derived table fields (BUG#1031)
Diffstat (limited to 'sql/sql_select.h')
-rw-r--r--sql/sql_select.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/sql_select.h b/sql/sql_select.h
index 76960876158..72ea42db87c 100644
--- a/sql/sql_select.h
+++ b/sql/sql_select.h
@@ -274,7 +274,8 @@ void TEST_join(JOIN *join);
bool store_val_in_field(Field *field,Item *val);
TABLE *create_tmp_table(THD *thd,TMP_TABLE_PARAM *param,List<Item> &fields,
ORDER *group, bool distinct, bool save_sum_fields,
- ulong select_options, ha_rows rows_limit);
+ ulong select_options, ha_rows rows_limit,
+ char* alias);
void free_tmp_table(THD *thd, TABLE *entry);
void count_field_types(TMP_TABLE_PARAM *param, List<Item> &fields,
bool reset_with_sum_func);