Skip to content

Commit

Permalink
Merge pull request #24 from razorpay/airflow_fix
Browse files Browse the repository at this point in the history
DE-6380 checking if schema defined
  • Loading branch information
manishsingh-rzp authored Jul 24, 2024
2 parents a771ba4 + af793e0 commit 6f1b8a3
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 6f1b8a3

Please sign in to comment.