-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
FE: added support of <applyDropStatements> option
- Loading branch information
1 parent
40bb66c
commit 585b272
Showing
4 changed files
with
98 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
const { DROP_STATEMENTS } = require('./constants'); | ||
|
||
const commentDropStatements = (script = '') => | ||
script | ||
.split('\n') | ||
.map(line => { | ||
if (DROP_STATEMENTS.some(statement => line.includes(statement))) { | ||
return `-- ${line}`; | ||
} else { | ||
return line; | ||
} | ||
}) | ||
.join('\n'); | ||
|
||
module.exports = { | ||
commentDropStatements, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
const DROP_STATEMENTS = ['DROP USER', 'DROP TABLE', 'DROP COLUMN', 'DROP TYPE', 'DROP ATTRIBUTE', 'DROP VIEW']; | ||
|
||
module.exports = { | ||
DROP_STATEMENTS, | ||
}; |