diff options
author | Sergei Golubchik <serg@mariadb.org> | 2016-06-27 19:22:09 +0200 |
---|---|---|
committer | Sergei Golubchik <serg@mariadb.org> | 2016-06-30 11:43:02 +0200 |
commit | 0a056c9b5302c24ee4eaa9cc92bd6697125f94b7 (patch) | |
tree | 30576f580f31b6564d26340c61f36d8e350955de /sql/item_strfunc.h | |
parent | 1b4f0962c14b3c827553e2a470c82afc419f9352 (diff) | |
download | mariadb-git-0a056c9b5302c24ee4eaa9cc92bd6697125f94b7.tar.gz |
better ER_VIRTUAL_COLUMN_FUNCTION_IS_NOT_ALLOWED
Diffstat (limited to 'sql/item_strfunc.h')
-rw-r--r-- | sql/item_strfunc.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/item_strfunc.h b/sql/item_strfunc.h index 623f33b1eca..b0f5064a190 100644 --- a/sql/item_strfunc.h +++ b/sql/item_strfunc.h @@ -763,7 +763,7 @@ public: const char *func_name() const { return "binlog_gtid_pos"; } bool check_vcol_func_processor(void *arg) { - return mark_unsupported_function(func_name(), arg, VCOL_IMPOSSIBLE); + return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE); } }; @@ -923,7 +923,7 @@ public: } bool check_vcol_func_processor(void *arg) { - return mark_unsupported_function(func_name(), arg, VCOL_IMPOSSIBLE); + return mark_unsupported_function(func_name(), "()", arg, VCOL_IMPOSSIBLE); } }; @@ -1191,7 +1191,7 @@ public: String *val_str(String *); bool check_vcol_func_processor(void *arg) { - return mark_unsupported_function(func_name(), arg, VCOL_NON_DETERMINISTIC); + return mark_unsupported_function(func_name(), "()", arg, VCOL_NON_DETERMINISTIC); } }; |