mirror of
https://github.com/apache/datafusion-sqlparser-rs.git
synced 2025-08-24 07:54:06 +00:00
MySQL: [[NOT] ENFORCED]
in CHECK constraint (#1870)
This commit is contained in:
parent
ff29dd25b2
commit
84c3a1b325
5 changed files with 46 additions and 7 deletions
|
@ -5378,6 +5378,7 @@ fn parse_create_domain() {
|
|||
op: BinaryOperator::Gt,
|
||||
right: Box::new(Expr::Value(test_utils::number("0").into())),
|
||||
}),
|
||||
enforced: None,
|
||||
}],
|
||||
});
|
||||
|
||||
|
@ -5396,6 +5397,7 @@ fn parse_create_domain() {
|
|||
op: BinaryOperator::Gt,
|
||||
right: Box::new(Expr::Value(test_utils::number("0").into())),
|
||||
}),
|
||||
enforced: None,
|
||||
}],
|
||||
});
|
||||
|
||||
|
@ -5414,6 +5416,7 @@ fn parse_create_domain() {
|
|||
op: BinaryOperator::Gt,
|
||||
right: Box::new(Expr::Value(test_utils::number("0").into())),
|
||||
}),
|
||||
enforced: None,
|
||||
}],
|
||||
});
|
||||
|
||||
|
@ -5432,6 +5435,7 @@ fn parse_create_domain() {
|
|||
op: BinaryOperator::Gt,
|
||||
right: Box::new(Expr::Value(test_utils::number("0").into())),
|
||||
}),
|
||||
enforced: None,
|
||||
}],
|
||||
});
|
||||
|
||||
|
@ -5450,6 +5454,7 @@ fn parse_create_domain() {
|
|||
op: BinaryOperator::Gt,
|
||||
right: Box::new(Expr::Value(test_utils::number("0").into())),
|
||||
}),
|
||||
enforced: None,
|
||||
}],
|
||||
});
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue