diff options
author | jcole@tetra.spaceapes.com <> | 2001-01-20 03:11:32 -0600 |
---|---|---|
committer | jcole@tetra.spaceapes.com <> | 2001-01-20 03:11:32 -0600 |
commit | 79b5316df597644afb39520d9ebef4af22d051eb (patch) | |
tree | 24f93b354e5927b3db61f135b6e2d7d0fdcf1c34 /Docs/manual.texi | |
parent | 634ba86ad7b781b62cbfc6545baa369145e1b37e (diff) | |
download | mariadb-git-79b5316df597644afb39520d9ebef4af22d051eb.tar.gz |
Default table type explained.
Diffstat (limited to 'Docs/manual.texi')
-rw-r--r-- | Docs/manual.texi | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Docs/manual.texi b/Docs/manual.texi index 5e458bf3fa0..64d8626d2c0 100644 --- a/Docs/manual.texi +++ b/Docs/manual.texi @@ -17933,6 +17933,12 @@ The different table types are: @end multitable @xref{Table types}. +If a table type is specified, and that particular type is not available, +@strong{MySQL} will choose the closest table type to the one that you have +specified. For example, if @code{TYPE=BDB} is specified, and that distribution +of @strong{MySQL} does not support @code{BDB} tables, the table will be created +as @code{MyISAM} instead. + The other table options are used to optimize the behavior of the table. In most cases, you don't have to specify any of them. The options work for all table types, if not otherwise indicated: |