Skip to content

Commit

Permalink
Add replace and exists options to db2i tests
Browse files Browse the repository at this point in the history
  • Loading branch information
chrjorgensen committed Nov 9, 2023
1 parent 7540fbf commit d0c9daf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/db2i.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ describe('Db2iFormatter', () => {
supportsComments(format);
supportsCommentOn(format);
supportsCreateView(format, { orReplace: true });
supportsCreateTable(format);
supportsDropTable(format);
supportsCreateTable(format, { orReplace: true });
supportsDropTable(format, { ifExists: true });
supportsConstraints(format, ['NO ACTION', 'RESTRICT', 'CASCADE', 'SET NULL']);
supportsAlterTable(format, {
addColumn: true,
Expand Down

0 comments on commit d0c9daf

Please sign in to comment.