diff options
author | unknown <sanja@montyprogram.com> | 2013-01-22 13:29:59 +0200 |
---|---|---|
committer | unknown <sanja@montyprogram.com> | 2013-01-22 13:29:59 +0200 |
commit | 82e39cb1e1637794cc3f7c5049d2d20ce5a32576 (patch) | |
tree | 01d95de6dea10214403faf03db10b6dd8873714e /sql | |
parent | 193c6f548b3702b4259560c40ca24c1243053388 (diff) | |
download | mariadb-git-82e39cb1e1637794cc3f7c5049d2d20ce5a32576.tar.gz |
Fixed typo in the function name.
test suite added.
Diffstat (limited to 'sql')
-rw-r--r-- | sql/item_func.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_func.h b/sql/item_func.h index 516cdd548d0..4306c6ea47a 100644 --- a/sql/item_func.h +++ b/sql/item_func.h @@ -2053,9 +2053,9 @@ public: enum_field_types field_type() const { return last_value->field_type(); } bool const_item() const { return 0; } void evaluate_sideeffects(); - void update_uesd_tables() + void update_used_tables() { - Item_func_last_value::update_used_tables(); + Item_func::update_used_tables(); maybe_null= last_value->maybe_null; } }; |