mirror of
https://github.com/qaiu/netdisk-fast-download.git
synced 2025-12-16 20:33:03 +00:00
一处SQL语法错误
This commit is contained in:
@@ -59,7 +59,7 @@ public class CacheManager {
|
|||||||
MERGE INTO `api_statistics_info` (`pan_type`, `share_key`, `{field}`, `update_ts`)
|
MERGE INTO `api_statistics_info` (`pan_type`, `share_key`, `{field}`, `update_ts`)
|
||||||
KEY (`share_key`)
|
KEY (`share_key`)
|
||||||
VALUES (#{panType}, #{shareKey}, #{total}, #{ts})
|
VALUES (#{panType}, #{shareKey}, #{total}, #{ts})
|
||||||
""".replace("field", fieldLower);
|
""".replace("{field}", fieldLower);
|
||||||
|
|
||||||
getShareKeyTotal(shareKey, fieldLower).onSuccess(total -> {
|
getShareKeyTotal(shareKey, fieldLower).onSuccess(total -> {
|
||||||
Integer newTotal = (total == null ? 0 : total) + 1;
|
Integer newTotal = (total == null ? 0 : total) + 1;
|
||||||
|
|||||||
Reference in New Issue
Block a user