summaryrefslogtreecommitdiff
path: root/sql/ha_blackhole.cc
diff options
context:
space:
mode:
authorunknown <stewart@mysql.com>2006-01-28 16:16:23 +1300
committerunknown <stewart@mysql.com>2006-01-28 16:16:23 +1300
commitf57e0d8ec4285ef3d5d0396c0ccd40b174cdce34 (patch)
treedb3b08ac378c8f8f2d54b98ef7b24a86f4dac738 /sql/ha_blackhole.cc
parent43f6f1b9d5175c6f8d46e9a859219e7c520bf62c (diff)
downloadmariadb-git-f57e0d8ec4285ef3d5d0396c0ccd40b174cdce34.tar.gz
WL#1359 NDB: Add table handler and table information available from SQL commands
add a FILES table that allows the user to run SQL queries on the files used to store their tables. Currently supports NDB sql/ha_berkeley.cc: Add fill_files_table sql/ha_blackhole.cc: Add fill_files_table sql/ha_federated.cc: Add fill_files_table sql/ha_heap.cc: Add fill_files_table sql/ha_innodb.cc: Add fill_files_table sql/ha_myisam.cc: Add fill_files_table sql/ha_myisammrg.cc: Add fill_files_table sql/ha_ndbcluster.cc: Add fill_files_table and implementation for NDB disk data DATAFILES and UNDOFILES sql/ha_partition.cc: Add fill_files_table sql/handler.h: Add fill_files_table to handlerton sql/log.cc: Add fill_files_table sql/mysql_priv.h: Add schema_table_store_record as a function that handlertons can call to store rows in INFORMATION_SCHEMA.FILES sql/sql_show.cc: implement the INFORMATION_SCHEMA.FILES table. Eventually this may move to PERFORMANCE_SCHEMA. It currently exists to allow users to query disk usage for NDB disk data tables. storage/csv/ha_tina.cc: Add fill_files_table
Diffstat (limited to 'sql/ha_blackhole.cc')
-rw-r--r--sql/ha_blackhole.cc1
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/ha_blackhole.cc b/sql/ha_blackhole.cc
index 71b4ef3c9dc..42c785e2003 100644
--- a/sql/ha_blackhole.cc
+++ b/sql/ha_blackhole.cc
@@ -60,6 +60,7 @@ handlerton blackhole_hton= {
NULL, /* Partition flags */
NULL, /* Alter table flags */
NULL, /* Alter Tablespace */
+ NULL, /* Fill FILES table */
HTON_CAN_RECREATE
};