diff options
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r-- | sql/item_strfunc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index 3c5bebbad66..7bc7723eec0 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -605,6 +605,8 @@ public: const char *mode_name() const { return "leading"; } Item *get_copy(THD *thd) { return get_item_copy<Item_func_ltrim>(thd, this); } + bool is_deterministic_func() + { return Item_args::has_deterministic_args(); } }; |