summaryrefslogtreecommitdiff
path: root/sql/sql_update.cc
diff options
context:
space:
mode:
authorunknown <bell@sanja.is.com.ua>2003-01-29 19:42:39 +0200
committerunknown <bell@sanja.is.com.ua>2003-01-29 19:42:39 +0200
commitb2ffb29ad7c21f03eb606660fa345d54b776b900 (patch)
tree185b3adb213d5a97368591628a459b65b72ea537 /sql/sql_update.cc
parentb343de721e7b3bee2cb3d262875dbe5357e230b6 (diff)
downloadmariadb-git-b2ffb29ad7c21f03eb606660fa345d54b776b900.tar.gz
improving of fields list creation in derived tables and unions
fixed length of fields created in fubselect fixed resolving fields of reduced in derived table subselect mysql-test/r/subselect.result: test of created with subselect fields mysql-test/t/subselect.test: test of created with subselect fields sql/item.cc: fixed length of fields created in fubselect fixed resolving fields of reduced in derived table subselect sql/item_subselect.cc: improving of fields list creation in derived tables and unions sql/mysql_priv.h: improving of fields list creation in derived tables and unions sql/sql_derived.cc: improving of fields list creation in derived tables and unions sql/sql_lex.h: improving of fields list creation in derived tables and unions sql/sql_parse.cc: improving of fields list creation in derived tables and unions sql/sql_prepare.cc: improving of fields list creation in derived tables and unions sql/sql_select.cc: improving of fields list creation in derived tables and unions sql/sql_select.h: improving of fields list creation in derived tables and unions sql/sql_union.cc: improving of fields list creation in derived tables and unions sql/sql_update.cc: improving of fields list creation in derived tables and unions
Diffstat (limited to 'sql/sql_update.cc')
-rw-r--r--sql/sql_update.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_update.cc b/sql/sql_update.cc
index f2f1c0da0d9..8836564c6d4 100644
--- a/sql/sql_update.cc
+++ b/sql/sql_update.cc
@@ -428,7 +428,7 @@ int mysql_multi_update(THD *thd,
conds, 0, (ORDER *) NULL, (ORDER *)NULL, (Item *) NULL,
(ORDER *)NULL,
options | SELECT_NO_JOIN_CACHE,
- result, unit, select_lex, 0);
+ result, unit, select_lex, 0, 0);
delete result;
DBUG_RETURN(res);
}