~drizzle-pbxt/drizzle/drizzle-pbxt-2

« back to all changes in this revision

Viewing changes to plugin/myisam/mi_static.cc

  • Committer: Paul McCullagh
  • Date: 2009-11-10 14:18:39 UTC
  • mfrom: (1038.1.7 drizzle-pbxt-pre-merge)
  • Revision ID: paul.mccullagh@primebase.org-20091110141839-2j3k43b17ag6f605
Merged Drizzle trunk and PBXT 1.0.09

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  a shared library
19
19
*/
20
20
 
21
 
#include "myisamdef.h"
 
21
#include "myisam_priv.h"
22
22
 
23
23
std::list<MI_INFO *> myisam_open_list;
24
24
unsigned char    myisam_file_magic[]=
29
29
File    myisam_log_file= -1;
30
30
uint    myisam_quick_table_bits=9;
31
31
uint32_t myisam_block_size= MI_KEY_BLOCK_LENGTH;                /* Best by test */
32
 
bool myisam_flush= false;
33
 
bool myisam_delay_key_write= false;
34
 
bool myisam_single_user= false;
35
32
uint32_t myisam_concurrent_insert= 2;
36
 
my_off_t myisam_max_temp_length= MAX_FILE_SIZE;
37
33
uint32_t myisam_bulk_insert_tree_size=8192*1024;
38
34
uint32_t data_pointer_size=4;
39
35