mi_static.c
上传用户:tsgydb
上传日期:2007-04-14
资源大小:10674k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
  2.    
  3.    This program is free software; you can redistribute it and/or modify
  4.    it under the terms of the GNU General Public License as published by
  5.    the Free Software Foundation; either version 2 of the License, or
  6.    (at your option) any later version.
  7.    
  8.    This program is distributed in the hope that it will be useful,
  9.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  10.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  11.    GNU General Public License for more details.
  12.    
  13.    You should have received a copy of the GNU General Public License
  14.    along with this program; if not, write to the Free Software
  15.    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA */
  16. /*
  17.   Static variables for pisam library. All definied here for easy making of
  18.   a shared library
  19. */
  20. #ifndef _global_h
  21. #include "myisamdef.h"
  22. #endif
  23. LIST *myisam_open_list=0;
  24. uchar NEAR myisam_file_magic[]=
  25. { (uchar) 254, (uchar) 254,'07', '01', };
  26. uchar NEAR myisam_pack_file_magic[]=
  27. { (uchar) 254, (uchar) 254,'10', '01', };
  28. my_string myisam_log_filename=(char*) "myisam.log";
  29. File myisam_log_file= -1;
  30. uint myisam_quick_table_bits=9;
  31. uint myisam_block_size=MI_KEY_BLOCK_LENGTH; /* Best by test */
  32. my_bool myisam_flush=0,myisam_delay_key_write=0;
  33. #if defined(THREAD) && !defined(DONT_USE_RW_LOCKS)
  34. my_bool myisam_concurrent_insert=1;
  35. #else
  36. my_bool myisam_concurrent_insert=0;
  37. #endif
  38. my_off_t myisam_max_extra_temp_length= MI_MAX_TEMP_LENGTH;
  39. my_off_t myisam_max_temp_length= MAX_FILE_SIZE;
  40. /* read_vec[] is used for converting between P_READ_KEY.. and SEARCH_ */
  41. /* Position is , == , >= , <= , > , < */
  42. uint NEAR myisam_read_vec[]=
  43. {
  44.   SEARCH_FIND, SEARCH_FIND | SEARCH_BIGGER, SEARCH_FIND | SEARCH_SMALLER,
  45.   SEARCH_NO_FIND | SEARCH_BIGGER, SEARCH_NO_FIND | SEARCH_SMALLER,
  46.   SEARCH_FIND | SEARCH_PREFIX, SEARCH_LAST
  47. };
  48. uint NEAR myisam_readnext_vec[]=
  49. {
  50.   SEARCH_BIGGER, SEARCH_BIGGER, SEARCH_SMALLER, SEARCH_BIGGER, SEARCH_SMALLER,
  51.   SEARCH_BIGGER, SEARCH_SMALLER
  52. };