()
| 422 | |
| 423 | |
| 424 | isDropSchemaQuery() { |
| 425 | let result = false; |
| 426 | |
| 427 | if (_.startsWith(this.sql, 'CALL SYSPROC.ADMIN_DROP_SCHEMA')) { |
| 428 | result = true; |
| 429 | } |
| 430 | return result; |
| 431 | } |
| 432 | |
| 433 | isShowOrDescribeQuery() { |
| 434 | let result = false; |
no outgoing calls
no test coverage detected