-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
HLM Individual search failed on userid based search fixed #758
Conversation
WalkthroughThe recent update enhances the query functionality in the Changes
Sequence Diagram(s) (Beta)sequenceDiagram
participant Client
participant IndividualRepository
participant Database
Client->>IndividualRepository: getQueryForIndividual(searchObject, limit)
IndividualRepository->>IndividualRepository: Construct query with IN clauses
IndividualRepository->>Database: Execute query with multiple usernames and userIds
Database->>IndividualRepository: Return results
IndividualRepository->>Client: Return results
Poem
Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (invoked as PR comments)
Additionally, you can add CodeRabbit Configration File (
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Review details
Configuration used: .coderabbit.yaml
Review profile: ASSERTIVE
Files selected for processing (1)
- health-services/individual/src/main/java/org/egov/individual/repository/IndividualRepository.java (1 hunks)
Additional comments not posted (1)
health-services/individual/src/main/java/org/egov/individual/repository/IndividualRepository.java (1)
275-278
: The transformation ofuserId
values to strings and collection handling looks correct. However, verify that all calling methods are updated to passuserId
as a collection.Verification successful
The
userId
field in theIndividualSearch
class is defined as aList<Long>
, confirming that it is indeed a collection. Therefore, the transformation ofuserId
values to strings and collection handling in thegetQueryForIndividual
method is correct.
IndividualSearch
class definition:
health-services/libraries/health-services-models/src/main/java/org/egov/common/models/individual/IndividualSearch.java
userId
field:private List<Long> userId;
Scripts executed
The following scripts were executed for the analysis:
Script:
#!/bin/bash # Description: Verify all function calls to `getQueryForIndividual` pass `userId` as a collection. # Test: Search for the function usage. Expect: Only occurances with collections as arguments. rg --type java $'getQueryForIndividual\('Length of output: 443
Script:
#!/bin/bash # Extract the context around the call to `getQueryForIndividual` to verify the type of `userId`. # Display 5 lines before and after the call to `getQueryForIndividual` rg --type java -C 5 'getQueryForIndividual\(' health-services/individual/src/main/java/org/egov/individual/repository/IndividualRepository.javaLength of output: 1519
Script:
#!/bin/bash # Search for the definition of `IndividualSearch` and inspect the `userId` field. # Find the file containing the definition of `IndividualSearch` rg --type java 'class IndividualSearch' # Display the definition of the `userId` field in `IndividualSearch` rg --type java 'userId' $(rg --files-with-matches 'class IndividualSearch')Length of output: 2204
@@ -267,13 +267,15 @@ private String getQueryForIndividual(IndividualSearch searchObject, Integer limi | |||
} | |||
|
|||
if (searchObject.getUsername() != null) { | |||
query = query + "AND username=:username "; | |||
query = query + "AND username in (:username) "; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ensure proper indexing on the username
column to optimize performance with the IN
clause.
Summary by CodeRabbit