[#6994] Emulate COMMENT ON TABLE in MySQL

This commit is contained in:
lukaseder 2018-01-04 17:30:48 +01:00
parent 8a545cfab9
commit 59a81425ec

View File

@ -67,10 +67,10 @@ alterTableStatement = 'ALTER TABLE' [ 'IF EXISTS' ] tableName break
| ( 'SET' | 'DROP' ) 'NOT NULL'
| [ 'RENAME' ] 'TO' identifier
)
| 'COMMENT' [ '=' ] stringLiteral
| 'DROP' [ 'COLUMN' ] identifier [ 'CASCADE' | 'RESTRICT' ]
| 'DROP CONSTRAINT' constraintName
| 'RENAME' [ ( 'COLUMN' | 'INDEX' | 'CONSTRAINT' ) identifier ] 'TO' identifier
|
)
;