dev
Test Workflow / test (push) Successful in 2s

This commit is contained in:
vladp
2026-01-27 20:41:08 +07:00
parent 4a185e6f9a
commit 6fcec8d67e
@@ -39,7 +39,7 @@ public interface ImageSimilarityRepository
f.id AS id, f.id AS id,
f.original_file_name AS originalFileName, f.original_file_name AS originalFileName,
f.file_size AS fileSize, f.file_size AS fileSize,
f.user_id AS userId, f.user_id AS userId,
f.support_id AS supportId, f.support_id AS supportId,
f.created_at AS uploadDate, f.created_at AS uploadDate,
f.protection_status AS protectionStatus, f.protection_status AS protectionStatus,
@@ -70,10 +70,10 @@ public interface ImageSimilarityRepository
f.stored_file_name AS similarFileId, f.stored_file_name AS similarFileId,
f.support_id AS supportId, f.support_id AS supportId,
f.created_at AS uploadDate, f.created_at AS uploadDate,
f.protection_status AS protectionStatus, f.protection_status AS protectionStatus
FROM image_hashes h FROM image_hashes h
JOIN file_entities f ON f.id = h.file_id JOIN file_entities f ON f.id = h.file_id
WHERE h.hash64_hi = :hash64Hi WHERE h.hash64_hi = :hash64Hi
AND h.hash64_lo = :hash64Lo AND h.hash64_lo = :hash64Lo
""", """,
nativeQuery = true) nativeQuery = true)