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

MySQL数据库

开发平台:

Visual C++

  1. /* Copyright (C) 2005 MySQL 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. #ifdef USE_PRAGMA_IMPLEMENTATION
  14. #pragma implementation // gcc: Class implementation
  15. #endif
  16. #include "mysql_priv.h"
  17. #ifdef HAVE_BLACKHOLE_DB
  18. #include "ha_blackhole.h"
  19. const char **ha_blackhole::bas_ext() const
  20.   static const char *ext[]= { NullS }; 
  21.   return ext; 
  22. }
  23. int ha_blackhole::open(const char *name, int mode, uint test_if_locked)
  24. {
  25.   DBUG_ENTER("ha_blackhole::open");
  26.   thr_lock_init(&thr_lock);
  27.   thr_lock_data_init(&thr_lock,&lock,NULL);
  28.   DBUG_RETURN(0);
  29. }
  30. int ha_blackhole::close(void)
  31. {
  32.   DBUG_ENTER("ha_blackhole::close");
  33.   thr_lock_delete(&thr_lock);
  34.   DBUG_RETURN(0);
  35. }
  36. int ha_blackhole::create(const char *name, TABLE *table_arg,
  37.                          HA_CREATE_INFO *create_info)
  38. {
  39.   DBUG_ENTER("ha_blackhole::create");
  40.   DBUG_RETURN(0);
  41. }
  42. const char *ha_blackhole::index_type(uint key_number)
  43. {
  44.   DBUG_ENTER("ha_blackhole::index_type");
  45.   DBUG_RETURN((table->key_info[key_number].flags & HA_FULLTEXT) ? 
  46.               "FULLTEXT" :
  47.               (table->key_info[key_number].flags & HA_SPATIAL) ?
  48.               "SPATIAL" :
  49.               (table->key_info[key_number].algorithm == HA_KEY_ALG_RTREE) ?
  50.               "RTREE" :
  51.               "BTREE");
  52. }
  53. int ha_blackhole::write_row(byte * buf)
  54. {
  55.   DBUG_ENTER("ha_blackhole::write_row");
  56.   DBUG_RETURN(0);
  57. }
  58. int ha_blackhole::rnd_init(bool scan)
  59. {
  60.   DBUG_ENTER("ha_blackhole::rnd_init");
  61.   DBUG_RETURN(0);
  62. }
  63. int ha_blackhole::rnd_next(byte *buf)
  64. {
  65.   DBUG_ENTER("ha_blackhole::rnd_next");
  66.   DBUG_RETURN(HA_ERR_END_OF_FILE);
  67. }
  68. int ha_blackhole::rnd_pos(byte * buf, byte *pos)
  69. {
  70.   DBUG_ENTER("ha_blackhole::rnd_pos");
  71.   DBUG_ASSERT(0);
  72.   DBUG_RETURN(0);
  73. }
  74. void ha_blackhole::position(const byte *record)
  75. {
  76.   DBUG_ENTER("ha_blackhole::position");
  77.   DBUG_ASSERT(0);
  78.   DBUG_VOID_RETURN;
  79. }
  80. void ha_blackhole::info(uint flag)
  81. {
  82.   DBUG_ENTER("ha_blackhole::info");
  83.   records= 0;
  84.   deleted= 0;
  85.   errkey= 0;
  86.   mean_rec_length= 0;
  87.   data_file_length= 0;
  88.   index_file_length= 0;
  89.   max_data_file_length= 0;
  90.   delete_length= 0;
  91.   if (flag & HA_STATUS_AUTO)
  92.     auto_increment_value= 1;
  93.   DBUG_VOID_RETURN;
  94. }
  95. int ha_blackhole::external_lock(THD *thd, int lock_type)
  96. {
  97.   DBUG_ENTER("ha_blackhole::external_lock");
  98.   DBUG_RETURN(0);
  99. }
  100. uint ha_blackhole::lock_count(void) const
  101. {
  102.   DBUG_ENTER("ha_blackhole::lock_count");
  103.   DBUG_RETURN(0);
  104. }
  105. THR_LOCK_DATA **ha_blackhole::store_lock(THD *thd,
  106.                                          THR_LOCK_DATA **to,
  107.                                          enum thr_lock_type lock_type)
  108. {
  109.   DBUG_ENTER("ha_blackhole::store_lock");
  110.   DBUG_RETURN(to);
  111. }
  112. int ha_blackhole::index_read(byte * buf, const byte * key,
  113.                              uint key_len, enum ha_rkey_function find_flag)
  114. {
  115.   DBUG_ENTER("ha_blackhole::index_read");
  116.   DBUG_RETURN(0);
  117. }
  118. int ha_blackhole::index_read_idx(byte * buf, uint idx, const byte * key,
  119.                                  uint key_len, enum ha_rkey_function find_flag)
  120. {
  121.   DBUG_ENTER("ha_blackhole::index_read_idx");
  122.   DBUG_RETURN(HA_ERR_END_OF_FILE);
  123. }
  124. int ha_blackhole::index_read_last(byte * buf, const byte * key, uint key_len)
  125. {
  126.   DBUG_ENTER("ha_blackhole::index_read_last");
  127.   DBUG_RETURN(HA_ERR_END_OF_FILE);
  128. }
  129. int ha_blackhole::index_next(byte * buf)
  130. {
  131.   DBUG_ENTER("ha_blackhole::index_next");
  132.   DBUG_RETURN(HA_ERR_END_OF_FILE);
  133. }
  134. int ha_blackhole::index_prev(byte * buf)
  135. {
  136.   DBUG_ENTER("ha_blackhole::index_prev");
  137.   DBUG_RETURN(HA_ERR_END_OF_FILE);
  138. }
  139. int ha_blackhole::index_first(byte * buf)
  140. {
  141.   DBUG_ENTER("ha_blackhole::index_first");
  142.   DBUG_RETURN(HA_ERR_END_OF_FILE);
  143. }
  144. int ha_blackhole::index_last(byte * buf)
  145. {
  146.   DBUG_ENTER("ha_blackhole::index_last");
  147.   DBUG_RETURN(HA_ERR_END_OF_FILE);
  148. }
  149. #endif /* HAVE_BLACKHOLE_DB */