From c91e96258b6c127201397dd5309c4433655e63b2 Mon Sep 17 00:00:00 2001 From: Timothy Pearson Date: Wed, 11 Jan 2012 16:53:26 -0600 Subject: Apply a number of kexi patches This closes Bug 777 --- kexi/migration/mysql/mysqlmigrate.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'kexi/migration/mysql/mysqlmigrate.cpp') diff --git a/kexi/migration/mysql/mysqlmigrate.cpp b/kexi/migration/mysql/mysqlmigrate.cpp index 786712412..1025f1f3d 100644 --- a/kexi/migration/mysql/mysqlmigrate.cpp +++ b/kexi/migration/mysql/mysqlmigrate.cpp @@ -420,9 +420,9 @@ KexiDB::Field::Type MySQLMigrate::examineBlobField(const TQString& table, if(mysqlType.contains("blob", false) != 0) { // Doesn't matter how big it is, it's binary kexiType = KexiDB::Field::BLOB; - } else if(mysqlType.contains("text", false) != 0) { +/* } else if(mysqlType.contains("text", false) != 0) { // All the TEXT types are too big for Kexi text. - kexiType = KexiDB::Field::BLOB; + kexiType = KexiDB::Field::BLOB;*/ } else if(fld->length < 200) { kexiType = KexiDB::Field::Text; } else { -- cgit v1.2.3