Commit 872bb1fa authored by unknown's avatar unknown

wl#2126 ndb blobs can't be batched


sql/ha_ndbcluster.cc:
  blobs can't be batched
parent c2ec05d1
......@@ -4552,6 +4552,19 @@ ha_ndbcluster::read_multi_range_first(key_multi_range **found_range_p,
ulong reclength = table->reclength;
NdbOperation* op;
if(uses_blob_value(m_retrieve_all_fields))
{
/**
* blobs can't be batched currently
*/
m_disable_multi_read= true;
return handler::read_multi_range_first(found_range_p,
ranges,
range_count,
sorted,
buffer);
}
switch(index_type){
case UNIQUE_INDEX:
case PRIMARY_KEY_INDEX:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment