Merge branch 'QA_3_3'

This commit is contained in:
Marc Delisle
2010-04-29 12:31:10 -04:00
2 changed files with 2 additions and 1 deletions

View File

@@ -103,6 +103,7 @@ $Id$
- bug [tracking] Tracking report should obey MaxCharactersInDisplayedSQL
- bug [edit] Avoid selecting UNHEX function by default for a BLOB column for
which editing is protected
- bug #2994168 [structure] Show auto_increment in uppercase
3.3.2.0 (2010-04-13)
- patch #2969449 [core] Name for MERGE engine varies depending on the

View File

@@ -361,7 +361,7 @@ while ($row = PMA_DBI_fetch_assoc($fields_rs)) {
else {
echo '<i>' . $strNoneDefault . '</i>';
} ?></td>
<td nowrap="nowrap"><?php echo $row['Extra']; ?></td>
<td nowrap="nowrap"><?php echo strtoupper($row['Extra']); ?></td>
<td align="center">
<a href="sql.php?<?php echo $url_query; ?>&amp;sql_query=<?php echo urlencode('SELECT COUNT(*) AS ' . PMA_backquote($strRows) . ', ' . PMA_backquote($row['Field']) . ' FROM ' . PMA_backquote($table) . ' GROUP BY ' . PMA_backquote($row['Field']) . ' ORDER BY ' . PMA_backquote($row['Field'])); ?>">
<?php echo $titles['BrowseDistinctValues']; ?></a>