~drizzle-trunk/drizzle/development

1
2
3
4
5
6
7
flush tables;
SHOW TABLE STATUS like 't1';
Name	Engine	Version	Row_format	Rows	Avg_row_length	Data_length	Max_data_length	Index_length	Data_free	Auto_increment	Create_time	Update_time	Check_time	Collation	Checksum	Create_options	Comment
t1		0	DEFAULT	0	#	#	#	#	0	0	0	0	0		0		
show create table t1;
ERROR HY000: Incorrect information in file: './test/t1'
drop table if exists t1;