17
17
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
26
29
class Item_func_div :public Item_num_op
34
Item_func_div(Session *arg, Item *a,Item *b) :Item_num_op(a,b), session(arg) {}
31
35
int64_t int_op() { assert(0); return 0; }
33
37
my_decimal *decimal_op(my_decimal *);
34
38
const char *func_name() const { return "/"; }
35
39
void fix_length_and_dec();