Skip to content

Commit 86a4647

Browse files
committed
Fix error on purge with sql-storage
1 parent bf243ea commit 86a4647

File tree

1 file changed

+2
-2
lines changed
  • BlueMapCore/src/main/java/de/bluecolored/bluemap/core/storage/sql

1 file changed

+2
-2
lines changed

BlueMapCore/src/main/java/de/bluecolored/bluemap/core/storage/sql/SQLStorage.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -398,8 +398,8 @@ public void purgeMap(String mapId, Function<ProgressInfo, Boolean> onProgress) t
398398
);
399399

400400
executeUpdate(connection,
401-
"DELETE t " +
402-
"FROM `bluemap_map`" +
401+
"DELETE " +
402+
"FROM `bluemap_map` " +
403403
"WHERE `map_id` = ?",
404404
mapId
405405
);

0 commit comments

Comments
 (0)