diff options
author | unknown <monty@mysql.com> | 2003-12-26 12:32:02 +0200 |
---|---|---|
committer | unknown <monty@mysql.com> | 2003-12-26 12:32:02 +0200 |
commit | 3f4d396dc33a68252f8db838d14192186f4ce342 (patch) | |
tree | 78482c64b64f7c0b2c63eaa6e676af2c43951f91 /sql/slave.cc | |
parent | 738469384e9f61568aa194e82ddf4e3f2e3d3d37 (diff) | |
download | mariadb-git-3f4d396dc33a68252f8db838d14192186f4ce342.tar.gz |
Fixed bug in table level privilege GRANT handling. (Bug #2178)
Portability fixes
mysql-test/r/rpl_until.result:
Portability fix
mysql-test/t/rpl_until.test:
Portability fix
sql/slave.cc:
Write UNTIL position to logs (for debugging)
sql/slave.h:
Write UNTIL position to logs (for debugging)
sql/sql_acl.cc:
Fixed bug in table level privilege GRANT handling. (Bug #2178)
Diffstat (limited to 'sql/slave.cc')
-rw-r--r-- | sql/slave.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/slave.cc b/sql/slave.cc index d2a7d397fa7..36d8975a127 100644 --- a/sql/slave.cc +++ b/sql/slave.cc @@ -2682,7 +2682,7 @@ static int exec_relay_log_event(THD* thd, RELAY_LOG_INFO* rli) rli->is_until_satisfied()) { sql_print_error("Slave SQL thread stopped because it reached its" - " UNTIL position"); + " UNTIL position %ld", (long) rli->until_pos()); /* Setting abort_slave flag because we do not want additional message about error in query execution to be printed. |