diff options
Diffstat (limited to 'sql/item_timefunc.h')
-rw-r--r-- | sql/item_timefunc.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/item_timefunc.h b/sql/item_timefunc.h index 5485f6c1..084fee85 100644 --- a/sql/item_timefunc.h +++ b/sql/item_timefunc.h @@ -462,6 +462,7 @@ public: static LEX_CSTRING name= {STRING_WITH_LEN("year") }; return name; } + enum Functype functype() const override { return YEAR_FUNC; } enum_monotonicity_info get_monotonicity_info() const override; longlong val_int_endpoint(bool left_endp, bool *incl_endp) override; bool fix_length_and_dec(THD *thd) override @@ -1342,6 +1343,7 @@ public: { print_cast_temporal(str, query_type); } + enum Functype functype() const override { return DATE_FUNC; } bool get_date(THD *thd, MYSQL_TIME *ltime, date_mode_t fuzzydate) override; bool fix_length_and_dec(THD *thd) override { @@ -2033,6 +2035,4 @@ public: return false; } }; - - #endif /* ITEM_TIMEFUNC_INCLUDED */ |