diff options
Diffstat (limited to 'sql/item_timefunc.cc')
-rw-r--r-- | sql/item_timefunc.cc | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/sql/item_timefunc.cc b/sql/item_timefunc.cc index 2b1bb9cae0e..9c29b594621 100644 --- a/sql/item_timefunc.cc +++ b/sql/item_timefunc.cc @@ -1123,3 +1123,13 @@ longlong Item_extract::val_int() } return 0; // Impossible } + + +void Item_typecast::print(String *str) +{ + str->append("CASE("); + args[0]->print(str); + str->append(" AS "); + str->append(func_name()); + str->append(')'); +} |