Comments - ALTER TABLE

5 years, 11 months ago Adrian Wiik

Tiny typo in the last line of this quote:

alter_specification:
    table_option ...
  | ADD [COLUMN] [IF NOT EXISTS] col_name column_definition
        [FIRST | AFTER col_name ]
  | ADD [COLUMN] [IF NOT EXISTS] (col_name column_definition,...)
  | ADD {INDEX|KEY} [F NOT EXISTS] [index_name]

Missing an I (i) where it says "[F NOT EXISTS]". Should be pretty self explanatory for users, but nevertheless it's good to have correct syntax in documentation.

 
5 years, 10 months ago Michael Widenius

Fixed some time ago. Thanks for the input!

 
Content reproduced on this site is the property of its respective owners, and this content is not reviewed in advance by MariaDB. The views, information and opinions expressed by this content do not necessarily represent those of MariaDB or any other party.