summaryrefslogtreecommitdiff
path: root/include/my_tree.h
diff options
context:
space:
mode:
authorsasha@mysql.sashanet.com <>2001-05-11 15:07:34 -0600
committersasha@mysql.sashanet.com <>2001-05-11 15:07:34 -0600
commitc706bf40f3723e4224844a52f632529fda3412ca (patch)
treec1011c976487f613ded4fa7db34dbff547084d18 /include/my_tree.h
parenta12117f0364761f89d6fdb015ece9ada2d1ce494 (diff)
downloadmariadb-git-c706bf40f3723e4224844a52f632529fda3412ca.tar.gz
use tree for count(distinct) when possible
Diffstat (limited to 'include/my_tree.h')
-rw-r--r--include/my_tree.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/my_tree.h b/include/my_tree.h
index c0950409588..d4d28644a39 100644
--- a/include/my_tree.h
+++ b/include/my_tree.h
@@ -57,7 +57,7 @@ typedef struct st_tree {
void (*free)(void *);
} TREE;
- /* Functions on hole tree */
+ /* Functions on whole tree */
void init_tree(TREE *tree,uint default_alloc_size, int element_size,
qsort_cmp2 compare, my_bool with_delete,
void (*free_element)(void*));