Support parsing empty map literal syntax for DuckDB and Genric (#1361)

This commit is contained in:
Jax Liu 2024-08-04 19:47:32 +08:00 committed by GitHub
parent d49acc67b1
commit 8f8c96f87f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 19 additions and 25 deletions

View file

@ -10282,6 +10282,8 @@ fn test_map_syntax() {
}),
},
);
check("MAP {}", Expr::Map(Map { entries: vec![] }));
}
#[test]