You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your feature request related to a problem or unsupported use case? Please describe.
Using the BaseDatabase class, I encountered an issue where I had to convert a set of IDs into a list to match the accepted data type. This conversion seemed unnecessary since sets are more suitable for dealing with unique IDs. Converting a set to a list adds unnecessary overhead, and if possible, we should avoid it to improve efficiency.
This enhancement might be needed elsewhere in the codebase.
Describe the solution you'd like
Enhance the query_statements_by_idshere method's API to allow the relevant data structures for the ids parameter.
The text was updated successfully, but these errors were encountered:
Feature Request
Is your feature request related to a problem or unsupported use case? Please describe.
Using the
BaseDatabase
class, I encountered an issue where I had to convert a set of IDs into a list to match the accepted data type. This conversion seemed unnecessary since sets are more suitable for dealing with unique IDs. Converting a set to a list adds unnecessary overhead, and if possible, we should avoid it to improve efficiency.This enhancement might be needed elsewhere in the codebase.
Describe the solution you'd like
Enhance the
query_statements_by_ids
here method's API to allow the relevant data structures for theids
parameter.The text was updated successfully, but these errors were encountered: