Merge branch 'QA_4_4'

This commit is contained in:
Madhura Jayaratne 2015-07-02 08:24:50 +05:30
commit eb6607bbd7
2 changed files with 2 additions and 1 deletions

View File

@ -76,6 +76,7 @@ phpMyAdmin - ChangeLog
- bug Missing selected/entered values when editing active options in visual query builder
- bug #4969 Autoload from prefs_storage not behaving properly
- bug #4972 Incorrect length computed for binary data
- bug Remove character set from create_tables_drizzle.sql
4.4.10.0 (2015-06-17)
- bug #4950 Issues in database selection for replication

View File

@ -272,7 +272,7 @@ CREATE TABLE IF NOT EXISTS `pma__savedsearches` (
UNIQUE KEY `u_savedsearches_username_dbname` (`username`,`db_name`,`search_name`)
)
COMMENT='Saved searches'
DEFAULT CHARACTER SET utf8 COLLATE utf8_bin;
COLLATE utf8_bin;
-- --------------------------------------------------------