summaryrefslogtreecommitdiff
path: root/storage/ndb/src/common
diff options
context:
space:
mode:
authorunknown <tomas@whalegate.ndb.mysql.com>2007-03-30 11:37:21 +0200
committerunknown <tomas@whalegate.ndb.mysql.com>2007-03-30 11:37:21 +0200
commit8a59133c7249903baca6a4338af11cfd74d5f340 (patch)
treeca2087b818f8cbdced39e102bd220977fab61682 /storage/ndb/src/common
parentdb2236be8bb415fca19430b1503fc5c18b4d3e4a (diff)
downloadmariadb-git-8a59133c7249903baca6a4338af11cfd74d5f340.tar.gz
5.1.17 not compatible with 5.1.18 because of change in var page reference size
Diffstat (limited to 'storage/ndb/src/common')
-rw-r--r--storage/ndb/src/common/util/version.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/storage/ndb/src/common/util/version.c b/storage/ndb/src/common/util/version.c
index b2ebb87c144..f309a3d4ad5 100644
--- a/storage/ndb/src/common/util/version.c
+++ b/storage/ndb/src/common/util/version.c
@@ -91,7 +91,8 @@ void ndbSetOwnVersion() {}
#ifndef TEST_VERSION
struct NdbUpGradeCompatible ndbCompatibleTable_full[] = {
- { MAKE_VERSION(5,1,NDB_VERSION_BUILD), MAKE_VERSION(5,1,0), UG_Range},
+ { MAKE_VERSION(5,1,NDB_VERSION_BUILD), MAKE_VERSION(5,1,18), UG_Range},
+ { MAKE_VERSION(5,1,17), MAKE_VERSION(5,1,0), UG_Range},
{ MAKE_VERSION(5,0,NDB_VERSION_BUILD), MAKE_VERSION(5,0,12), UG_Range},
{ MAKE_VERSION(5,0,11), MAKE_VERSION(5,0,2), UG_Range},
{ MAKE_VERSION(4,1,NDB_VERSION_BUILD), MAKE_VERSION(4,1,15), UG_Range },