From 9439f01448c7ad22d94b0b0d79fbdf2e8f6be09f Mon Sep 17 00:00:00 2001 From: "mronstrom@mysql.com" <> Date: Mon, 23 Aug 2004 17:37:04 +0200 Subject: [PATCH] Correct number of system table attributes --- ndb/src/kernel/vm/Configuration.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ndb/src/kernel/vm/Configuration.cpp b/ndb/src/kernel/vm/Configuration.cpp index 9dad733b87b..afc9b6f30c3 100644 --- a/ndb/src/kernel/vm/Configuration.cpp +++ b/ndb/src/kernel/vm/Configuration.cpp @@ -510,7 +510,7 @@ Configuration::calcSizeAlt(ConfigValues * ownConfig){ noOfNodes = nodeNo; noOfTables+= 2; // Add System tables - noOfAttributes += 5; // Add System table attributes + noOfAttributes += 9; // Add System table attributes ConfigValues::Iterator it2(*ownConfig, db.m_config); it2.set(CFG_DB_NO_TABLES, noOfTables);