-
ndb_restore now supports conversion between
NULL
andNOT NULL
columns, as follows:To restore a
NULL
column asNOT NULL
, use the--lossy-conversions
option. The presence of anyNULL
rows in the column causes ndb_restore to raise an and exit.To restore a
NOT NULL
column asNULL
, use the--promote-attributes
option.
For more information, see the descriptions of the indicated ndb_restore options. (Bug #32702637)
Packaging: The
ndb-common
man page was removed, and the information it contained moved to other man pages. (Bug #32799519)-
NDB Cluster APIs: Added the
NDB_LE_EventBufferStatus3
log event type toNdb_logevent_type
in the MGM API. This is an extension of theNDB_LE_EventBufferStatus
type which handles total, maximum, and allocated bytes as 64-bit values.As part of this fix, the maximum value of the
ndb_eventbuffer_max_alloc
server system variable is increased to 9223372036854775807 (263 - 1).For more information, see The Ndb_logevent_type Type. (Bug #32381666)
-
Ndb_rep_tab_key
member variables were not null-terminated before being logged. (Bug #32841430)References: See also: Bug #32393245.
Some error messages printed by ndb_restore tried to access transactions that were already closed for error information, resulting in an unplanned exit. (Bug #32815725)
-
Returning an error while determining the number of partitions used by a
NDB
table caused the MySQL server to write Incorrect information intable
.frm file to its error log, despite the fact that the indicated file did not exist. This also led to problems with flooding of the error log when users attempted to openNDB
tables while the MySQL server was not actually connected toNDB
.We fix this by changing the function that determines the number of partitions to return 0 whenever
NDB
is not available, thus deferring any error detection until the MySQL server is once again connected toNDB
. (Bug #32713166) Using duplicate node IDs with
CREATE NODEGROUP
(for example,CREATE NODEGROUP 11, 11
) could lead to an unplanned shutdown of the cluster. Now when this command includes duplicate node IDs, it raises an error. (Bug #32701583)Improved the performance of queries against the
ndbinfo.cluster_locks
table, which could in some cases run quite slowly. (Bug #32655988)A
DELETE
statement whoseWHERE
clause referred to aBLOB
column was not executed correctly. (Bug #13881465)