Skip to content

Commit

Permalink
[TOOLS-4570] Output pk and fk to indexes file during dump migration (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
Srltas authored Mar 27, 2024
1 parent 36e7760 commit 1d6a1d8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -437,13 +437,13 @@ private String getFilePath(String objectType, String owner, String sourceObjectO
if (objectType.equals(DBObject.OBJ_TYPE_TABLE)
|| objectType.equals(DBObject.OBJ_TYPE_VIEW)
|| objectType.equals(DBObject.OBJ_TYPE_VIEW_QUERY_SPEC)
|| objectType.equals(DBObject.OBJ_TYPE_PK)
|| objectType.equals(DBObject.OBJ_TYPE_FK)
|| objectType.equals(DBObject.OBJ_TYPE_SEQUENCE)
|| objectType.equals(DBObject.OBJ_TYPE_SYNONYM)
|| objectType.equals(DBObject.OBJ_TYPE_GRANT)) {
return handleSchemaFile(owner);
} else if (objectType.equals(DBObject.OBJ_TYPE_INDEX)) {
} else if (objectType.equals(DBObject.OBJ_TYPE_INDEX)
|| objectType.equals(DBObject.OBJ_TYPE_PK)
|| objectType.equals(DBObject.OBJ_TYPE_FK)) {
return handleIndexFile(owner);
}
}
Expand Down

0 comments on commit 1d6a1d8

Please sign in to comment.