dev delete config
Test Workflow / test (push) Waiting to run

This commit is contained in:
vladp
2026-02-17 11:11:51 +07:00
parent e416835c51
commit 60f78599fa
3 changed files with 10 additions and 2 deletions
@@ -20,6 +20,7 @@ public interface ImageSimilarityRepository
f.support_id AS supportId,
f.created_at AS uploadDate,
f.protection_status AS protectionStatus,
f.file_extension AS extension,
h.hash64_hi AS hash64Hi,
h.hash64_lo AS hash64Lo
FROM image_hashes ref
@@ -43,6 +44,7 @@ public interface ImageSimilarityRepository
f.support_id AS supportId,
f.created_at AS uploadDate,
f.protection_status AS protectionStatus,
f.file_extension AS extension,
h.hash64_hi AS hash64Hi,
h.hash64_lo AS hash64Lo
FROM image_hashes ref
@@ -70,6 +72,7 @@ public interface ImageSimilarityRepository
f.stored_file_name AS similarFileId,
f.support_id AS supportId,
f.created_at AS uploadDate,
f.file_extension AS extension,
f.protection_status AS protectionStatus
FROM image_hashes h
JOIN file_entities f ON f.id = h.file_id
@@ -14,4 +14,5 @@ public interface SimilarImageProjection {
Long getSupportId();
LocalDateTime getUploadDate();
ProtectionStatus getProtectionStatus();
String getExtension();
}