Skip to content

Commit

Permalink
Merge pull request #28 from metabolicdata/hotfix/set_recreate_delta_f…
Browse files Browse the repository at this point in the history
…alse

Set recreate delta table as false by default
  • Loading branch information
margon8 authored Feb 8, 2024
2 parents 5f75986 + 7c77729 commit 741bb5d
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ class AthenaCatalogueService(implicit val region: Regions) extends Logging {

}

def createDeltaTable(dbName:String, tableName:String, location: String, recreate: Boolean = true) = {
def createDeltaTable(dbName:String, tableName:String, location: String, recreate: Boolean = false) = {

if(recreate) {
val delete_statement = dropTableStatement(dbName, tableName)
Expand Down

0 comments on commit 741bb5d

Please sign in to comment.