home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 January / Chip_2001-01_cd1.bin / tema / mysql / mysql-3.23.28g-win-source.exe / isam / static.c < prev    next >
C/C++ Source or Header  |  2000-08-31  |  2KB  |  46 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 "isamdef.h"
  24. #endif
  25.  
  26. LIST    *nisam_open_list=0;
  27. uchar    NEAR nisam_file_magic[]=
  28. { (uchar) 254, (uchar) 254,'\005', '\002', };
  29. uchar    NEAR nisam_pack_file_magic[]=
  30. { (uchar) 254, (uchar) 254,'\006', '\001', };
  31. my_string    nisam_log_filename= (char*) "isam.log";
  32. File    nisam_log_file= -1;
  33. uint    nisam_quick_table_bits=9;
  34. uint    nisam_block_size=1024;            /* Best by test */
  35. my_bool nisam_flush=0;
  36.  
  37. /* read_vec[] is used for converting between P_READ_KEY.. and SEARCH_ */
  38. /* Position is , == , >= , <= , > , < */
  39.  
  40. uint NEAR nisam_read_vec[]=
  41. {
  42.   SEARCH_FIND, SEARCH_FIND | SEARCH_BIGGER, SEARCH_FIND | SEARCH_SMALLER,
  43.   SEARCH_NO_FIND | SEARCH_BIGGER, SEARCH_NO_FIND | SEARCH_SMALLER,
  44.   SEARCH_FIND, SEARCH_LAST
  45. };
  46.