Commit edf2264a authored by Rich Prohaska's avatar Rich Prohaska

Tokutek/ft-engine#147 change tokudb_file_map column names

parent 88b6565e
create table tc (id int, x int, primary key(id), key(x)); create table tc (id int, x int, primary key(id), key(x));
select * from information_schema.tokudb_file_map; select dictionary_name from information_schema.tokudb_file_map;
dictionary_name internal_file_name database table dictionary dictionary_name
./test/ta-main ./_test_ta_main_8_17.tokudb test ta main ./test/ta-main
./test/ta-status ./_test_ta_status_7_17.tokudb test ta status ./test/ta-status
./test/tb-key-b ./_test_tb_key_b_e_17.tokudb test tb key-b ./test/tb-key-b
./test/tb-main ./_test_tb_main_d_17.tokudb test tb main ./test/tb-main
./test/tb-status ./_test_tb_status_c_17.tokudb test tb status ./test/tb-status
./test/tc-key-x ./_test_tc_key_x_12_3_19.tokudb test tc key-x ./test/tc-key-x
./test/tc-main ./_test_tc_main_12_2_19.tokudb test tc main ./test/tc-main
./test/tc-status ./_test_tc_status_12_1_19.tokudb test tc status ./test/tc-status
tokudb_meta ./tokudb_meta_3_17.tokudb tokudb_meta
drop table ta; drop table ta;
select dictionary_name from information_schema.tokudb_file_map; select dictionary_name from information_schema.tokudb_file_map;
dictionary_name dictionary_name
......
...@@ -34,7 +34,7 @@ EOF ...@@ -34,7 +34,7 @@ EOF
create table tc (id int, x int, primary key(id), key(x)); create table tc (id int, x int, primary key(id), key(x));
# check that the tokudb meta data gets dropped when the table is dropped # check that the tokudb meta data gets dropped when the table is dropped
select * from information_schema.tokudb_file_map; select dictionary_name from information_schema.tokudb_file_map;
drop table ta; drop table ta;
select dictionary_name from information_schema.tokudb_file_map; select dictionary_name from information_schema.tokudb_file_map;
drop table tb; drop table tb;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment