MSSQL: Add support for functionality MERGE output clause (#1790)

This commit is contained in:
DilovanCelik 2025-04-05 18:37:28 +00:00 committed by GitHub
parent 3ed4ad9c66
commit 610096cad8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 109 additions and 16 deletions

View file

@ -395,5 +395,5 @@ fn test_parse_nested_quoted_identifier() {
#[test]
fn parse_extract_single_quotes() {
let sql = "SELECT EXTRACT('month' FROM my_timestamp) FROM my_table";
redshift().verified_stmt(&sql);
redshift().verified_stmt(sql);
}