Fix Pytest Failures (#24063)

* Fix Pytest Failures

* Checkstyle failures fix
This commit is contained in:
Mohit Yadav 2025-10-29 22:16:40 +05:30 committed by GitHub
parent c2896d896e
commit d77aaabd89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -4434,7 +4434,7 @@ public interface CollectionDAO {
+ "FROM tag_usage tu "
+ "LEFT JOIN glossary_term_entity gterm ON tu.source = 1 AND gterm.fqnHash = tu.tagFQNHash "
+ "LEFT JOIN tag ta ON tu.source = 0 AND ta.fqnHash = tu.tagFQNHash "
+ "WHERE tu.targetfqnhash_lower LIKE LOWER(:targetFQNHash) AND tu.state = 1",
+ "WHERE tu.targetfqnhash_lower LIKE LOWER(:targetFQNHash)",
connectionType = MYSQL)
@ConnectionAwareSqlQuery(
value =
@ -4446,7 +4446,7 @@ public interface CollectionDAO {
+ "FROM tag_usage tu "
+ "LEFT JOIN glossary_term_entity gterm ON tu.source = 1 AND gterm.fqnHash = tu.tagFQNHash "
+ "LEFT JOIN tag ta ON tu.source = 0 AND ta.fqnHash = tu.tagFQNHash "
+ "WHERE tu.targetfqnhash_lower LIKE LOWER(:targetFQNHash) AND tu.state = 1",
+ "WHERE tu.targetfqnhash_lower LIKE LOWER(:targetFQNHash)",
connectionType = POSTGRES)
@RegisterRowMapper(TagLabelRowMapperWithTargetFqnHash.class)
List<Pair<String, TagLabel>> getTagsInternalByPrefix(