Skip to content

Commit

Permalink
feat(dialect): address comments round 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Jesse Peng committed Aug 13, 2021
1 parent 2921e0e commit 191c708
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/unit/sql/delete.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -190,7 +190,8 @@ describe(Support.getTestDialectTeaser('SQL'), () => {
postgres: 'DELETE FROM "test_user" WHERE "test_user_id" = 100',
sqlite: 'DELETE FROM `test_user` WHERE `test_user_id` = 100',
mssql: 'DELETE FROM [test_user] WHERE [test_user_id] = 100; SELECT @@ROWCOUNT AS AFFECTEDROWS;',
default: 'DELETE FROM [test_user] WHERE [test_user_id] = 100;'
snowflake: 'DELETE FROM "test_user" WHERE "test_user_id" = 100;',
default: 'DELETE FROM [test_user] WHERE [test_user_id] = 100'
}
);
});
Expand Down

0 comments on commit 191c708

Please sign in to comment.