Skip to content

Commit

Permalink
DE-6380 checking if schema defined
Browse files Browse the repository at this point in the history
  • Loading branch information
sgtBurns7 committed Jul 24, 2024
1 parent a771ba4 commit af793e0
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ case class ImportConfig(

var inputTableEscaped: String = escapeCharacter + inputTable + escapeCharacter

if (dbType == Constants.POSTGRESQL){
if (dbType == Constants.POSTGRESQL && schema.isDefined){
inputTableEscaped = schema.get + "."+ inputTableEscaped
}

Expand Down

0 comments on commit af793e0

Please sign in to comment.