~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to plugin/innobase/include/fil0fil.h

  • Committer: Monty Taylor
  • Date: 2010-11-26 22:50:54 UTC
  • mfrom: (1953.1.6 build)
  • Revision ID: mordred@inaugust.com-20101126225054-sg90svw8579t5p3i
Stewart - InnoDB 1.1.1
Monty - Fixed some autoconf tests which were returning false positives.

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
#ifndef fil0fil_h
27
27
#define fil0fil_h
28
28
 
29
 
#include "univ.i"
30
 
#ifndef UNIV_HOTBACKUP
31
 
#include "sync0rw.h"
32
 
#endif /* !UNIV_HOTBACKUP */
33
29
#include "dict0types.h"
34
30
#include "ut0byte.h"
35
31
#include "os0file.h"
 
32
#ifndef UNIV_HOTBACKUP
 
33
#include "sync0rw.h"
 
34
#include "ibuf0types.h"
 
35
#endif /* !UNIV_HOTBACKUP */
36
36
 
37
37
/** When mysqld is run, the default directory "." is the mysqld datadir,
38
38
but in the MySQL Embedded Server Library and ibbackup it is not the default
506
506
ulint
507
507
fil_load_single_table_tablespaces(void);
508
508
/*===================================*/
509
 
/********************************************************************//**
510
 
If we need crash recovery, and we have called
511
 
fil_load_single_table_tablespaces() and dict_load_single_table_tablespaces(),
512
 
we can call this function to print an error message of orphaned .ibd files
513
 
for which there is not a data dictionary entry with a matching table name
514
 
and space id. */
515
 
UNIV_INTERN
516
 
void
517
 
fil_print_orphaned_tablespaces(void);
518
 
/*================================*/
519
509
/*******************************************************************//**
520
510
Returns TRUE if a single-table tablespace does not exist in the memory cache,
521
511
or is being deleted there.