summaryrefslogtreecommitdiff
path: root/sql/item_sum.h
diff options
context:
space:
mode:
authorunknown <monty@narttu.mysql.fi>2003-08-27 22:30:50 +0300
committerunknown <monty@narttu.mysql.fi>2003-08-27 22:30:50 +0300
commit0ee6f7fde0c5737b2a0b703b1c2755186d7d319b (patch)
tree20979ee2d8e2b0c2cb5d979c17fcb2a620ae17a1 /sql/item_sum.h
parent91dc31d38334cddc0b47c9ac0c0be338fc8cfd20 (diff)
downloadmariadb-git-0ee6f7fde0c5737b2a0b703b1c2755186d7d319b.tar.gz
hanged UDF interface to use clear() instead of reset()
BUILD/FINISH.sh: Add just_clean option (for cleanup script) scripts/mysql_fix_privilege_tables.sql: Added 'USE mysql' for easer use on windows sql/item_sum.cc: Changed UDF interface to use clear() instead of reset() sql/item_sum.h: Changed UDF interface to use clear() instead of reset() sql/slave.cc: Fixed checking of eof for slave/master protocol. (Bug #887) sql/sql_udf.cc: Changed UDF interface to use clear() instead of reset() sql/sql_udf.h: Changed UDF interface to use clear() instead of reset() sql/sql_yacc.yy: ERRORS and WARNINGS should not be reserved words sql/udf_example.cc: Changed UDF interface to use clear() instead of reset()
Diffstat (limited to 'sql/item_sum.h')
-rw-r--r--sql/item_sum.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/item_sum.h b/sql/item_sum.h
index ebb90c05215..bd946609745 100644
--- a/sql/item_sum.h
+++ b/sql/item_sum.h
@@ -509,7 +509,8 @@ public:
enum Sumfunctype sum_func () const { return UDF_SUM_FUNC; }
virtual bool have_field_update(void) const { return 0; }
- bool reset();
+ bool reset() { return 0; } /* TO BE FIXED */
+ bool clear();
bool add();
void reset_field() {};
void update_field(int offset_arg) {};