diff options
author | unknown <heikki@hundin.mysql.fi> | 2004-11-18 22:28:37 +0200 |
---|---|---|
committer | unknown <heikki@hundin.mysql.fi> | 2004-11-18 22:28:37 +0200 |
commit | 6aab88c9169960da307d39eb7b9977f215c63508 (patch) | |
tree | 12ec7faa40be18f1e6a36c7b72d0e0a96971d5d2 /innobase/include/fil0fil.h | |
parent | 75431a2e1678004b63d9119ac88df2dddd59b2e8 (diff) | |
download | mariadb-git-6aab88c9169960da307d39eb7b9977f215c63508.tar.gz |
fil0fil.h, fil0fil.c:
Fix bug introduced in 4.1.1: InnoDB no longer respected the data file max size given in :autoextend:max:
innobase/fil/fil0fil.c:
Fix bug introduced in 4.1.1: InnoDB no longer respected the data file max size given in :autoextend:max:
innobase/include/fil0fil.h:
Fix bug introduced in 4.1.1: InnoDB no longer respected the data file max size given in :autoextend:max:
Diffstat (limited to 'innobase/include/fil0fil.h')
-rw-r--r-- | innobase/include/fil0fil.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/innobase/include/fil0fil.h b/innobase/include/fil0fil.h index 5a5db77073a..43327aab9d2 100644 --- a/innobase/include/fil0fil.h +++ b/innobase/include/fil0fil.h @@ -478,7 +478,7 @@ fil_extend_space_to_desired_size( ulint* actual_size, /* out: size of the space after extension; if we ran out of disk space this may be lower than the desired size */ - ulint space_id, /* in: space id, must be != 0 */ + ulint space_id, /* in: space id */ ulint size_after_extend);/* in: desired size in pages after the extension; if the current space size is bigger than this already, the function does nothing */ |