Commit ea979be6 authored by unknown's avatar unknown

Fix compilation bugs


Docs/manual.texi:
  Updated nodes
sql/ha_berkeley.cc:
  Don't count deletes
parent 22ad54ae
This diff is collapsed.
...@@ -1090,8 +1090,10 @@ int ha_berkeley::delete_row(const byte * record) ...@@ -1090,8 +1090,10 @@ int ha_berkeley::delete_row(const byte * record)
if (error != DB_LOCK_DEADLOCK) if (error != DB_LOCK_DEADLOCK)
break; break;
} }
#ifdef CANT_COUNT_DELETED_ROWS
if (!error) if (!error)
changed_rows--; changed_rows--;
#endif
DBUG_RETURN(error); DBUG_RETURN(error);
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment