diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-05-11 15:07:34 -0600 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-05-11 15:07:34 -0600 |
commit | 1d56c0324e21e0e1b92e46445a8896006cb9a8e8 (patch) | |
tree | c1011c976487f613ded4fa7db34dbff547084d18 /include/my_tree.h | |
parent | 89d6e639ae535600af4cf3eb7053aa9c4c905580 (diff) | |
download | mariadb-git-1d56c0324e21e0e1b92e46445a8896006cb9a8e8.tar.gz |
use tree for count(distinct) when possible
include/my_tree.h:
fixed typo in comment
mysys/tree.c:
fixed typo in comment
sql/item_sum.h:
use tree for count distinct when possible
Diffstat (limited to 'include/my_tree.h')
-rw-r--r-- | include/my_tree.h | 2 |
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*)); |