| 154 | int bin_size; |
| 155 | public: |
| 156 | field_decimal(Item* a, select_analyse* b) :field_info(a,b) |
| 157 | { |
| 158 | bin_size= my_decimal_get_binary_size(a->max_length, a->decimals); |
| 159 | init_tree(&tree, 0, 0, bin_size, (qsort_cmp2)compare_decimal2, |
| 160 | 0, 0, (void *)&bin_size); |
| 161 | }; |
| 162 | |
| 163 | void add(); |
| 164 | void get_opt_type(String*, ha_rows); |
nothing calls this directly
no test coverage detected