Bug #15369 CREATE TABLE page has incorrect syntax definition with partitioning
Submitted: 30 Nov 2005 23:09 Modified: 2 Dec 2005 14:19
Reporter: Sergey Petrunya Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Documentation Severity:S3 (Non-critical)
Version: OS:
Assigned to: Jon Stephens CPU Architecture:Any

[30 Nov 2005 23:09] Sergey Petrunya
Description:
The page 
http://dev.mysql.com/doc/refman/5.1/en/create-table.html
reads:

partition_options:
    PARTITION BY
           [LINEAR] HASH(expr)
        |  [LINEAR] KEY(column_list)
        |  RANGE(expr)
        |  LIST(column_list)
                ^^^^^^^^^ this doesn't seem to be true, there should be "LIST(expr)".

(or at least that's what I've collected from experimentation and reading sql/sql_yacc.yy, we need to check what is wrong - documentation or implementation)

How to repeat:
see above.
[2 Dec 2005 14:19] Jon Stephens
Thank you for your bug report. This issue has been addressed in the
documentation. The updated documentation will appear on our website
shortly, and will be included in the next release of the relevant
product(s).

Additional info:

Corrected info regarding use of VALUES IN clauses.