File tree 1 file changed +7
-7
lines changed
1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -44,23 +44,23 @@ public static function process(
44
44
'Key_name ' => $ name ,
45
45
'Seq_in_index ' => $ i + 1 ,
46
46
'Column_name ' => $ column ,
47
- // Index には "direction" がない(CreateIndex の $cols にはある)ため null
47
+ // because Index does not have "direction" (in the $cols of CreateIndex)
48
48
'Collation ' => null ,
49
49
/*
50
50
* https://dev.mysql.com/doc/refman/8.0/en/analyze-table.html
51
- * ANALYZE TABLE が未実装のため null
51
+ * because ANALYZE TABLE is not implemented
52
52
*/
53
53
'Cardinality ' => null ,
54
- // Index には "length" がない(CreateIndex の $cols にはある)ため null
54
+ // because Index does not have "length" (in the $cols of CreateIndex)
55
55
'Sub_part ' => null ,
56
- // PACK_KEYS が未実装のため null
56
+ // because PACK_KEYS is not implemented
57
57
'Packed ' => null ,
58
58
'Null ' => $ table_definition ->columns [$ column ]->isNullable ? 'YES ' : '' ,
59
- // Index には $mode がない(CreateIndex にはある)ため null
59
+ // because Index does not have $mode (in the CreateIndex)
60
60
'Index_type ' => null ,
61
- // DISABLE KEYS 未実装のため ''
61
+ // because DISABLE KEYS is not implemented
62
62
'Comment ' => '' ,
63
- // CREATE TABLE の INDEX COMMENT がスキップされているので ''
63
+ // because INDEX COMMENT is skipped in CREATE TABLE
64
64
'Index_comment ' => ''
65
65
];
66
66
}
You can’t perform that action at this time.
0 commit comments