2000-07-31 21:29:14 +02:00
|
|
|
/* Copyright (C) 2000 MySQL AB & MySQL Finland AB & TCX DataKonsult AB
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
2006-12-23 20:17:15 +01:00
|
|
|
the Free Software Foundation; version 2 of the License.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
2001-12-06 13:10:51 +01:00
|
|
|
|
2000-07-31 21:29:14 +02:00
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */
|
|
|
|
|
|
|
|
/* This file is included by all myisam-merge files */
|
|
|
|
|
|
|
|
#ifndef N_MAXKEY
|
|
|
|
#include "../myisam/myisamdef.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "myisammrg.h"
|
|
|
|
|
|
|
|
extern LIST *myrg_open_list;
|
|
|
|
|
|
|
|
#ifdef THREAD
|
|
|
|
extern pthread_mutex_t THR_LOCK_open;
|
|
|
|
#endif
|
2000-08-14 13:27:19 +02:00
|
|
|
|
|
|
|
int _myrg_init_queue(MYRG_INFO *info,int inx,enum ha_rkey_function search_flag);
|
2003-08-01 14:58:03 +02:00
|
|
|
int _myrg_mi_read_record(MI_INFO *info, byte *buf);
|
|
|
|
|