| 784 | */ |
| 785 | |
| 786 | void push_warning_printf(THD *thd, Sql_condition::enum_warning_level level, |
| 787 | uint code, const char *format, ...) |
| 788 | { |
| 789 | va_list args; |
| 790 | DBUG_ENTER("push_warning_printf"); |
| 791 | DBUG_PRINT("enter",("warning: %u", code)); |
| 792 | |
| 793 | va_start(args,format); |
| 794 | push_warning_vprintf(thd, level,code, format, args); |
| 795 | va_end(args); |
| 796 | DBUG_VOID_RETURN; |
| 797 | } |
| 798 | |
| 799 | |
| 800 | /* |
no test coverage detected