MCPcopy Create free account
hub / github.com/MariaDB/server / push_warning_printf

Function push_warning_printf

sql/sql_error.cc:786–797  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

784*/
785
786void 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/*

Callers 15

constructMethod · 0.85
constructMethod · 0.85
insert_elementMethod · 0.85
dbug_print_defsFunction · 0.85
create_serverFunction · 0.85
fix_length_and_decMethod · 0.85
prepare_comparatorsMethod · 0.85
pcre_exec_warnMethod · 0.85
date_add_intervalFunction · 0.85

Calls 1

push_warning_vprintfFunction · 0.85

Tested by

no test coverage detected