diff options
author | unknown <bell@sanja.is.com.ua> | 2003-01-29 19:42:39 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2003-01-29 19:42:39 +0200 |
commit | b2ffb29ad7c21f03eb606660fa345d54b776b900 (patch) | |
tree | 185b3adb213d5a97368591628a459b65b72ea537 /sql/sql_update.cc | |
parent | b343de721e7b3bee2cb3d262875dbe5357e230b6 (diff) | |
download | mariadb-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.cc | 2 |
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); } |