Skip to content

Commit

Permalink
remove extra arg
Browse files Browse the repository at this point in the history
  • Loading branch information
jwtryg committed Dec 18, 2024
1 parent 8f51473 commit b578cad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/iceberg/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ func main() {
os.Exit(1)
}
case cfg.Table:
err := cat.DropTable(context.Background(), catalog.ToRestIdentifier(cfg.Ident), false)
err := cat.DropTable(context.Background(), catalog.ToRestIdentifier(cfg.Ident))
if err != nil {
output.Error(err)
os.Exit(1)
Expand Down

0 comments on commit b578cad

Please sign in to comment.