Skip to content

Commit 5bb9ec9

Browse files
committed
Translate comments into English
1 parent 1c2828b commit 5bb9ec9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

src/Processor/ShowIndexProcessor.php

+7-7
Original file line numberDiff line numberDiff line change
@@ -44,23 +44,23 @@ public static function process(
4444
'Key_name' => $name,
4545
'Seq_in_index' => $i + 1,
4646
'Column_name' => $column,
47-
// Index には "direction" がない(CreateIndex の $cols にはある)ため null
47+
// because Index does not have "direction" (in the $cols of CreateIndex)
4848
'Collation' => null,
4949
/*
5050
* https://dev.mysql.com/doc/refman/8.0/en/analyze-table.html
51-
* ANALYZE TABLE が未実装のため null
51+
* because ANALYZE TABLE is not implemented
5252
*/
5353
'Cardinality' => null,
54-
// Index には "length" がない(CreateIndex の $cols にはある)ため null
54+
// because Index does not have "length" (in the $cols of CreateIndex)
5555
'Sub_part' => null,
56-
// PACK_KEYS が未実装のため null
56+
// because PACK_KEYS is not implemented
5757
'Packed' => null,
5858
'Null' => $table_definition->columns[$column]->isNullable ? 'YES' : '',
59-
// Index には $mode がない(CreateIndex にはある)ため null
59+
// because Index does not have $mode (in the CreateIndex)
6060
'Index_type' => null,
61-
// DISABLE KEYS 未実装のため ''
61+
// because DISABLE KEYS is not implemented
6262
'Comment' => '',
63-
// CREATE TABLE の INDEX COMMENT がスキップされているので ''
63+
// because INDEX COMMENT is skipped in CREATE TABLE
6464
'Index_comment' => ''
6565
];
6666
}

0 commit comments

Comments
 (0)