Skip to content

Commit 89ee390

Browse files
author
Dilovan Celik
committed
adding documentation
1 parent 9be6b27 commit 89ee390

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

src/ast/mod.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3817,6 +3817,7 @@ pub enum Statement {
38173817
/// ```
38183818
/// [Snowflake](https://docs.snowflake.com/en/sql-reference/sql/merge)
38193819
/// [BigQuery](https://cloud.google.com/bigquery/docs/reference/standard-sql/dml-syntax#merge_statement)
3820+
/// [MSSQL](https://learn.microsoft.com/en-us/sql/t-sql/statements/merge-transact-sql?view=sql-server-ver16)
38203821
Merge {
38213822
/// optional INTO keyword
38223823
into: bool,
@@ -3828,7 +3829,7 @@ pub enum Statement {
38283829
on: Box<Expr>,
38293830
/// Specifies the actions to perform when values match or do not match.
38303831
clauses: Vec<MergeClause>,
3831-
3832+
// Speccifies the output to save changes in MSSQL
38323833
output: Option<Output>,
38333834
},
38343835
/// ```sql

0 commit comments

Comments
 (0)