diff options
author | mskold@mysql.com <> | 2005-04-13 12:42:23 +0200 |
---|---|---|
committer | mskold@mysql.com <> | 2005-04-13 12:42:23 +0200 |
commit | f5855f2d5734b4297aa568905ba96ae42f8c8334 (patch) | |
tree | 0224f76d32d84b634e8b9d1f689a2161881682e9 /sql/mysqld.cc | |
parent | f32fe9c154adbd169407c0bf3c11647dc7f0f7b8 (diff) | |
download | mariadb-git-f5855f2d5734b4297aa568905ba96ae42f8c8334.tar.gz |
Fix for bug#9813: Test 'ndb_basic': Autoincrement fails in 64 bit
Diffstat (limited to 'sql/mysqld.cc')
-rw-r--r-- | sql/mysqld.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/mysqld.cc b/sql/mysqld.cc index 0590333a20f..ade747ac180 100644 --- a/sql/mysqld.cc +++ b/sql/mysqld.cc @@ -4548,7 +4548,7 @@ Disable with --skip-ndbcluster (will save memory).", "Specify number of autoincrement values that are prefetched.", (gptr*) &global_system_variables.ndb_autoincrement_prefetch_sz, (gptr*) &global_system_variables.ndb_autoincrement_prefetch_sz, - 0, GET_INT, REQUIRED_ARG, 32, 1, 256, 0, 0, 0}, + 0, GET_ULONG, REQUIRED_ARG, 32, 1, 256, 0, 0, 0}, {"ndb-force-send", OPT_NDB_FORCE_SEND, "Force send of buffers to ndb immediately without waiting for " "other threads.", |