MSSQL: Add support for EXEC output and default keywords (#1940)

This commit is contained in:
Yoav Cohen 2025-07-14 10:19:28 +02:00 committed by GitHub
parent 750a7aa054
commit 9b9ffe450c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
4 changed files with 47 additions and 4 deletions

View file

@ -1666,7 +1666,9 @@ fn parse_execute() {
has_parentheses: false,
using: vec![],
immediate: false,
into: vec![]
into: vec![],
output: false,
default: false,
}
);
@ -1682,7 +1684,9 @@ fn parse_execute() {
has_parentheses: true,
using: vec![],
immediate: false,
into: vec![]
into: vec![],
output: false,
default: false,
}
);
@ -1719,7 +1723,9 @@ fn parse_execute() {
},
],
immediate: false,
into: vec![]
into: vec![],
output: false,
default: false,
}
);
}