Commit cbe7f4da authored by unknown's avatar unknown

ha_ndbcluster_binlog.cc:

  ndb: fix compile error on solaris


sql/ha_ndbcluster_binlog.cc:
  ndb: fix compile error on solaris
parent c1c498ab
...@@ -1545,8 +1545,8 @@ ndb_handle_schema_change(THD *thd, Ndb *ndb, NdbEventOperation *pOp, ...@@ -1545,8 +1545,8 @@ ndb_handle_schema_change(THD *thd, Ndb *ndb, NdbEventOperation *pOp,
} }
// copy names as memory will be freed // copy names as memory will be freed
NdbAutoPtr<char> a1((char *)dbname= strdup(dbname)); NdbAutoPtr<char> a1((char *)(dbname= strdup(dbname)));
NdbAutoPtr<char> a2((char *)tabname= strdup(tabname)); NdbAutoPtr<char> a2((char *)(tabname= strdup(tabname)));
ndbcluster_binlog_close_table(thd, share); ndbcluster_binlog_close_table(thd, share);
TABLE_LIST table_list; TABLE_LIST table_list;
......
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