~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to storage/myisam/mi_static.cc

  • Committer: Monty Taylor
  • Date: 2009-04-14 19:16:51 UTC
  • mto: (997.2.5 mordred)
  • mto: This revision was merged to the branch mainline in revision 994.
  • Revision ID: mordred@inaugust.com-20090414191651-ltbww6hpqks8k7qk
Clarified instructions in README.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
  a shared library
19
19
*/
20
20
 
21
 
#include "myisam_priv.h"
 
21
#include "myisamdef.h"
22
22
 
23
23
std::list<MI_INFO *> myisam_open_list;
24
24
unsigned char    myisam_file_magic[]=
26
26
unsigned char    myisam_pack_file_magic[]=
27
27
{ (unsigned char) 254, (unsigned char) 254,'\010', '\002', };
28
28
char * myisam_log_filename=(char*) "myisam.log";
29
 
int     myisam_log_file= -1;
 
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;
32
35
uint32_t myisam_concurrent_insert= 2;
 
36
my_off_t myisam_max_temp_length= MAX_FILE_SIZE;
33
37
uint32_t myisam_bulk_insert_tree_size=8192*1024;
34
38
uint32_t data_pointer_size=4;
35
39