diff options
author | Michael Widenius <monty@mariadb.org> | 2019-10-21 18:41:58 +0300 |
---|---|---|
committer | Michael Widenius <monty@mariadb.org> | 2019-10-21 18:41:58 +0300 |
commit | 716d396bb3b4814de3c00c46f98317c45a33551e (patch) | |
tree | da5fc3bf22e0f7441a4289cf0a42370aef17b897 /sql/sql_lex.h | |
parent | 06d2e1d828140d887adb68b05c85d5107baf816c (diff) | |
download | mariadb-git-716d396bb3b4814de3c00c46f98317c45a33551e.tar.gz |
Remove \n from DBUG_PRINT statements
Diffstat (limited to 'sql/sql_lex.h')
-rw-r--r-- | sql/sql_lex.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_lex.h b/sql/sql_lex.h index 03e73e23d3d..87eea6c0a8b 100644 --- a/sql/sql_lex.h +++ b/sql/sql_lex.h @@ -2077,7 +2077,7 @@ public: unsafe= (binlog_unsafe_map[stmt_accessed_table_flag] & condition); #if !defined(DBUG_OFF) - DBUG_PRINT("LEX::is_mixed_stmt_unsafe", ("RESULT %02X %02X %02X\n", condition, + DBUG_PRINT("LEX::is_mixed_stmt_unsafe", ("RESULT %02X %02X %02X", condition, binlog_unsafe_map[stmt_accessed_table_flag], (binlog_unsafe_map[stmt_accessed_table_flag] & condition))); |