diff options
author | unknown <monty@mysql.com> | 2005-02-10 15:41:51 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2005-02-10 15:41:51 +0200 |
commit | 4adab48b6c412b3104044c740c013e020787c2e2 (patch) | |
tree | 7d42cc92f921a6a9007987c503f67b03a02a32ac /sql/sql_list.h | |
parent | 2d435c8a2e13552588e08828ac640876e46ae5ec (diff) | |
download | mariadb-git-4adab48b6c412b3104044c740c013e020787c2e2.tar.gz |
Things missing in last changset
After merge fixes
Don't give duplicate warnings for some ::store() functions
mysql-test/mysql-test-run.sh:
Added back missing line
mysql-test/r/ps_2myisam.result:
Update results after removing duplicate warnings from ::store()
mysql-test/r/ps_3innodb.result:
Update results after removing duplicate warnings from ::store()
mysql-test/r/ps_4heap.result:
Update results after removing duplicate warnings from ::store()
mysql-test/r/ps_5merge.result:
Update results after removing duplicate warnings from ::store()
sql/field.cc:
Don't give duplicate warnings for some ::store() functions
Before we could get different number of warnings in the test suite for different platforms
sql/field.h:
Update results after removing duplicate warnings from ::store()
sql/sql_class.h:
Update results after removing duplicate warnings from ::store()
sql/sql_error.cc:
Update results after removing duplicate warnings from ::store()
sql/sql_list.h:
After merge fix
Diffstat (limited to 'sql/sql_list.h')
-rw-r--r-- | sql/sql_list.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/sql/sql_list.h b/sql/sql_list.h index 6317d215399..85da553f64a 100644 --- a/sql/sql_list.h +++ b/sql/sql_list.h @@ -158,15 +158,6 @@ public: last= &first; return tmp->info; } - inline void concat(base_list *list) - { - if (!list->is_empty()) - { - *last= list->first; - last= list->last; - elements+= list->elements; - } - } inline void disjoin(base_list *list) { list_node **prev= &first; |