Skip to content

Commit 129c009

Browse files
committed
Track and report index information via proper objects
1 parent 729bac6 commit 129c009

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

DBUtils/api-src/org/labkey/dbutils/api/schema/DecoratedTableInfo.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,13 +135,13 @@ public List<ColumnInfo> getPkColumns() {
135135

136136
@NotNull
137137
@Override
138-
public Map<String, Pair<IndexType, List<ColumnInfo>>> getUniqueIndices() {
138+
public Map<String, IndexDef> getUniqueIndices() {
139139
return _tableInfo.getUniqueIndices();
140140
}
141141

142142
@NotNull
143143
@Override
144-
public Map<String, Pair<IndexType, List<ColumnInfo>>> getAllIndices() {
144+
public Map<String, IndexDef> getAllIndices() {
145145
return _tableInfo.getAllIndices();
146146
}
147147

0 commit comments

Comments
 (0)