summaryrefslogtreecommitdiff
path: root/sql/uniques.cc
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2002-11-29 16:40:18 +0200
committermonty@mashka.mysql.fi <>2002-11-29 16:40:18 +0200
commit6603d75213d45c9b75f7c5ab9e612663da943f61 (patch)
tree9914e2306a30c63d173b56a8ac8f100ee49823d7 /sql/uniques.cc
parentfa7798596d409251d542c938b89e1b2e428c5ca7 (diff)
downloadmariadb-git-6603d75213d45c9b75f7c5ab9e612663da943f61.tar.gz
New multi-table-update code
New (simpler) internal timestamp handling. More debuging to heap tables. Small cleanups to multi-table-delete false -> 0 and true -> 1 (We should use TRUE and FALSE)
Diffstat (limited to 'sql/uniques.cc')
-rw-r--r--sql/uniques.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/sql/uniques.cc b/sql/uniques.cc
index 60905567ba0..ed256a4b791 100644
--- a/sql/uniques.cc
+++ b/sql/uniques.cc
@@ -53,7 +53,8 @@ Unique::Unique(qsort_cmp2 comp_func, void * comp_func_fixed_arg,
:max_in_memory_size(max_in_memory_size_arg),elements(0)
{
my_b_clear(&file);
- init_tree(&tree, max_in_memory_size / 16, 0, size, comp_func, 0, NULL, comp_func_fixed_arg);
+ init_tree(&tree, max_in_memory_size / 16, 0, size, comp_func, 0, NULL,
+ comp_func_fixed_arg);
/* If the following fail's the next add will also fail */
my_init_dynamic_array(&file_ptrs, sizeof(BUFFPEK), 16, 16);
max_elements= max_in_memory_size / ALIGN_SIZE(sizeof(TREE_ELEMENT)+size);