-
Notifications
You must be signed in to change notification settings - Fork 82
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Adding SQL Triggers that check for undefined types in Custom XML #1453
Adding SQL Triggers that check for undefined types in Custom XML #1453
Conversation
a022004
to
4ac12b8
Compare
4ac12b8
to
09e3a60
Compare
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## master #1453 +/- ##
==========================================
+ Coverage 66.70% 66.76% +0.06%
==========================================
Files 193 193
Lines 20853 20996 +143
Branches 4573 4613 +40
==========================================
+ Hits 13911 14019 +108
- Misses 6942 6977 +35 ☔ View full report in Codecov by Sentry. |
…nd arguments and event fields for a custom XML when inserted into a session. Add session notice as required Added relevant tests Corrected typo in package.json
09e3a60
to
cfe29fe
Compare
sessionNotif.some( | ||
(notif) => | ||
notif.type === 'ERROR' && | ||
notif.message.includes('Undefined Data Type') && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
INT9 ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intentional errors in my custom XML with bad data type
sessionNotif.some( | ||
(notif) => | ||
notif.type === 'ERROR' && | ||
notif.message.includes('Undefined Data Type') && |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NOTYPE
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
intentional errors in my custom XML with bad data type
SELECT | ||
1 | ||
FROM | ||
SESSION_PACKAGE spk |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maintain consistency with the uppercase in spk, p, etc.
Added SQL Triggers that check for undefined types in attributes ,command arguments and event fields for a custom XML when inserted into a session. Add session notice as required
Added relevant tests
Corrected typo in package.json