| 149 | |
| 150 | |
| 151 | void Item_func::print_args(String *str, uint from, enum_query_type query_type) |
| 152 | { |
| 153 | for (uint i=from ; i < arg_count ; i++) |
| 154 | { |
| 155 | if (i != from) |
| 156 | str->append(','); |
| 157 | args[i]->print(str, query_type); |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | |
| 162 | void Item_func::print_op(String *str, enum_query_type query_type) |