Add support for IS [NOT] [form] NORMALIZED (#1655)

Co-authored-by: Alexander Beedie <alexander.beedie@adia.ae>
This commit is contained in:
Alexander Beedie 2025-01-17 13:59:47 +04:00 committed by GitHub
parent 3eeb9160ea
commit e9498d538a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
8 changed files with 185 additions and 17 deletions

View file

@ -2572,7 +2572,7 @@ fn parse_kill() {
}
#[test]
fn parse_table_colum_option_on_update() {
fn parse_table_column_option_on_update() {
let sql1 = "CREATE TABLE foo (`modification_time` DATETIME ON UPDATE CURRENT_TIMESTAMP())";
match mysql().verified_stmt(sql1) {
Statement::CreateTable(CreateTable { name, columns, .. }) => {