Skip to content

Commit

Permalink
Fix recreate table
Browse files Browse the repository at this point in the history
  • Loading branch information
berna396 committed Jun 26, 2024
1 parent 8a790a3 commit 50e95e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class AthenaCatalogueService(implicit val region: Regions) extends Logging {
private def dropTableStatement(dbName: String, tableName: String) = {

s"DROP TABLE IF EXISTS " +
s"`$dbName`.`$tableName`"
s"`$dbName.\"$tableName\"`"
}

def dropView(dbName: String, viewName: String) = {
Expand Down

0 comments on commit 50e95e2

Please sign in to comment.