summaryrefslogtreecommitdiff
path: root/sql/item_timefunc.h
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2017-08-26 00:32:43 +0200
committerSergei Golubchik <serg@mariadb.org>2017-09-18 10:12:23 +0200
commit8b1f145c82d5afce40c8c2745aae2997501112e7 (patch)
treebb8c1ed6a017e99f81e9711080dbd2319210b261 /sql/item_timefunc.h
parent3af191b7e1f5571683d09fe6cd96963b5cdb6ad4 (diff)
downloadmariadb-git-8b1f145c82d5afce40c8c2745aae2997501112e7.tar.gz
cleanup
Item_func_format::print() was redundant and other changes
Diffstat (limited to 'sql/item_timefunc.h')
-rw-r--r--sql/item_timefunc.h4
1 files changed, 1 insertions, 3 deletions
diff --git a/sql/item_timefunc.h b/sql/item_timefunc.h
index 77b596c9eba..b0a083bf24f 100644
--- a/sql/item_timefunc.h
+++ b/sql/item_timefunc.h
@@ -199,7 +199,6 @@ public:
}
bool check_vcol_func_processor(void *arg)
{
-
return mark_unsupported_function(func_name(), "()", arg, VCOL_SESSION_FUNC);
}
Item *get_copy(THD *thd, MEM_ROOT *mem_root)
@@ -693,8 +692,7 @@ public:
virtual void store_now_in_TIME(THD *thd, MYSQL_TIME *now_time)=0;
bool check_vcol_func_processor(void *arg)
{
- return mark_unsupported_function(func_name(), "()", arg,
- VCOL_TIME_FUNC);
+ return mark_unsupported_function(func_name(), "()", arg, VCOL_TIME_FUNC);
}
};