diff options
author | monty@mysql.com <> | 2004-04-06 12:13:43 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-04-06 12:13:43 +0300 |
commit | 49330f61da8692711cb848e1d232cefe2795cf60 (patch) | |
tree | 509557fea33580a9b087dce685c789de3664b19e /myisam/mi_write.c | |
parent | 03caa47acba6cf3f85e99459e5a972a00a90af47 (diff) | |
download | mariadb-git-49330f61da8692711cb848e1d232cefe2795cf60.tar.gz |
Fixed warnings from valgrind (not a bug)
Don't add -debug to server version if MYSQL_SERVER_PREFIX is used
Indentation cleanups
Diffstat (limited to 'myisam/mi_write.c')
-rw-r--r-- | myisam/mi_write.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/myisam/mi_write.c b/myisam/mi_write.c index 59819b40f96..c17f47fc1ae 100644 --- a/myisam/mi_write.c +++ b/myisam/mi_write.c @@ -917,7 +917,7 @@ int mi_init_bulk_insert(MI_INFO *info, ulong cache_size, ha_rows rows) DBUG_PRINT("enter",("cache_size: %lu", cache_size)); DBUG_ASSERT(!info->bulk_insert && - (!rows || rows >= MI_MIN_ROWS_TO_USE_BULK_INSERT)); + (!rows || rows >= MI_MIN_ROWS_TO_USE_BULK_INSERT)); for (i=total_keylength=num_keys=0 ; i < share->base.keys ; i++) { |