Skip to content

Commit 773527d

Browse files
committed
Use ms_and_generic() for remaining WAITFOR tests
1 parent 998e858 commit 773527d

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/sqlparser_mssql.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1732,10 +1732,10 @@ fn test_parse_waitfor() {
17321732

17331733
// WAITFOR DELAY with variable
17341734
let sql = "WAITFOR DELAY @WaitTime";
1735-
let _ = ms().verified_stmt(sql);
1735+
let _ = ms_and_generic().verified_stmt(sql);
17361736

17371737
// Error: WAITFOR without DELAY or TIME
1738-
let res = ms().parse_sql_statements("WAITFOR '00:00:05'");
1738+
let res = ms_and_generic().parse_sql_statements("WAITFOR '00:00:05'");
17391739
assert!(res.is_err());
17401740
}
17411741

0 commit comments

Comments
 (0)