diff options
author | konstantin@mysql.com <> | 2004-10-08 19:13:09 +0400 |
---|---|---|
committer | konstantin@mysql.com <> | 2004-10-08 19:13:09 +0400 |
commit | 234c80b6895314206b2631bfe0825f5787890cb3 (patch) | |
tree | 340f7d7161a03919e35c9d1d393b1ee8b23a5fbf /sql/sql_select.cc | |
parent | b0154e21dc2804788d3a81a2d90ca29afef5bd5d (diff) | |
download | mariadb-git-234c80b6895314206b2631bfe0825f5787890cb3.tar.gz |
Deployment of centralized Item change registry, step 2: Item_ref
doesn't need to have it's own recovery mechanism.
Diffstat (limited to 'sql/sql_select.cc')
-rw-r--r-- | sql/sql_select.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_select.cc b/sql/sql_select.cc index 7a389a906c0..0834f0659da 100644 --- a/sql/sql_select.cc +++ b/sql/sql_select.cc @@ -292,7 +292,7 @@ JOIN::prepare(Item ***rref_pointer_array, if (having_fix_rc || thd->net.report_error) DBUG_RETURN(-1); /* purecov: inspected */ if (having->with_sum_func) - having->split_sum_func(ref_pointer_array, all_fields); + having->split_sum_func(thd, ref_pointer_array, all_fields); } // Is it subselect |