Commit a59351e5 authored by unknown's avatar unknown
Browse files

Makefile.am:

  Distribute "handlerton-win.cc"
mysqld.cc:
  Corrected word lenght for some innobase
  configuration variables
Makefile.am:
  Added Visual Studio 7 project file to EXTRA_DIST
ha_partition.cc, sql_partition.cc:
  Changed include to use "..." for Windows
handlerton-win.cc:
  Handle engine include/exclude with defines for Windows
  new file


sql/handlerton-win.cc:
  Handle engine include/exclude with defines for Windows
sql/sql_partition.cc:
  Changed include to use "..." for Windows
sql/ha_partition.cc:
  Changed include to use "..." for Windows
extra/yassl/Makefile.am:
  Added Visual Studio 7 project file to EXTRA_DIST
extra/yassl/taocrypt/Makefile.am:
  Added Visual Studio 7 project file to EXTRA_DIST
sql/mysqld.cc:
  Corrected word lenght for some innobase
  configuration variables
sql/Makefile.am:
  Distribute "handlerton-win.cc"
parent 8280d204
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
SUBDIRS = taocrypt src
EXTRA_DIST = yassl.dsp yassl.dsw $(wildcard mySTL/*.hpp)
EXTRA_DIST = yassl.dsp yassl.dsw yassl.vcproj $(wildcard mySTL/*.hpp)
+1 −1
Original line number Diff line number Diff line
SUBDIRS = src
EXTRA_DIST = taocrypt.dsw taocrypt.dsp
EXTRA_DIST = taocrypt.dsw taocrypt.dsp taocrypt.vcproj
+1 −1
Original line number Diff line number Diff line
@@ -118,7 +118,7 @@ DEFS = -DMYSQL_SERVER \
			@DEFS@

BUILT_SOURCES =		sql_yacc.cc sql_yacc.h lex_hash.h
EXTRA_DIST =		udf_example.cc $(BUILT_SOURCES)
EXTRA_DIST =		udf_example.cc handlerton-win.cc $(BUILT_SOURCES)
DISTCLEANFILES =        lex_hash.h
AM_YFLAGS =		-d

+1 −1
Original line number Diff line number Diff line
@@ -52,7 +52,7 @@
#pragma implementation				// gcc: Class implementation
#endif

#include <mysql_priv.h>
#include "mysql_priv.h"

#include "ha_partition.h"

sql/handlerton-win.cc

0 → 100644
+72 −0
Original line number Diff line number Diff line
#include "mysql_priv.h"

extern handlerton heap_hton;
extern handlerton myisam_hton;
extern handlerton myisammrg_hton;
extern handlerton binlog_hton;
#ifdef WITH_INNOBASE_STORAGE_ENGINE
extern handlerton innobase_hton;
#endif
#ifdef WITH_BERKELEY_STORAGE_ENGINE
extern handlerton berkeley_hton;
#endif
#ifdef WITH_EXAMPLE_STORAGE_ENGINE
extern handlerton example_hton;
#endif
#ifdef WITH_ARCHIVE_STORAGE_ENGINE
extern handlerton archive_hton;
#endif
#ifdef WITH_CSV_STORAGE_ENGINE
extern handlerton tina_hton;
#endif
#ifdef WITH_BLACKHOLE_STORAGE_ENGINE
extern handlerton blackhole_hton;
#endif
#ifdef WITH_FEDERATED_STORAGE_ENGINE
extern handlerton federated_hton;
#endif
#ifdef WITH_NDBCLUSTER_STORAGE_ENGINE
extern handlerton ndbcluster_hton;
#endif
#ifdef WITH_PARTITION_STORAGE_ENGINE
extern handlerton partition_hton;
#endif

/*
  This array is used for processing compiled in engines.
*/
handlerton *sys_table_types[]=
{
  &heap_hton,
  &myisam_hton,
#ifdef WITH_INNOBASE_STORAGE_ENGINE
  &innobase_hton,
#endif
#ifdef WITH_BERKELEY_STORAGE_ENGINE
  &berkeley_hton,
#endif
#ifdef WITH_EXAMPLE_STORAGE_ENGINE
  &example_hton,
#endif
#ifdef WITH_ARCHIVE_STORAGE_ENGINE
  &archive_hton,
#endif
#ifdef WITH_CSV_STORAGE_ENGINE
  &tina_hton,
#endif
#ifdef WITH_BLACKHOLE_STORAGE_ENGINE
  &blackhole_hton,
#endif
#ifdef WITH_FEDERATED_STORAGE_ENGINE
  &federated_hton,
#endif
#ifdef WITH_NDBCLUSTER_STORAGE_ENGINE
  &ndbcluster_hton,
#endif
#ifdef WITH_PARTITION_STORAGE_ENGINE
  &partition_hton,
#endif
  &myisammrg_hton,
  &binlog_hton,
  NULL
};
Loading