~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/log/log0log.cc

  • Committer: Monty Taylor
  • Date: 2011-02-12 21:49:59 UTC
  • mto: (2165.1.1 build)
  • mto: This revision was merged to the branch mainline in revision 2166.
  • Revision ID: mordred@inaugust.com-20110212214959-bve8sh4hu761y48m
Updated the windows build to be able to build from the command line and not to show warnings on strncpy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
49
49
#include "trx0sys.h"
50
50
#include "trx0trx.h"
51
51
 
52
 
#include <drizzled/errmsg_print.h>
53
 
 
54
52
/*
55
53
General philosophy of InnoDB redo-logs:
56
54
 
3236
3234
        ut_a(lsn == log_sys->lsn);
3237
3235
 
3238
3236
        if (lsn < srv_start_lsn) {
3239
 
          drizzled::errmsg_printf(drizzled::error::ERROR,
3240
 
                                  "InnoDB: Error: log sequence number at shutdown %"PRIu64" is lower than at startup %"PRIu64"!",
3241
 
                                  lsn, srv_start_lsn);
 
3237
                fprintf(stderr,
 
3238
                        "InnoDB: Error: log sequence number"
 
3239
                        " at shutdown %"PRIu64"\n"
 
3240
                        "InnoDB: is lower than at startup %"PRIu64"!\n",
 
3241
                        lsn, srv_start_lsn);
3242
3242
        }
3243
3243
 
3244
3244
        srv_shutdown_lsn = lsn;