rfe #2956556 [interface] Allow to wrap enum values.
This commit is contained in:
@@ -115,6 +115,7 @@
|
|||||||
- [core] Force generating of new session on login
|
- [core] Force generating of new session on login
|
||||||
- rfe #1105678 [interface] Drop page-break-before as it is useless for smaller
|
- rfe #1105678 [interface] Drop page-break-before as it is useless for smaller
|
||||||
tables.
|
tables.
|
||||||
|
- rfe #2956556 [interface] Allow to wrap enum values.
|
||||||
|
|
||||||
3.3.8.0 (not yet released)
|
3.3.8.0 (not yet released)
|
||||||
- bug #3059311 [import] BIGINT field type added to table analysis
|
- bug #3059311 [import] BIGINT field type added to table analysis
|
||||||
|
@@ -245,7 +245,8 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
|
|||||||
$extracted_fieldspec = PMA_extractFieldSpec($row['Type']);
|
$extracted_fieldspec = PMA_extractFieldSpec($row['Type']);
|
||||||
|
|
||||||
if ('set' == $extracted_fieldspec['type'] || 'enum' == $extracted_fieldspec['type']) {
|
if ('set' == $extracted_fieldspec['type'] || 'enum' == $extracted_fieldspec['type']) {
|
||||||
$type = $extracted_fieldspec['type'] . '(' . $extracted_fieldspec['spec_in_brackets'] . ')';
|
$type = $extracted_fieldspec['type'] . '(' .
|
||||||
|
str_replace("','", "', '", $extracted_fieldspec['spec_in_brackets']) . ')';
|
||||||
|
|
||||||
// for the case ENUM('–','“')
|
// for the case ENUM('–','“')
|
||||||
$type = htmlspecialchars($type);
|
$type = htmlspecialchars($type);
|
||||||
|
Reference in New Issue
Block a user