Skip to content

Commit 8c5dab2

Browse files
committed
remove commented codes
1 parent 0ada344 commit 8c5dab2

File tree

1 file changed

+0
-17
lines changed

1 file changed

+0
-17
lines changed

tests/sqlparser_common.rs

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4637,23 +4637,6 @@ fn parse_start_transaction() {
46374637
);
46384638
}
46394639

4640-
/*
4641-
#[test]
4642-
fn parse_set_variable_to() {
4643-
match verified_stmt("SET SOMETHING TO 1") {
4644-
Statement::SetVariable { local, hivevar, variable, value
4645-
} => {
4646-
println!("{:?}", local);
4647-
assert!(!local);
4648-
assert!(!hivevar);
4649-
assert_eq!(variable, ObjectName(vec!["SOMETHING".into()]));
4650-
assert_eq!(value, vec![Expr::Value(Value::Number("1".into(), false))]);
4651-
}
4652-
_ => unreachable!(),
4653-
}
4654-
}
4655-
*/
4656-
46574640
#[test]
46584641
fn parse_set_variable() {
46594642
match verified_stmt("SET SOMETHING = 1") {

0 commit comments

Comments
 (0)