diff options
author | unknown <tomas@poseidon.ndb.mysql.com> | 2006-05-19 17:34:50 +0200 |
---|---|---|
committer | unknown <tomas@poseidon.ndb.mysql.com> | 2006-05-19 17:34:50 +0200 |
commit | 4831c7e825fbd37bf14d2ded502e74d26eb119ae (patch) | |
tree | 231cbf14d681a0b379c11e966abc9e147849d812 /sql/ha_ndbcluster.h | |
parent | 6de02fcdebce8e1e2b71857c6589837af642d667 (diff) | |
download | mariadb-git-4831c7e825fbd37bf14d2ded502e74d26eb119ae.tar.gz |
Bug #19885 master1 crash in ndb_condition_pushdown test
- record structure wrongly deallocated during online alter on remote mysqld
- change so that ndb handler allocates the buffer itself, so it can be reused after alter
Diffstat (limited to 'sql/ha_ndbcluster.h')
-rw-r--r-- | sql/ha_ndbcluster.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/sql/ha_ndbcluster.h b/sql/ha_ndbcluster.h index f407cb0090f..78c9ec765bb 100644 --- a/sql/ha_ndbcluster.h +++ b/sql/ha_ndbcluster.h @@ -113,6 +113,7 @@ typedef struct st_ndbcluster_share { char *old_names; // for rename table TABLE_SHARE *table_share; TABLE *table; + byte *record[2]; // pointer to allocated records for receiving data NdbValue *ndb_value[2]; MY_BITMAP *subscriber_bitmap; #endif |