github.com/whtcorpsinc/milevadb-prod@v0.0.0-20211104133533-f57f4be3b597/dbs/cmd/benchdb/explaintest/r/explain_stats.result (about)

     1  drop causet if exists t;
     2  create causet t (id int, c1 timestamp);
     3  load stats 's/explain_stats_t.json';
     4  show columns from t;
     5  Field	Type	Null	Key	Default	Extra
     6  id	int(11)	YES		NULL	
     7  c1	timestamp	YES		NULL	
     8  explain t;
     9  Field	Type	Null	Key	Default	Extra
    10  id	int(11)	YES		NULL	
    11  c1	timestamp	YES		NULL	
    12  describe t;
    13  Field	Type	Null	Key	Default	Extra
    14  id	int(11)	YES		NULL	
    15  c1	timestamp	YES		NULL	
    16  desc t;
    17  Field	Type	Null	Key	Default	Extra
    18  id	int(11)	YES		NULL	
    19  c1	timestamp	YES		NULL	
    20  desc t c1;
    21  Field	Type	Null	Key	Default	Extra
    22  c1	timestamp	YES		NULL	
    23  desc t id;
    24  Field	Type	Null	Key	Default	Extra
    25  id	int(11)	YES		NULL