1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

MDEV-5728: BINLOG_GTID_POS(..) does not return proper error unless mysql_store_result is called

Add a check for binlog open already during the parsing, so that
BINLOG_GTID_POS() can return the error early and not delay it
until execution.
This commit is contained in:
unknown
2014-02-27 08:21:41 +01:00
parent 1c9aa7ec42
commit 5fcb6d4096

View File

@@ -3197,6 +3197,13 @@ Create_func_binlog_gtid_pos Create_func_binlog_gtid_pos::s_singleton;
Item*
Create_func_binlog_gtid_pos::create_2_arg(THD *thd, Item *arg1, Item *arg2)
{
#ifdef HAVE_REPLICATION
if (!mysql_bin_log.is_open())
#endif
{
my_error(ER_NO_BINARY_LOGGING, MYF(0));
return NULL;
}
thd->lex->set_stmt_unsafe(LEX::BINLOG_STMT_UNSAFE_SYSTEM_FUNCTION);
return new (thd->mem_root) Item_func_binlog_gtid_pos(arg1, arg2);
}