| 1 |
|
package liquibase.statement.core; |
| 2 |
|
|
| 3 |
|
import liquibase.statement.AbstractSqlStatement; |
| 4 |
|
|
|
|
|
| 73.3% |
Uncovered Elements: 4 (15) |
Complexity: 6 |
Complexity Density: 0.67 |
|
| 5 |
|
public class DropIndexStatement extends AbstractSqlStatement { |
| 6 |
|
|
| 7 |
|
private String indexName; |
| 8 |
|
private String tableSchemaName; |
| 9 |
|
private String tableName; |
| 10 |
|
private String associatedWith; |
| 11 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (4) |
Complexity: 1 |
Complexity Density: 0.25 |
|
| 12 |
47
|
public DropIndexStatement(String indexName, String tableSchemaName, String tableName, String associatedWith) {... |
| 13 |
47
|
this.tableSchemaName = tableSchemaName; |
| 14 |
47
|
this.indexName = indexName; |
| 15 |
47
|
this.tableName = tableName; |
| 16 |
47
|
this.associatedWith = associatedWith; |
| 17 |
|
} |
| 18 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 19 |
1
|
public String getTableSchemaName() {... |
| 20 |
1
|
return tableSchemaName; |
| 21 |
|
} |
| 22 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 23 |
16
|
public String getIndexName() {... |
| 24 |
16
|
return indexName; |
| 25 |
|
} |
| 26 |
|
|
|
|
|
| 100% |
Uncovered Elements: 0 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 27 |
3
|
public String getTableName() {... |
| 28 |
3
|
return tableName; |
| 29 |
|
} |
| 30 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 31 |
0
|
public String getAssociatedWith() {... |
| 32 |
0
|
return associatedWith; |
| 33 |
|
} |
| 34 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 35 |
0
|
public void setAssociatedWith(String associatedWith) {... |
| 36 |
0
|
this.associatedWith = associatedWith; |
| 37 |
|
} |
| 38 |
|
} |