~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/innobase/handler/win_delay_loader.cc

  • Committer: Mark Atwood
  • Date: 2009-01-05 04:37:22 UTC
  • mto: (758.1.1 devel)
  • mto: This revision was merged to the branch mainline in revision 759.
  • Revision ID: me@mark.atwood.name-20090105043722-03l4mzcxi4yjjjih
replace sql_print_error etc with errmsg_print

Show diffs side-by-side

added added

removed removed

Lines of Context:
478
478
#endif
479
479
                        if (wdl_init == TRUE) {
480
480
 
481
 
                                sql_print_error(
 
481
                                errmsg_printf(ERRMSG_LVL_ERROR, 
482
482
                                        "InnoDB: the procedure pointer of %s"
483
483
                                        " is not found.",
484
484
                                        import_proc);
540
540
#endif
541
541
                        if (wdl_init == TRUE) {
542
542
 
543
 
                                sql_print_error(
 
543
                                errmsg_printf(ERRMSG_LVL_ERROR, 
544
544
                                        "InnoDB: the variable address of %s"
545
545
                                        " is not found.",
546
546
                                        import_variable);
718
718
        specified correctly. */
719
719
        if ((idd.grAttrs & dlattrRva) == 0) {
720
720
 
721
 
                sql_print_error("InnoDB: invalid parameter for delay loader.");
 
721
                errmsg_printf(ERRMSG_LVL_ERROR, "InnoDB: invalid parameter for delay loader.");
722
722
                return(0);
723
723
        }
724
724
 
755
755
 
756
756
                dli.dwLastError = ::GetLastError();
757
757
 
758
 
                sql_print_error(
 
758
                errmsg_printf(ERRMSG_LVL_ERROR, 
759
759
                        "InnoDB: failed to load mysqld.map with error %d.",
760
760
                        dli.dwLastError);
761
761