()
| 436 | |
| 437 | |
| 438 | isDropSchemaQuery() { |
| 439 | let result = false; |
| 440 | |
| 441 | if (_.startsWith(this.sql, 'CALL SYSPROC.ADMIN_DROP_SCHEMA')) { |
| 442 | result = true; |
| 443 | } |
| 444 | return result; |
| 445 | } |
| 446 | |
| 447 | isShowOrDescribeQuery() { |
| 448 | let result = false; |
no outgoing calls
no test coverage detected