diff options
author | bell@sanja.is.com.ua <> | 2005-07-01 07:05:42 +0300 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2005-07-01 07:05:42 +0300 |
commit | d3905f3d0eb8c2fcbebbecceeca348f2add2cb0d (patch) | |
tree | 9add97047abadbc8746b2d0a892d7944e8703d4f /sql/item_row.cc | |
parent | d8cb0cbc3f2b8c4ffca54d464ea8adc787d110f5 (diff) | |
download | mariadb-git-d3905f3d0eb8c2fcbebbecceeca348f2add2cb0d.tar.gz |
Name resolution context added (BUG#6443)
Diffstat (limited to 'sql/item_row.cc')
-rw-r--r-- | sql/item_row.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_row.cc b/sql/item_row.cc index 0c8baa332ca..9362518e6ef 100644 --- a/sql/item_row.cc +++ b/sql/item_row.cc @@ -53,7 +53,7 @@ void Item_row::illegal_method_call(const char *method) DBUG_VOID_RETURN; } -bool Item_row::fix_fields(THD *thd, TABLE_LIST *tabl, Item **ref) +bool Item_row::fix_fields(THD *thd, Item **ref) { DBUG_ASSERT(fixed == 0); null_value= 0; @@ -61,7 +61,7 @@ bool Item_row::fix_fields(THD *thd, TABLE_LIST *tabl, Item **ref) Item **arg, **arg_end; for (arg= items, arg_end= items+arg_count; arg != arg_end ; arg++) { - if ((*arg)->fix_fields(thd, tabl, arg)) + if ((*arg)->fix_fields(thd, arg)) return TRUE; // we can't assign 'item' before, because fix_fields() can change arg Item *item= *arg; |