mi_static.c
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:2k
源码类别:

MySQL数据库

开发平台:

Visual C++

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