bug #2975408 Data too long for column data_sql

This commit is contained in:
Marc Delisle
2010-04-26 07:41:36 -04:00
parent e9ee6cf1d1
commit 6393fff59d
2 changed files with 2 additions and 1 deletions

View File

@@ -22,6 +22,7 @@ $HeadURL: https://phpmyadmin.svn.sourceforge.net/svnroot/phpmyadmin/trunk/phpMyA
engine to Maria, thanks to Madhura Jayaratne. engine to Maria, thanks to Madhura Jayaratne.
- bug #2974067 [display] non-binary fields shown as hex - bug #2974067 [display] non-binary fields shown as hex
- bug #2983065 [operations] Error when changing from Maria to MyISAM engine - bug #2983065 [operations] Error when changing from Maria to MyISAM engine
- bug #2975408 [tracking] Data too long for column data_sql
3.3.2.0 (2010-04-13) 3.3.2.0 (2010-04-13)
- patch #2969449 [core] Name for MERGE engine varies depending on the - patch #2969449 [core] Name for MERGE engine varies depending on the

View File

@@ -185,7 +185,7 @@ CREATE TABLE IF NOT EXISTS `pma_tracking` (
`date_updated` datetime NOT NULL, `date_updated` datetime NOT NULL,
`schema_snapshot` text collate utf8_bin NOT NULL, `schema_snapshot` text collate utf8_bin NOT NULL,
`schema_sql` text collate utf8_bin, `schema_sql` text collate utf8_bin,
`data_sql` text collate utf8_bin, `data_sql` longtext collate utf8_bin,
`tracking` set('UPDATE','REPLACE','INSERT','DELETE','TRUNCATE','CREATE DATABASE','ALTER DATABASE','DROP DATABASE','CREATE TABLE','ALTER TABLE','RENAME TABLE','DROP TABLE','CREATE INDEX','DROP INDEX','CREATE VIEW','ALTER VIEW','DROP VIEW') collate utf8_bin default NULL, `tracking` set('UPDATE','REPLACE','INSERT','DELETE','TRUNCATE','CREATE DATABASE','ALTER DATABASE','DROP DATABASE','CREATE TABLE','ALTER TABLE','RENAME TABLE','DROP TABLE','CREATE INDEX','DROP INDEX','CREATE VIEW','ALTER VIEW','DROP VIEW') collate utf8_bin default NULL,
`tracking_active` int(1) unsigned NOT NULL default '1', `tracking_active` int(1) unsigned NOT NULL default '1',
PRIMARY KEY (`db_name`,`table_name`,`version`) PRIMARY KEY (`db_name`,`table_name`,`version`)