From: Date: January 23 2007 12:58pm Subject: bk commit into 5.0 tree (pekka:1.2368) BUG#25562 List-Archive: http://lists.mysql.com/commits/18613 X-Bug: 25562 Message-Id: <20070123115820.3E5C51B4B7@clam.ndb.mysql.com> Below is the list of changes that have just been committed into a local 5.0 repository of pekka. When pekka does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2007-01-23 12:58:10+01:00, pekka@stripped +1 -0 ndb - bug#25562 use byte-size max_data_length() when setting blob part size sql/ha_ndbcluster.cc@stripped, 2007-01-23 12:56:51+01:00, pekka@stripped +21 -11 bug#25562 use byte-size max_data_length() when setting blob part size # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: pekka # Host: clam.(none) # Root: /export/space/pekka/ndb/version/my50-ndb --- 1.296/sql/ha_ndbcluster.cc 2007-01-23 01:11:53 +01:00 +++ 1.297/sql/ha_ndbcluster.cc 2007-01-23 12:56:51 +01:00 @@ -4185,19 +4185,29 @@ col.setType(NDBCOL::Text); col.setCharset(cs); } - // Use "<=" even if "<" is the exact condition - if (field->max_length() <= (1 << 8)) - goto mysql_type_tiny_blob; - else if (field->max_length() <= (1 << 16)) { - col.setInlineSize(256); - col.setPartSize(2000); - col.setStripeSize(16); + Field_blob *field_blob= (Field_blob *)field; + /* + * max_data_length is 2^8-1, 2^16-1, 2^24-1 for tiny, blob, medium. + * Tinyblob gets no blob parts. The other cases are just a crude + * way to control part size and striping. + * + * In mysql blob(256) is promoted to blob(65535) so it does not + * in fact fit "inline" in NDB. + */ + if (field_blob->max_data_length() < (1 << 8)) + goto mysql_type_tiny_blob; + else if (field_blob->max_data_length() < (1 << 16)) + { + col.setInlineSize(256); + col.setPartSize(2000); + col.setStripeSize(16); + } + else if (field_blob->max_data_length() < (1 << 24)) + goto mysql_type_medium_blob; + else + goto mysql_type_long_blob; } - else if (field->max_length() <= (1 << 24)) - goto mysql_type_medium_blob; - else - goto mysql_type_long_blob; break; mysql_type_medium_blob: case MYSQL_TYPE_MEDIUM_BLOB: