home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / myisam / mi_static.c < prev    next >
C/C++ Source or Header  |  2000-09-17  |  2KB  |  60 lines

  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. /*
  18.   Static variables for pisam library. All definied here for easy making of
  19.   a shared library
  20. */
  21.  
  22. #ifndef _global_h
  23. #include "myisamdef.h"
  24. #endif
  25.  
  26. LIST    *myisam_open_list=0;
  27. uchar    NEAR myisam_file_magic[]=
  28. { (uchar) 254, (uchar) 254,'\007', '\001', };
  29. uchar    NEAR myisam_pack_file_magic[]=
  30. { (uchar) 254, (uchar) 254,'\010', '\001', };
  31. my_string myisam_log_filename=(char*) "myisam.log";
  32. File    myisam_log_file= -1;
  33. uint    myisam_quick_table_bits=9;
  34. uint    myisam_block_size=MI_KEY_BLOCK_LENGTH;        /* Best by test */
  35. my_bool myisam_flush=0,myisam_delay_key_write=0;
  36. #if defined(THREAD) && !defined(DONT_USE_RW_LOCKS)
  37. my_bool myisam_concurrent_insert=1;
  38. #else
  39. my_bool myisam_concurrent_insert=0;
  40. #endif
  41. my_off_t myisam_max_extra_temp_length= MI_MAX_TEMP_LENGTH;
  42. my_off_t myisam_max_temp_length= MAX_FILE_SIZE;
  43.  
  44.  
  45. /* read_vec[] is used for converting between P_READ_KEY.. and SEARCH_ */
  46. /* Position is , == , >= , <= , > , < */
  47.  
  48. uint NEAR myisam_read_vec[]=
  49. {
  50.   SEARCH_FIND, SEARCH_FIND | SEARCH_BIGGER, SEARCH_FIND | SEARCH_SMALLER,
  51.   SEARCH_NO_FIND | SEARCH_BIGGER, SEARCH_NO_FIND | SEARCH_SMALLER,
  52.   SEARCH_FIND | SEARCH_PREFIX, SEARCH_LAST
  53. };
  54.  
  55. uint NEAR myisam_readnext_vec[]=
  56. {
  57.   SEARCH_BIGGER, SEARCH_BIGGER, SEARCH_SMALLER, SEARCH_BIGGER, SEARCH_SMALLER,
  58.   SEARCH_BIGGER, SEARCH_SMALLER
  59. };
  60.