diff options
author | unknown <stewart@mysql.com> | 2006-01-28 16:16:23 +1300 |
---|---|---|
committer | unknown <stewart@mysql.com> | 2006-01-28 16:16:23 +1300 |
commit | f57e0d8ec4285ef3d5d0396c0ccd40b174cdce34 (patch) | |
tree | db3b08ac378c8f8f2d54b98ef7b24a86f4dac738 /sql/ha_blackhole.cc | |
parent | 43f6f1b9d5175c6f8d46e9a859219e7c520bf62c (diff) | |
download | mariadb-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.cc | 1 |
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 }; |