1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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
This commit is contained in:
unknown
2001-05-11 15:07:34 -06:00
parent 89d6e639ae
commit 1d56c0324e
4 changed files with 116 additions and 4 deletions

View File

@ -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*));