diff options
author | unknown <monty@hundin.mysql.fi> | 2001-09-07 22:38:45 +0300 |
---|---|---|
committer | unknown <monty@hundin.mysql.fi> | 2001-09-07 22:38:45 +0300 |
commit | fd6fea462f60e7e144ec078795016bf7d76ea31f (patch) | |
tree | 9a8286b6c6ad4333e8815f3b2906b218db6a5635 /sql/sql_class.h | |
parent | 54e33e272d75345b09190052bb0c7d52cce56fc8 (diff) | |
download | mariadb-git-fd6fea462f60e7e144ec078795016bf7d76ea31f.tar.gz |
Cleanups
configure.in:
Only allow --with-pstack on Linux x86
mysql-test/t/merge.test:
Add test of using db.tablename in UNION()
mysys/mf_qsort.c:
Fix when using purify
mysys/my_dup.c:
Cleanup
mysys/raid.cc:
Cleanup
sql/gen_lex_hash.cc:
Smaller array
sql/ha_innobase.cc:
Remove warnings
sql/mysqld.cc:
Remove not used option from --help
sql/sql_class.h:
Cleanup
Diffstat (limited to 'sql/sql_class.h')
-rw-r--r-- | sql/sql_class.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_class.h b/sql/sql_class.h index a99bce0d6bc..085ea3d7b34 100644 --- a/sql/sql_class.h +++ b/sql/sql_class.h @@ -614,7 +614,7 @@ public: Unique(qsort_cmp2 comp_func, void * comp_func_fixed_arg, uint size, ulong max_in_memory_size_arg); ~Unique(); - inline bool Unique::unique_add(gptr ptr) + inline bool unique_add(gptr ptr) { if (tree.elements_in_tree > max_elements && flush()) return 1; |